forked from TrueCloudLab/frostfs-api-go
d4f5c27d47
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
44 lines
722 B
Go
44 lines
722 B
Go
package netmap
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/netmap"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestNode_NetworkAddress(t *testing.T) {
|
|
addr := "127.0.0.1:8080"
|
|
|
|
nV2 := new(netmap.NodeInfo)
|
|
nV2.SetAddress(addr)
|
|
|
|
n := Node{
|
|
InfoV2: nV2,
|
|
}
|
|
|
|
require.Equal(t, addr, n.NetworkAddress())
|
|
}
|
|
|
|
func TestNodeStateFromV2(t *testing.T) {
|
|
for _, item := range []struct {
|
|
s NodeState
|
|
sV2 netmap.NodeState
|
|
}{
|
|
{
|
|
s: 0,
|
|
sV2: netmap.UnspecifiedState,
|
|
},
|
|
{
|
|
s: NodeStateOnline,
|
|
sV2: netmap.Online,
|
|
},
|
|
{
|
|
s: NodeStateOffline,
|
|
sV2: netmap.Offline,
|
|
},
|
|
} {
|
|
require.Equal(t, item.s, NodeStateFromV2(item.sV2))
|
|
require.Equal(t, item.sV2, item.s.ToV2())
|
|
}
|
|
}
|