Evgenii Stratonikov
1c12f23b84
All checks were successful
Tests and linters / Run gofumpt (push) Successful in 1m10s
Vulncheck / Vulncheck (push) Successful in 2m55s
Tests and linters / Staticcheck (push) Successful in 3m2s
Build / Build Components (push) Successful in 3m42s
Pre-commit hooks / Pre-commit (push) Successful in 3m46s
Tests and linters / Lint (push) Successful in 4m19s
Tests and linters / Tests (push) Successful in 4m23s
Tests and linters / gopls check (push) Successful in 4m44s
Tests and linters / Tests with -race (push) Successful in 5m18s
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
42 lines
896 B
Go
42 lines
896 B
Go
package netmap
|
|
|
|
import (
|
|
"math/big"
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestParseNewEpoch(t *testing.T) {
|
|
t.Run("wrong number of parameters", func(t *testing.T) {
|
|
prms := []stackitem.Item{
|
|
stackitem.NewMap(),
|
|
stackitem.NewMap(),
|
|
}
|
|
|
|
_, err := ParseNewEpoch(createNotifyEventFromItems(prms))
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("wrong first parameter type", func(t *testing.T) {
|
|
_, err := ParseNewEpoch(createNotifyEventFromItems([]stackitem.Item{
|
|
stackitem.NewMap(),
|
|
}))
|
|
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("correct behavior", func(t *testing.T) {
|
|
epochNum := uint64(100)
|
|
|
|
ev, err := ParseNewEpoch(createNotifyEventFromItems([]stackitem.Item{
|
|
stackitem.NewBigInteger(new(big.Int).SetUint64(epochNum)),
|
|
}))
|
|
|
|
require.NoError(t, err)
|
|
require.Equal(t, NewEpoch{
|
|
Num: epochNum,
|
|
}, ev)
|
|
})
|
|
}
|