frostfs-node/pkg/morph/event/frostfs/deposit_test.go
Evgenii Stratonikov 69cb591c12
Some checks failed
Vulncheck / Vulncheck (pull_request) Successful in 2m46s
DCO action / DCO (pull_request) Failing after 4m44s
Pre-commit hooks / Pre-commit (pull_request) Successful in 5m4s
Tests and linters / gopls check (pull_request) Successful in 5m26s
Build / Build Components (pull_request) Successful in 6m32s
Tests and linters / Run gofumpt (pull_request) Successful in 6m36s
Tests and linters / Staticcheck (pull_request) Successful in 6m45s
Tests and linters / Lint (pull_request) Successful in 7m14s
Tests and linters / Tests (pull_request) Successful in 7m44s
Tests and linters / Tests with -race (pull_request) Successful in 8m3s
morph/event: Simplify frostfs contract event parsing
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
2024-12-06 13:59:15 +03:00

85 lines
2 KiB
Go

package frostfs
import (
"math/big"
"testing"
"github.com/nspcc-dev/neo-go/pkg/util"
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
"github.com/stretchr/testify/require"
)
func TestParseDeposit(t *testing.T) {
var (
id = util.Uint256{0, 1, 2, 3}
from = util.Uint160{0x1, 0x2, 0x3}
to = util.Uint160{0x3, 0x2, 0x1}
amount int64 = 10
)
t.Run("wrong number of parameters", func(t *testing.T) {
prms := []stackitem.Item{
stackitem.NewMap(),
stackitem.NewMap(),
}
_, err := ParseDeposit(createNotifyEventFromItems(prms))
require.Error(t, err)
})
t.Run("wrong from parameter", func(t *testing.T) {
_, err := ParseDeposit(createNotifyEventFromItems([]stackitem.Item{
stackitem.NewMap(),
}))
require.Error(t, err)
})
t.Run("wrong amount parameter", func(t *testing.T) {
_, err := ParseDeposit(createNotifyEventFromItems([]stackitem.Item{
stackitem.NewByteArray(from.BytesBE()),
stackitem.NewMap(),
}))
require.Error(t, err)
})
t.Run("wrong to parameter", func(t *testing.T) {
_, err := ParseDeposit(createNotifyEventFromItems([]stackitem.Item{
stackitem.NewByteArray(from.BytesBE()),
stackitem.NewBigInteger(new(big.Int).SetInt64(amount)),
stackitem.NewMap(),
}))
require.Error(t, err)
})
t.Run("wrong id parameter", func(t *testing.T) {
_, err := ParseDeposit(createNotifyEventFromItems([]stackitem.Item{
stackitem.NewByteArray(from.BytesBE()),
stackitem.NewBigInteger(new(big.Int).SetInt64(amount)),
stackitem.NewByteArray(to.BytesBE()),
stackitem.NewMap(),
}))
require.Error(t, err)
})
t.Run("correct behavior", func(t *testing.T) {
ev, err := ParseDeposit(createNotifyEventFromItems([]stackitem.Item{
stackitem.NewByteArray(from.BytesBE()),
stackitem.NewBigInteger(new(big.Int).SetInt64(amount)),
stackitem.NewByteArray(to.BytesBE()),
stackitem.NewByteArray(id[:]),
}))
require.NoError(t, err)
require.Equal(t, Deposit{
IDValue: id[:],
AmountValue: amount,
FromValue: from,
ToValue: to,
}, ev)
})
}