Documentation
¶
Index ¶
- func RunPrecompileTests(t *testing.T, module modules.Module, ...)
- func RunPredicateBenchmarks(b *testing.B, predicateTests map[string]PredicateTest)
- func RunPredicateTests(t *testing.T, predicateTests map[string]PredicateTest)
- type ConfigEqualTest
- type ConfigVerifyTest
- type PrecompileRunparams
- type PrecompileTest
- type PredicateTest
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RunPrecompileTests ¶ added in v0.5.3
func RunPredicateBenchmarks ¶ added in v0.5.3
func RunPredicateBenchmarks(b *testing.B, predicateTests map[string]PredicateTest)
func RunPredicateTests ¶ added in v0.5.3
func RunPredicateTests(t *testing.T, predicateTests map[string]PredicateTest)
Types ¶
type ConfigEqualTest ¶ added in v0.5.0
type ConfigEqualTest struct { Config precompileconfig.Config Other precompileconfig.Config Expected bool }
ConfigEqualTest is a test case for comparing two configs
type ConfigVerifyTest ¶ added in v0.5.0
type ConfigVerifyTest struct { Config precompileconfig.Config ExpectedError string }
ConfigVerifyTest is a test case for verifying a config
type PrecompileRunparams ¶ added in v0.5.0
type PrecompileTest ¶
type PrecompileTest struct { // Caller is the address of the precompile caller Caller common.Address // Input the raw input bytes to the precompile Input []byte // InputFn is a function that returns the raw input bytes to the precompile // If specified, Input will be ignored. InputFn func(t testing.TB) []byte // SuppliedGas is the amount of gas supplied to the precompile SuppliedGas uint64 // ReadOnly is whether the precompile should be called in read only // mode. If true, the precompile should not modify the state. ReadOnly bool // Config is the config to use for the precompile // It should be the same precompile config that is used in the // precompile's configurator. // If nil, Configure will not be called. Config precompileconfig.Config // BeforeHook is called before the precompile is called. BeforeHook func(t testing.TB, state contract.StateDB) // AfterHook is called after the precompile is called. AfterHook func(t testing.TB, state contract.StateDB) // ExpectedRes is the expected raw byte result returned by the precompile ExpectedRes []byte // ExpectedErr is the expected error returned by the precompile ExpectedErr string // BlockNumber is the block number to use for the precompile's block context BlockNumber int64 }
PrecompileTest is a test case for a precompile
type PredicateTest ¶ added in v0.5.3
type PredicateTest struct { Config precompileconfig.Config ProposerVMBlockContext *block.Context SnowContext *snow.Context StorageSlots []byte Gas uint64 GasErr, PredicateErr error }
func (PredicateTest) Run ¶ added in v0.5.3
func (test PredicateTest) Run(t testing.TB)
func (PredicateTest) RunBenchmark ¶ added in v0.5.3
func (test PredicateTest) RunBenchmark(b *testing.B)
Click to show internal directories.
Click to hide internal directories.