forked from TrueCloudLab/frostfs-node
[#124] Update neo-go to pre-preview4 version
Neo-go does not use smartcontract.Parameter to return values anymore, so it's convertes partly removed from neofs-node. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
2bd827a478
commit
174efc9df3
35 changed files with 309 additions and 841 deletions
|
@ -1,10 +1,11 @@
|
|||
package neofs
|
||||
|
||||
import (
|
||||
"math/big"
|
||||
"testing"
|
||||
|
||||
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
||||
"github.com/nspcc-dev/neo-go/pkg/util"
|
||||
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
||||
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
@ -18,9 +19,9 @@ func TestParseWithdraw(t *testing.T) {
|
|||
)
|
||||
|
||||
t.Run("wrong number of parameters", func(t *testing.T) {
|
||||
prms := []smartcontract.Parameter{
|
||||
{},
|
||||
{},
|
||||
prms := []stackitem.Item{
|
||||
stackitem.NewMap(),
|
||||
stackitem.NewMap(),
|
||||
}
|
||||
|
||||
_, err := ParseWithdraw(prms)
|
||||
|
@ -28,61 +29,37 @@ func TestParseWithdraw(t *testing.T) {
|
|||
})
|
||||
|
||||
t.Run("wrong user parameter", func(t *testing.T) {
|
||||
_, err := ParseWithdraw([]smartcontract.Parameter{
|
||||
{
|
||||
Type: smartcontract.ArrayType,
|
||||
},
|
||||
_, err := ParseWithdraw([]stackitem.Item{
|
||||
stackitem.NewMap(),
|
||||
})
|
||||
|
||||
require.Error(t, err)
|
||||
})
|
||||
|
||||
t.Run("wrong amount parameter", func(t *testing.T) {
|
||||
_, err := ParseWithdraw([]smartcontract.Parameter{
|
||||
{
|
||||
Type: smartcontract.ByteArrayType,
|
||||
Value: user.BytesBE(),
|
||||
},
|
||||
{
|
||||
Type: smartcontract.ArrayType,
|
||||
},
|
||||
_, err := ParseWithdraw([]stackitem.Item{
|
||||
stackitem.NewByteArray(user.BytesBE()),
|
||||
stackitem.NewMap(),
|
||||
})
|
||||
|
||||
require.Error(t, err)
|
||||
})
|
||||
|
||||
t.Run("wrong id parameter", func(t *testing.T) {
|
||||
_, err := ParseWithdraw([]smartcontract.Parameter{
|
||||
{
|
||||
Type: smartcontract.ByteArrayType,
|
||||
Value: user.BytesBE(),
|
||||
},
|
||||
{
|
||||
Type: smartcontract.IntegerType,
|
||||
Value: amount,
|
||||
},
|
||||
{
|
||||
Type: smartcontract.ArrayType,
|
||||
},
|
||||
_, err := ParseWithdraw([]stackitem.Item{
|
||||
stackitem.NewByteArray(user.BytesBE()),
|
||||
stackitem.NewBigInteger(new(big.Int).SetInt64(amount)),
|
||||
stackitem.NewMap(),
|
||||
})
|
||||
|
||||
require.Error(t, err)
|
||||
})
|
||||
|
||||
t.Run("correct behavior", func(t *testing.T) {
|
||||
ev, err := ParseWithdraw([]smartcontract.Parameter{
|
||||
{
|
||||
Type: smartcontract.ByteArrayType,
|
||||
Value: user.BytesBE(),
|
||||
},
|
||||
{
|
||||
Type: smartcontract.IntegerType,
|
||||
Value: amount,
|
||||
},
|
||||
{
|
||||
Type: smartcontract.ByteArrayType,
|
||||
Value: id,
|
||||
},
|
||||
ev, err := ParseWithdraw([]stackitem.Item{
|
||||
stackitem.NewByteArray(user.BytesBE()),
|
||||
stackitem.NewBigInteger(new(big.Int).SetInt64(amount)),
|
||||
stackitem.NewByteArray(id),
|
||||
})
|
||||
|
||||
require.NoError(t, err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue