mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-08 09:14:18 +01:00
2ad899b066
* test: add conn tests * test: add ConnStatus tests * test: add error test * test: add more conn tests
28 lines
571 B
Go
28 lines
571 B
Go
package peer
|
|
|
|
import (
|
|
"github.com/magiconair/properties/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestConnStatus_String(t *testing.T) {
|
|
|
|
tables := []struct {
|
|
name string
|
|
status ConnStatus
|
|
want string
|
|
}{
|
|
{"StatusConnected", StatusConnected, "StatusConnected"},
|
|
{"StatusDisconnected", StatusDisconnected, "StatusDisconnected"},
|
|
{"StatusConnecting", StatusConnecting, "StatusConnecting"},
|
|
}
|
|
|
|
for _, table := range tables {
|
|
t.Run(table.name, func(t *testing.T) {
|
|
got := table.status.String()
|
|
assert.Equal(t, got, table.want, "they should be equal")
|
|
})
|
|
}
|
|
|
|
}
|