frostfs-node/pkg/morph/client/netmap/netmap_test.go
Leonard Lyubich c408a6a0db [#1513] morph/netmap: Use constant states in unit tests
Use values of the node state enumeration from Netmap contract instead of
numeric literals.

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2022-06-17 15:53:18 +03:00

57 lines
1.3 KiB
Go

package netmap
import (
"math/big"
"math/rand"
"strconv"
"testing"
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
netmapcontract "github.com/nspcc-dev/neofs-contract/netmap"
"github.com/nspcc-dev/neofs-sdk-go/netmap"
"github.com/stretchr/testify/require"
)
func Test_stackItemsToNodeInfos(t *testing.T) {
expected := make([]netmap.NodeInfo, 4)
for i := range expected {
pub := make([]byte, 33)
rand.Read(pub)
switch i % 3 {
case int(netmapcontract.OfflineState):
expected[i].SetOffline()
case int(netmapcontract.OnlineState):
expected[i].SetOnline()
}
expected[i].SetPublicKey(pub)
expected[i].SetAttribute("key", strconv.Itoa(i))
}
items := make([]stackitem.Item, 4)
for i := range items {
data := expected[i].Marshal()
var state int64
switch {
case expected[i].IsOnline():
state = int64(netmapcontract.OnlineState)
case expected[i].IsOffline():
state = int64(netmapcontract.OfflineState)
}
items[i] = stackitem.NewStruct([]stackitem.Item{
stackitem.NewStruct([]stackitem.Item{
stackitem.NewByteArray(data),
}),
stackitem.NewBigInteger(big.NewInt(state)),
})
}
actual, err := nodeInfosFromStackItems([]stackitem.Item{stackitem.NewArray(items)}, "")
require.NoError(t, err)
require.Equal(t, expected, actual)
}