forked from TrueCloudLab/frostfs-node
[#21] Add neofs inner ring update event
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
7d154f8659
commit
2a142155d9
2 changed files with 131 additions and 0 deletions
77
pkg/morph/event/neofs/ir_update_test.go
Normal file
77
pkg/morph/event/neofs/ir_update_test.go
Normal file
|
@ -0,0 +1,77 @@
|
|||
package neofs
|
||||
|
||||
import (
|
||||
"crypto/ecdsa"
|
||||
"crypto/elliptic"
|
||||
"testing"
|
||||
|
||||
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
||||
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
||||
crypto "github.com/nspcc-dev/neofs-crypto"
|
||||
"github.com/nspcc-dev/neofs-crypto/test"
|
||||
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func TestParseUpdateInnerRing(t *testing.T) {
|
||||
var (
|
||||
publicKeys = []*ecdsa.PublicKey{
|
||||
&test.DecodeKey(1).PublicKey,
|
||||
&test.DecodeKey(2).PublicKey,
|
||||
&test.DecodeKey(3).PublicKey,
|
||||
}
|
||||
)
|
||||
|
||||
t.Run("wrong number of parameters", func(t *testing.T) {
|
||||
prms := []smartcontract.Parameter{
|
||||
{},
|
||||
{},
|
||||
}
|
||||
|
||||
_, err := ParseUpdateInnerRing(prms)
|
||||
require.EqualError(t, err, event.WrongNumberOfParameters(1, len(prms)).Error())
|
||||
})
|
||||
|
||||
t.Run("wrong first parameter", func(t *testing.T) {
|
||||
_, err := ParseUpdateInnerRing([]smartcontract.Parameter{
|
||||
{
|
||||
Type: smartcontract.ByteArrayType,
|
||||
},
|
||||
})
|
||||
|
||||
require.Error(t, err)
|
||||
})
|
||||
|
||||
t.Run("correct", func(t *testing.T) {
|
||||
ev, err := ParseUpdateInnerRing([]smartcontract.Parameter{
|
||||
{
|
||||
Type: smartcontract.ArrayType,
|
||||
Value: []smartcontract.Parameter{
|
||||
{
|
||||
Type: smartcontract.ByteArrayType,
|
||||
Value: crypto.MarshalPublicKey(publicKeys[0]),
|
||||
},
|
||||
{
|
||||
Type: smartcontract.ByteArrayType,
|
||||
Value: crypto.MarshalPublicKey(publicKeys[1]),
|
||||
},
|
||||
{
|
||||
Type: smartcontract.ByteArrayType,
|
||||
Value: crypto.MarshalPublicKey(publicKeys[2]),
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
require.NoError(t, err)
|
||||
|
||||
expKeys := make([]*keys.PublicKey, len(publicKeys))
|
||||
for i := range publicKeys {
|
||||
expKeys[i], err = keys.NewPublicKeyFromBytes(crypto.MarshalPublicKey(publicKeys[i]), elliptic.P256())
|
||||
require.NoError(t, err)
|
||||
}
|
||||
|
||||
require.Equal(t, UpdateInnerRing{
|
||||
keys: expKeys,
|
||||
}, ev)
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue