2021-01-28 15:01:54 +00:00
|
|
|
package container
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
"testing"
|
|
|
|
|
2023-03-07 13:38:26 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/event"
|
2021-01-28 15:01:54 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestStartEstimation(t *testing.T) {
|
|
|
|
var epochNum uint64 = 100
|
|
|
|
epochItem := stackitem.NewBigInteger(new(big.Int).SetUint64(epochNum))
|
|
|
|
|
|
|
|
t.Run("wrong number of parameters", func(t *testing.T) {
|
|
|
|
prms := []stackitem.Item{
|
|
|
|
stackitem.NewMap(),
|
|
|
|
stackitem.NewMap(),
|
|
|
|
}
|
|
|
|
|
2021-10-22 10:06:08 +00:00
|
|
|
_, err := ParseStartEstimation(createNotifyEventFromItems(prms))
|
2021-01-28 15:01:54 +00:00
|
|
|
require.EqualError(t, err, event.WrongNumberOfParameters(1, len(prms)).Error())
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("wrong estimation parameter", func(t *testing.T) {
|
2021-10-22 10:06:08 +00:00
|
|
|
_, err := ParseStartEstimation(createNotifyEventFromItems([]stackitem.Item{
|
2021-01-28 15:01:54 +00:00
|
|
|
stackitem.NewMap(),
|
2021-10-22 10:06:08 +00:00
|
|
|
}))
|
2021-01-28 15:01:54 +00:00
|
|
|
|
|
|
|
require.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("correct behavior", func(t *testing.T) {
|
2021-10-22 10:06:08 +00:00
|
|
|
ev, err := ParseStartEstimation(createNotifyEventFromItems([]stackitem.Item{
|
2021-01-28 15:01:54 +00:00
|
|
|
epochItem,
|
2021-10-22 10:06:08 +00:00
|
|
|
}))
|
2021-01-28 15:01:54 +00:00
|
|
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
require.Equal(t, StartEstimation{
|
|
|
|
epochNum,
|
|
|
|
}, ev)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStopEstimation(t *testing.T) {
|
|
|
|
var epochNum uint64 = 100
|
|
|
|
epochItem := stackitem.NewBigInteger(new(big.Int).SetUint64(epochNum))
|
|
|
|
|
|
|
|
t.Run("wrong number of parameters", func(t *testing.T) {
|
|
|
|
prms := []stackitem.Item{
|
|
|
|
stackitem.NewMap(),
|
|
|
|
stackitem.NewMap(),
|
|
|
|
}
|
|
|
|
|
2021-10-22 10:06:08 +00:00
|
|
|
_, err := ParseStopEstimation(createNotifyEventFromItems(prms))
|
2021-01-28 15:01:54 +00:00
|
|
|
require.EqualError(t, err, event.WrongNumberOfParameters(1, len(prms)).Error())
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("wrong estimation parameter", func(t *testing.T) {
|
2021-10-22 10:06:08 +00:00
|
|
|
_, err := ParseStopEstimation(createNotifyEventFromItems([]stackitem.Item{
|
2021-01-28 15:01:54 +00:00
|
|
|
stackitem.NewMap(),
|
2021-10-22 10:06:08 +00:00
|
|
|
}))
|
2021-01-28 15:01:54 +00:00
|
|
|
|
|
|
|
require.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("correct behavior", func(t *testing.T) {
|
2021-10-22 10:06:08 +00:00
|
|
|
ev, err := ParseStopEstimation(createNotifyEventFromItems([]stackitem.Item{
|
2021-01-28 15:01:54 +00:00
|
|
|
epochItem,
|
2021-10-22 10:06:08 +00:00
|
|
|
}))
|
2021-01-28 15:01:54 +00:00
|
|
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
require.Equal(t, StopEstimation{
|
|
|
|
epochNum,
|
|
|
|
}, ev)
|
|
|
|
})
|
|
|
|
}
|