forked from TrueCloudLab/frostfs-node
c167ae26f9
Parsers should have original notification structure to be able to construct internal event structure that contains necessary for unique nonce calculation information. So notification parsers take raw notification structure instead of slice of stack items. Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
97 lines
2.3 KiB
Go
97 lines
2.3 KiB
Go
package reputation
|
|
|
|
import (
|
|
"math/big"
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
|
"github.com/nspcc-dev/neo-go/pkg/rpc/response/result/subscriptions"
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
|
|
"github.com/nspcc-dev/neofs-sdk-go/reputation"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestParsePut(t *testing.T) {
|
|
var (
|
|
peerID reputation.PeerID
|
|
|
|
value reputation.GlobalTrust
|
|
trust reputation.Trust
|
|
trustValue float64 = 64
|
|
|
|
epoch uint64 = 42
|
|
|
|
rawPeerID = [33]byte{1, 2, 3, 4, 5, 6}
|
|
)
|
|
|
|
peerID.SetPublicKey(rawPeerID)
|
|
|
|
trust.SetValue(trustValue)
|
|
trust.SetPeer(&peerID)
|
|
|
|
value.SetTrust(&trust)
|
|
|
|
rawValue, err := value.Marshal()
|
|
require.NoError(t, err)
|
|
|
|
t.Run("wrong number of parameters", func(t *testing.T) {
|
|
prms := []stackitem.Item{
|
|
stackitem.NewMap(),
|
|
stackitem.NewMap(),
|
|
}
|
|
|
|
_, err := ParsePut(createNotifyEventFromItems(prms))
|
|
require.EqualError(t, err, event.WrongNumberOfParameters(3, len(prms)).Error())
|
|
})
|
|
|
|
t.Run("wrong epoch parameter", func(t *testing.T) {
|
|
_, err := ParsePut(createNotifyEventFromItems([]stackitem.Item{
|
|
stackitem.NewMap(),
|
|
}))
|
|
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("wrong peerID parameter", func(t *testing.T) {
|
|
_, err := ParsePut(createNotifyEventFromItems([]stackitem.Item{
|
|
stackitem.NewBigInteger(new(big.Int).SetUint64(epoch)),
|
|
stackitem.NewMap(),
|
|
}))
|
|
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("wrong value parameter", func(t *testing.T) {
|
|
_, err := ParsePut(createNotifyEventFromItems([]stackitem.Item{
|
|
stackitem.NewBigInteger(new(big.Int).SetUint64(epoch)),
|
|
stackitem.NewByteArray(rawPeerID[:]),
|
|
stackitem.NewMap(),
|
|
}))
|
|
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("correct behavior", func(t *testing.T) {
|
|
ev, err := ParsePut(createNotifyEventFromItems([]stackitem.Item{
|
|
stackitem.NewBigInteger(new(big.Int).SetUint64(epoch)),
|
|
stackitem.NewByteArray(rawPeerID[:]),
|
|
stackitem.NewByteArray(rawValue),
|
|
}))
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, Put{
|
|
epoch: epoch,
|
|
peerID: peerID,
|
|
value: value,
|
|
}, ev)
|
|
})
|
|
}
|
|
|
|
func createNotifyEventFromItems(items []stackitem.Item) *subscriptions.NotificationEvent {
|
|
return &subscriptions.NotificationEvent{
|
|
NotificationEvent: state.NotificationEvent{
|
|
Item: stackitem.NewArray(items),
|
|
},
|
|
}
|
|
}
|