[#265] pkg/reputation: Implement PeerID and Trust types

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-03-24 11:27:30 +03:00 committed by Leonard Lyubich
parent 51d443c6fc
commit 009f704377
5 changed files with 205 additions and 0 deletions

View file

@ -0,0 +1,18 @@
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()))
}