2020-08-11 11:46:31 +00:00
|
|
|
package container
|
|
|
|
|
|
|
|
import (
|
2022-08-11 13:24:26 +00:00
|
|
|
"crypto/sha256"
|
2020-08-11 11:46:31 +00:00
|
|
|
"testing"
|
|
|
|
|
2023-03-07 13:38:26 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/event"
|
|
|
|
cidtest "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id/test"
|
2020-10-26 14:46:15 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
2020-08-11 11:46:31 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
2022-08-11 13:24:26 +00:00
|
|
|
func TestParsePutSuccess(t *testing.T) {
|
|
|
|
t.Run("wrong number of parameters", func(t *testing.T) {
|
|
|
|
prms := []stackitem.Item{
|
|
|
|
stackitem.NewMap(),
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := ParsePutSuccess(createNotifyEventFromItems(prms))
|
|
|
|
require.EqualError(t, err, event.WrongNumberOfParameters(2, len(prms)).Error())
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("wrong container ID parameter", func(t *testing.T) {
|
|
|
|
_, err := ParsePutSuccess(createNotifyEventFromItems([]stackitem.Item{
|
|
|
|
stackitem.NewMap(),
|
|
|
|
stackitem.NewMap(),
|
|
|
|
}))
|
|
|
|
|
|
|
|
require.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
id := cidtest.ID()
|
|
|
|
|
|
|
|
binID := make([]byte, sha256.Size)
|
|
|
|
id.Encode(binID)
|
|
|
|
|
|
|
|
t.Run("wrong public key parameter", func(t *testing.T) {
|
|
|
|
_, err := ParsePutSuccess(createNotifyEventFromItems([]stackitem.Item{
|
|
|
|
stackitem.NewByteArray(binID),
|
|
|
|
stackitem.NewMap(),
|
|
|
|
}))
|
|
|
|
|
|
|
|
require.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("correct behavior", func(t *testing.T) {
|
|
|
|
ev, err := ParsePutSuccess(createNotifyEventFromItems([]stackitem.Item{
|
|
|
|
stackitem.NewByteArray(binID),
|
|
|
|
stackitem.NewByteArray([]byte("key")),
|
|
|
|
}))
|
|
|
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
require.Equal(t, PutSuccess{
|
|
|
|
ID: id,
|
|
|
|
}, ev)
|
|
|
|
})
|
|
|
|
}
|