2022-12-23 17:35:35 +00:00
|
|
|
package frostfs
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
import (
|
2020-10-26 14:46:15 +00:00
|
|
|
"math/big"
|
2020-07-24 13:54:03 +00:00
|
|
|
"testing"
|
|
|
|
|
2022-12-23 17:35:35 +00:00
|
|
|
"github.com/TrueCloudLab/frostfs-node/pkg/morph/event"
|
2020-07-24 13:54:03 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2020-10-26 14:46:15 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
2020-07-24 13:54:03 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestParseWithdraw(t *testing.T) {
|
|
|
|
var (
|
|
|
|
id = []byte("Hello World")
|
|
|
|
user = util.Uint160{0x1, 0x2, 0x3}
|
|
|
|
|
|
|
|
amount int64 = 10
|
|
|
|
)
|
|
|
|
|
|
|
|
t.Run("wrong number of parameters", func(t *testing.T) {
|
2020-10-26 14:46:15 +00:00
|
|
|
prms := []stackitem.Item{
|
|
|
|
stackitem.NewMap(),
|
|
|
|
stackitem.NewMap(),
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
2021-10-22 10:06:08 +00:00
|
|
|
_, err := ParseWithdraw(createNotifyEventFromItems(prms))
|
2020-07-24 13:54:03 +00:00
|
|
|
require.EqualError(t, err, event.WrongNumberOfParameters(3, len(prms)).Error())
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("wrong user parameter", func(t *testing.T) {
|
2021-10-22 10:06:08 +00:00
|
|
|
_, err := ParseWithdraw(createNotifyEventFromItems([]stackitem.Item{
|
2020-10-26 14:46:15 +00:00
|
|
|
stackitem.NewMap(),
|
2021-10-22 10:06:08 +00:00
|
|
|
}))
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
require.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("wrong amount parameter", func(t *testing.T) {
|
2021-10-22 10:06:08 +00:00
|
|
|
_, err := ParseWithdraw(createNotifyEventFromItems([]stackitem.Item{
|
2020-10-26 14:46:15 +00:00
|
|
|
stackitem.NewByteArray(user.BytesBE()),
|
|
|
|
stackitem.NewMap(),
|
2021-10-22 10:06:08 +00:00
|
|
|
}))
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
require.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("wrong id parameter", func(t *testing.T) {
|
2021-10-22 10:06:08 +00:00
|
|
|
_, err := ParseWithdraw(createNotifyEventFromItems([]stackitem.Item{
|
2020-10-26 14:46:15 +00:00
|
|
|
stackitem.NewByteArray(user.BytesBE()),
|
|
|
|
stackitem.NewBigInteger(new(big.Int).SetInt64(amount)),
|
|
|
|
stackitem.NewMap(),
|
2021-10-22 10:06:08 +00:00
|
|
|
}))
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
require.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("correct behavior", func(t *testing.T) {
|
2021-10-22 10:06:08 +00:00
|
|
|
ev, err := ParseWithdraw(createNotifyEventFromItems([]stackitem.Item{
|
2020-10-26 14:46:15 +00:00
|
|
|
stackitem.NewByteArray(user.BytesBE()),
|
|
|
|
stackitem.NewBigInteger(new(big.Int).SetInt64(amount)),
|
|
|
|
stackitem.NewByteArray(id),
|
2021-10-22 10:06:08 +00:00
|
|
|
}))
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, Withdraw{
|
|
|
|
id: id,
|
|
|
|
amount: amount,
|
|
|
|
user: user,
|
|
|
|
}, ev)
|
|
|
|
})
|
|
|
|
}
|