forked from TrueCloudLab/frostfs-node
155 lines
2.8 KiB
Go
155 lines
2.8 KiB
Go
package balance
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestParseLock(t *testing.T) {
|
|
var (
|
|
id = []byte("Hello World")
|
|
user = util.Uint160{0x1, 0x2, 0x3}
|
|
lock = util.Uint160{0x3, 0x2, 0x1}
|
|
|
|
amount int64 = 10
|
|
until int64 = 20
|
|
)
|
|
|
|
t.Run("wrong number of parameters", func(t *testing.T) {
|
|
prms := []smartcontract.Parameter{
|
|
{},
|
|
{},
|
|
}
|
|
|
|
_, err := ParseLock(prms)
|
|
require.EqualError(t, err, event.WrongNumberOfParameters(5, len(prms)).Error())
|
|
})
|
|
|
|
t.Run("wrong id parameter", func(t *testing.T) {
|
|
_, err := ParseLock([]smartcontract.Parameter{
|
|
{
|
|
Type: smartcontract.IntegerType,
|
|
},
|
|
})
|
|
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("wrong from parameter", func(t *testing.T) {
|
|
_, err := ParseLock([]smartcontract.Parameter{
|
|
{
|
|
Type: smartcontract.ByteArrayType,
|
|
Value: id,
|
|
},
|
|
{
|
|
Type: smartcontract.IntegerType,
|
|
},
|
|
})
|
|
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("wrong lock parameter", func(t *testing.T) {
|
|
_, err := ParseLock([]smartcontract.Parameter{
|
|
{
|
|
Type: smartcontract.ByteArrayType,
|
|
Value: id,
|
|
},
|
|
{
|
|
Type: smartcontract.ByteArrayType,
|
|
Value: user.BytesBE(),
|
|
},
|
|
{
|
|
Type: smartcontract.ArrayType,
|
|
},
|
|
})
|
|
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("wrong amount parameter", func(t *testing.T) {
|
|
_, err := ParseLock([]smartcontract.Parameter{
|
|
{
|
|
Type: smartcontract.ByteArrayType,
|
|
Value: id,
|
|
},
|
|
{
|
|
Type: smartcontract.ByteArrayType,
|
|
Value: user.BytesBE(),
|
|
},
|
|
{
|
|
Type: smartcontract.ByteArrayType,
|
|
Value: lock.BytesBE(),
|
|
},
|
|
{
|
|
Type: smartcontract.ArrayType,
|
|
},
|
|
})
|
|
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("wrong until parameter", func(t *testing.T) {
|
|
_, err := ParseLock([]smartcontract.Parameter{
|
|
{
|
|
Type: smartcontract.ByteArrayType,
|
|
Value: id,
|
|
},
|
|
{
|
|
Type: smartcontract.ByteArrayType,
|
|
Value: user.BytesBE(),
|
|
},
|
|
{
|
|
Type: smartcontract.ByteArrayType,
|
|
Value: lock.BytesBE(),
|
|
},
|
|
{
|
|
Type: smartcontract.IntegerType,
|
|
Value: amount,
|
|
},
|
|
{
|
|
Type: smartcontract.ArrayType,
|
|
},
|
|
})
|
|
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("correct behavior", func(t *testing.T) {
|
|
ev, err := ParseLock([]smartcontract.Parameter{
|
|
{
|
|
Type: smartcontract.ByteArrayType,
|
|
Value: id,
|
|
},
|
|
{
|
|
Type: smartcontract.ByteArrayType,
|
|
Value: user.BytesBE(),
|
|
},
|
|
{
|
|
Type: smartcontract.ByteArrayType,
|
|
Value: lock.BytesBE(),
|
|
},
|
|
{
|
|
Type: smartcontract.IntegerType,
|
|
Value: amount,
|
|
},
|
|
{
|
|
Type: smartcontract.IntegerType,
|
|
Value: until,
|
|
},
|
|
})
|
|
|
|
require.NoError(t, err)
|
|
require.Equal(t, Lock{
|
|
id: id,
|
|
user: user,
|
|
lock: lock,
|
|
amount: amount,
|
|
until: until,
|
|
}, ev)
|
|
})
|
|
}
|