-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmockSmartContractCallerTest.go
220 lines (184 loc) · 7.49 KB
/
mockSmartContractCallerTest.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
package testcommon
import (
"testing"
logger "github.com/multiversx/mx-chain-logger-go"
"github.com/multiversx/mx-chain-scenario-go/worldmock"
vmcommon "github.com/multiversx/mx-chain-vm-common-go"
mock "github.com/multiversx/mx-chain-vm-go/mock/context"
"github.com/multiversx/mx-chain-vm-go/vmhost"
)
var logMock = logger.GetOrCreate("vm/mock")
// TestType indicates whether the test is a SC call test or a SC creation test
type TestType int
const (
// RunTest indicates a test with SC calls
RunTest TestType = iota
// CreateTest indicates a test with SC creation
CreateTest
)
// SetupFunction -
type SetupFunction func(vmhost.VMHost, *worldmock.MockWorld)
// AssertResultsFunc -
type AssertResultsFunc func(world *worldmock.MockWorld, verify *VMOutputVerifier)
// AssertResultsWithStartNodeFunc -
type AssertResultsWithStartNodeFunc func(startNode *TestCallNode, world *worldmock.MockWorld, verify *VMOutputVerifier, expectedErrorsForRound []string)
type testTemplateConfig struct {
tb testing.TB
input *vmcommon.ContractCallInput
useMocks bool
wasmerSIGSEGVPassthrough bool
}
// MockInstancesTestTemplate holds the data to build a mock contract call test
type MockInstancesTestTemplate struct {
testTemplateConfig
contracts *[]MockTestSmartContract
setup SetupFunction
assertResults func(*TestCallNode, *worldmock.MockWorld, *VMOutputVerifier, []string)
}
// BuildMockInstanceCallTest starts the building process for a mock contract call test
func BuildMockInstanceCallTest(tb testing.TB) *MockInstancesTestTemplate {
return &MockInstancesTestTemplate{
testTemplateConfig: testTemplateConfig{
tb: tb,
useMocks: true,
wasmerSIGSEGVPassthrough: false,
},
setup: func(vmhost.VMHost, *worldmock.MockWorld) {},
}
}
// WithContracts provides the contracts to be used by the mock contract call test
func (callerTest *MockInstancesTestTemplate) WithContracts(usedContracts ...MockTestSmartContract) *MockInstancesTestTemplate {
callerTest.contracts = &usedContracts
return callerTest
}
// WithInput provides the ContractCallInput to be used by the mock contract call test
func (callerTest *MockInstancesTestTemplate) WithInput(input *vmcommon.ContractCallInput) *MockInstancesTestTemplate {
callerTest.input = input
return callerTest
}
// WithSetup provides the setup function to be used by the mock contract call test
func (callerTest *MockInstancesTestTemplate) WithSetup(setup SetupFunction) *MockInstancesTestTemplate {
callerTest.setup = setup
return callerTest
}
// WithWasmerSIGSEGVPassthrough sets the wasmerSIGSEGVPassthrough flag
func (callerTest *MockInstancesTestTemplate) WithWasmerSIGSEGVPassthrough(wasmerSIGSEGVPassthrough bool) *MockInstancesTestTemplate {
callerTest.wasmerSIGSEGVPassthrough = wasmerSIGSEGVPassthrough
return callerTest
}
// AndAssertResults provides the function that will aserts the results
func (callerTest *MockInstancesTestTemplate) AndAssertResults(assertResults AssertResultsFunc) (*vmcommon.VMOutput, error) {
return callerTest.andAssertResultsWithWorld(nil, true, nil, RunTest, nil, func(startNode *TestCallNode, world *worldmock.MockWorld, verify *VMOutputVerifier, expectedErrorsForRound []string) {
assertResults(world, verify)
})
}
// AndCreateAndAssertResults provides the function that will create the contract and aserts the results
func (callerTest *MockInstancesTestTemplate) AndCreateAndAssertResults(assertResults AssertResultsFunc) (*vmcommon.VMOutput, error) {
return callerTest.andAssertResultsWithWorld(nil, true, nil, CreateTest, nil, func(startNode *TestCallNode, world *worldmock.MockWorld, verify *VMOutputVerifier, expectedErrorsForRound []string) {
assertResults(world, verify)
})
}
// AndAssertResultsWithWorld provides the function that will aserts the results
func (callerTest *MockInstancesTestTemplate) AndAssertResultsWithWorld(
world *worldmock.MockWorld,
createAccount bool,
startNode *TestCallNode,
expectedErrorsForRound []string,
assertResults AssertResultsWithStartNodeFunc) (*vmcommon.VMOutput, error) {
return callerTest.andAssertResultsWithWorld(world, createAccount, startNode, RunTest, expectedErrorsForRound, assertResults)
}
func (callerTest *MockInstancesTestTemplate) andAssertResultsWithWorld(
world *worldmock.MockWorld,
createAccount bool,
startNode *TestCallNode,
testType TestType,
expectedErrorsForRound []string,
assertResults AssertResultsWithStartNodeFunc) (*vmcommon.VMOutput, error) {
callerTest.assertResults = assertResults
if world == nil {
world = worldmock.NewMockWorld()
}
return callerTest.runTestAndVerify(startNode, world, createAccount, testType, expectedErrorsForRound)
}
func (callerTest *MockInstancesTestTemplate) runTestAndVerify(
startNode *TestCallNode,
world *worldmock.MockWorld,
createContractAccounts bool,
testType TestType,
expectedErrorsForRound []string,
) (*vmcommon.VMOutput, error) {
host, vmOutput, err := callerTest.RunTest(
world,
createContractAccounts,
testType)
allErrors := host.Runtime().GetAllErrors()
verify := NewVMOutputVerifierWithAllErrors(callerTest.tb, vmOutput, err, allErrors)
if callerTest.assertResults != nil {
callerTest.assertResults(startNode, world, verify, expectedErrorsForRound)
}
return vmOutput, err
}
// RunTest executes the built test directly, without any assertions.
func (callerTest *MockInstancesTestTemplate) RunTest(
world *worldmock.MockWorld,
createContractAccounts bool,
testType TestType,
) (vmhost.VMHost, *vmcommon.VMOutput, error) {
if world == nil {
world = worldmock.NewMockWorld()
}
world.AcctMap.CreateAccount(UserAddress, world)
executorFactory := mock.NewExecutorMockFactory(world)
host := NewTestHostBuilder(callerTest.tb).
WithExecutorFactory(executorFactory).
WithBlockchainHook(world).
Build()
defer func() {
host.Reset()
}()
for _, mockSC := range *callerTest.contracts {
mockSC.Initialize(callerTest.tb, host, executorFactory.LastCreatedExecutor, createContractAccounts)
}
callerTest.setup(host, world)
// create snapshot (normaly done by node)
world.CreateStateBackup()
var vmOutput *vmcommon.VMOutput
var err error
switch testType {
case RunTest:
vmOutput, err = host.RunSmartContractCall(callerTest.input)
case CreateTest:
vmOutput, err = host.RunSmartContractCreate(&vmcommon.ContractCreateInput{
VMInput: callerTest.input.VMInput,
ContractCode: callerTest.input.RecipientAddr,
})
}
return host, vmOutput, err
}
// SimpleWasteGasMockMethod is a simple waste gas mock method
func SimpleWasteGasMockMethod(instanceMock *mock.InstanceMock, gas uint64) func() *mock.InstanceMock {
return func() *mock.InstanceMock {
host := instanceMock.Host
instance := mock.GetMockInstance(host)
err := host.Metering().UseGasBounded(gas)
if err != nil {
host.Runtime().SetRuntimeBreakpointValue(vmhost.BreakpointOutOfGas)
}
return instance
}
}
// WasteGasWithReturnDataMockMethod is a simple waste gas mock method
func WasteGasWithReturnDataMockMethod(instanceMock *mock.InstanceMock, gas uint64, returnData []byte) func() *mock.InstanceMock {
return func() *mock.InstanceMock {
host := instanceMock.Host
instance := mock.GetMockInstance(host)
logMock.Trace("instance mock waste gas", "sc", string(host.Runtime().GetContextAddress()), "func", host.Runtime().FunctionName(), "gas", gas)
err := host.Metering().UseGasBounded(gas)
if err != nil {
host.Runtime().SetRuntimeBreakpointValue(vmhost.BreakpointOutOfGas)
return instance
}
host.Output().Finish(returnData)
return instance
}
}