tutus-chain/pkg/vm/fuzz_test.go

48 lines
1.4 KiB
Go
Executable File

package vm
import (
"testing"
"git.marketally.com/tutus-one/tutus-chain/pkg/smartcontract/scparser"
"git.marketally.com/tutus-one/tutus-chain/pkg/vm/opcode"
"github.com/stretchr/testify/require"
)
var fuzzSeedValidScripts = [][]byte{
makeProgram(opcode.PUSH1, opcode.PUSH10, opcode.ADD),
makeProgram(opcode.PUSH10, opcode.JMP, 3, opcode.ABORT, opcode.RET),
makeProgram(opcode.PUSHINT16, 1, 2, opcode.PUSHINT32, 3, 4, opcode.DROP),
makeProgram(opcode.PUSH2, opcode.NEWARRAY, opcode.DUP, opcode.PUSH0, opcode.PUSH1, opcode.SETITEM, opcode.VALUES),
append([]byte{byte(opcode.PUSHDATA1), 10}, randomBytes(10)...),
append([]byte{byte(opcode.PUSHDATA1), 100}, randomBytes(100)...),
// Simplified version of fuzzer output from #2659.
{byte(opcode.CALL), 3, byte(opcode.ASSERT),
byte(opcode.CALL), 3, byte(opcode.ASSERT),
byte(opcode.DEPTH), byte(opcode.PACKSTRUCT), byte(opcode.DUP),
byte(opcode.UNPACK), byte(opcode.PACKSTRUCT), byte(opcode.POPITEM),
byte(opcode.DEPTH)},
}
func FuzzVMDontPanic(f *testing.F) {
for _, s := range fuzzSeedValidScripts {
f.Add(s)
}
f.Fuzz(func(t *testing.T, script []byte) {
if scparser.IsScriptCorrect(script, nil) != nil {
return
}
v := load(script)
// Prevent infinite loops from being reported as fail.
v.SetGasLimit(1000)
v.getPrice = func(opcode.Opcode, []byte) int64 {
return 1
}
require.NotPanics(t, func() {
_ = v.Run()
})
})
}