mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-26 10:03:47 +01:00
49e9113e0f
Print peer status from the package Added --detail flag for detailed status output
28 lines
553 B
Go
28 lines
553 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, "Connected"},
|
|
{"StatusDisconnected", StatusDisconnected, "Disconnected"},
|
|
{"StatusConnecting", StatusConnecting, "Connecting"},
|
|
}
|
|
|
|
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")
|
|
})
|
|
}
|
|
|
|
}
|