neoneo-go/pkg/network/fuzz_test.go
Anna Shaleva 1560df6913 *: add nolint comment to deprecated math/rand usages
They are used in tests only.

Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
2024-03-05 13:54:10 +03:00

24 lines
457 B
Go

package network
import (
"math/rand"
"testing"
"github.com/nspcc-dev/neo-go/pkg/io"
"github.com/stretchr/testify/require"
)
func FuzzMessageDecode(f *testing.F) {
for i := 0; i < 100; i++ {
seed := make([]byte, rand.Uint32()%1000)
//nolint:staticcheck
rand.Read(seed)
f.Add(seed)
}
f.Fuzz(func(t *testing.T, value []byte) {
m := new(Message)
r := io.NewBinReaderFromBuf(value)
require.NotPanics(t, func() { _ = m.Decode(r) })
})
}