frostfs-node/pkg/morph/event/frostfs/config_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

67 lines
1.4 KiB
Go

package frostfs
import (
"testing"
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
"github.com/stretchr/testify/require"
)
func TestParseConfig(t *testing.T) {
var (
id = []byte("id")
key = []byte("key")
value = []byte("value")
)
t.Run("wrong number of parameters", func(t *testing.T) {
prms := []stackitem.Item{
stackitem.NewMap(),
}
_, err := ParseConfig(createNotifyEventFromItems(prms))
require.Error(t, err)
})
t.Run("wrong first parameter", func(t *testing.T) {
_, err := ParseConfig(createNotifyEventFromItems([]stackitem.Item{
stackitem.NewMap(),
}))
require.Error(t, err)
})
t.Run("wrong second parameter", func(t *testing.T) {
_, err := ParseConfig(createNotifyEventFromItems([]stackitem.Item{
stackitem.NewByteArray(id),
stackitem.NewMap(),
}))
require.Error(t, err)
})
t.Run("wrong third parameter", func(t *testing.T) {
_, err := ParseConfig(createNotifyEventFromItems([]stackitem.Item{
stackitem.NewByteArray(id),
stackitem.NewByteArray(key),
stackitem.NewMap(),
}))
require.Error(t, err)
})
t.Run("correct", func(t *testing.T) {
ev, err := ParseConfig(createNotifyEventFromItems([]stackitem.Item{
stackitem.NewByteArray(id),
stackitem.NewByteArray(key),
stackitem.NewByteArray(value),
}))
require.NoError(t, err)
require.Equal(t, Config{
IDValue: id,
KeyValue: key,
ValueValue: value,
}, ev)
})
}