frostfs-api-go/pkg/reputation/peer_test.go
Leonard Lyubich 009f704377 [#265] pkg/reputation: Implement PeerID and Trust types
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2021-03-25 11:20:34 +03:00

18 lines
364 B
Go

package reputation_test
import (
"testing"
"github.com/nspcc-dev/neofs-api-go/pkg/reputation"
"github.com/stretchr/testify/require"
)
func TestPeerID(t *testing.T) {
peerID := reputation.NewPeerID()
data := []byte{1, 2, 3}
peerID.SetBytes(data)
require.Equal(t, data, peerID.Bytes())
require.Equal(t, peerID, reputation.PeerIDFromV2(peerID.ToV2()))
}