Evgenii Stratonikov
d1bc4351c3
All checks were successful
DCO action / DCO (pull_request) Successful in 4m46s
Vulncheck / Vulncheck (pull_request) Successful in 5m22s
Build / Build Components (pull_request) Successful in 6m12s
Pre-commit hooks / Pre-commit (pull_request) Successful in 6m10s
Tests and linters / Run gofumpt (pull_request) Successful in 6m16s
Tests and linters / gopls check (pull_request) Successful in 6m19s
Tests and linters / Staticcheck (pull_request) Successful in 6m25s
Tests and linters / Lint (pull_request) Successful in 6m59s
Tests and linters / Tests (pull_request) Successful in 7m38s
Tests and linters / Tests with -race (pull_request) Successful in 8m37s
Tests and linters / Run gofumpt (push) Successful in 1m16s
Tests and linters / Staticcheck (push) Successful in 3m15s
Vulncheck / Vulncheck (push) Successful in 4m7s
Build / Build Components (push) Successful in 4m32s
Tests and linters / Lint (push) Successful in 4m50s
Pre-commit hooks / Pre-commit (push) Successful in 5m1s
Tests and linters / Tests (push) Successful in 5m14s
Tests and linters / Tests with -race (push) Successful in 5m54s
Tests and linters / gopls check (push) Successful in 6m2s
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
67 lines
1.4 KiB
Go
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)
|
|
})
|
|
}
|