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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
#[macro_export]
macro_rules! script_with_data_offset {
($offset:ident, $script:expr, $tx_offset:expr) => {{
let $offset = {
let $offset = {
use $crate::prelude::Immediate18;
0 as Immediate18
};
let script_bytes: ::std::vec::Vec<u8> = ::std::iter::IntoIterator::into_iter({ $script }).collect();
{
use $crate::fuel_tx::field::Script as ScriptField;
use $crate::fuel_tx::Script;
use $crate::fuel_types::bytes::padded_len;
use $crate::prelude::Immediate18;
($tx_offset + Script::script_offset_static() + padded_len(script_bytes.as_slice())) as Immediate18
}
};
($script, $offset)
}};
}
#[allow(missing_docs)]
#[cfg(any(test, feature = "test-helpers"))]
pub mod test_helpers {
use crate::consts::*;
use crate::memory_client::MemoryClient;
use crate::state::StateTransition;
use crate::storage::{InterpreterStorage, MemoryStorage};
use crate::transactor::Transactor;
use anyhow::anyhow;
use crate::interpreter::{CheckedMetadata, ExecutableTransaction};
use crate::prelude::Call;
use fuel_asm::{GTFArgs, Opcode, PanicReason};
use fuel_tx::field::Outputs;
use fuel_tx::{
Checked, ConsensusParameters, Contract, Create, Input, IntoChecked, Output, Receipt, Script, StorageSlot,
Transaction, TransactionBuilder, Witness,
};
use fuel_types::bytes::{Deserializable, SerializableVec, SizedBytes};
use fuel_types::{Address, AssetId, ContractId, Immediate12, Salt, Word};
use itertools::Itertools;
use rand::prelude::StdRng;
use rand::{Rng, SeedableRng};
pub struct CreatedContract {
pub tx: Create,
pub contract_id: ContractId,
pub salt: Salt,
}
pub struct TestBuilder {
rng: StdRng,
gas_price: Word,
gas_limit: Word,
builder: TransactionBuilder<Script>,
storage: MemoryStorage,
params: ConsensusParameters,
block_height: u32,
}
impl TestBuilder {
pub fn new(seed: u64) -> Self {
TestBuilder {
rng: StdRng::seed_from_u64(seed),
gas_price: 0,
gas_limit: 100,
builder: TransactionBuilder::script(vec![Opcode::RET(REG_ONE)].into_iter().collect(), vec![]),
storage: MemoryStorage::default(),
params: ConsensusParameters::default(),
block_height: 0,
}
}
pub fn get_block_height(&self) -> u32 {
self.block_height
}
pub fn get_params(&self) -> &ConsensusParameters {
&self.params
}
pub fn start_script(&mut self, script: Vec<Opcode>, script_data: Vec<u8>) -> &mut Self {
self.builder = TransactionBuilder::script(script.into_iter().collect(), script_data);
self.builder.gas_price(self.gas_price);
self.builder.gas_limit(self.gas_limit);
self
}
pub fn gas_price(&mut self, price: Word) -> &mut TestBuilder {
self.builder.gas_price(price);
self.gas_price = price;
self
}
pub fn gas_limit(&mut self, limit: Word) -> &mut TestBuilder {
self.builder.gas_limit(limit);
self.gas_limit = limit;
self
}
pub fn change_output(&mut self, asset_id: AssetId) -> &mut TestBuilder {
self.builder.add_output(Output::change(self.rng.gen(), 0, asset_id));
self
}
pub fn coin_output(&mut self, asset_id: AssetId, amount: Word) -> &mut TestBuilder {
self.builder.add_output(Output::coin(self.rng.gen(), amount, asset_id));
self
}
pub fn message_output(&mut self) -> &mut TestBuilder {
self.builder.add_output(Output::message(Address::zeroed(), 0));
self
}
pub fn variable_output(&mut self, asset_id: AssetId) -> &mut TestBuilder {
self.builder
.add_output(Output::variable(Address::zeroed(), 0, asset_id));
self
}
pub fn contract_output(&mut self, id: &ContractId) -> &mut TestBuilder {
let input_idx = self
.builder
.inputs()
.iter()
.find_position(|input| matches!(input, Input::Contract {contract_id, ..} if contract_id == id))
.expect("expected contract input with matching contract id");
self.builder
.add_output(Output::contract(input_idx.0 as u8, self.rng.gen(), self.rng.gen()));
self
}
pub fn coin_input(&mut self, asset_id: AssetId, amount: Word) -> &mut TestBuilder {
self.builder
.add_unsigned_coin_input(self.rng.gen(), self.rng.gen(), amount, asset_id, self.rng.gen(), 0);
self
}
pub fn contract_input(&mut self, contract_id: ContractId) -> &mut TestBuilder {
self.builder.add_input(Input::contract(
self.rng.gen(),
self.rng.gen(),
self.rng.gen(),
self.rng.gen(),
contract_id,
));
self
}
pub fn witness(&mut self, witness: Witness) -> &mut TestBuilder {
self.builder.add_witness(witness);
self
}
pub fn storage(&mut self, storage: MemoryStorage) -> &mut TestBuilder {
self.storage = storage;
self
}
pub fn params(&mut self, params: ConsensusParameters) -> &mut TestBuilder {
self.params = params;
self
}
pub fn block_height(&mut self, block_height: u32) -> &mut TestBuilder {
self.block_height = block_height;
self
}
pub const fn tx_offset(&self) -> usize {
self.params.tx_offset()
}
pub fn build(&mut self) -> Checked<Script> {
self.builder.finalize_checked(self.block_height as Word, &self.params)
}
pub fn build_get_balance_tx(
params: &ConsensusParameters,
contract_id: &ContractId,
asset_id: &AssetId,
) -> Checked<Script> {
let (script, _) = script_with_data_offset!(
data_offset,
vec![
Opcode::MOVI(0x11, data_offset),
Opcode::ADDI(0x12, 0x11, AssetId::LEN as Immediate12),
Opcode::BAL(0x10, 0x11, 0x12),
Opcode::LOG(0x10, REG_ZERO, REG_ZERO, REG_ZERO),
Opcode::RET(REG_ONE)
],
params.tx_offset()
);
let script_data: Vec<u8> = [asset_id.as_ref(), contract_id.as_ref()]
.into_iter()
.flatten()
.copied()
.collect();
TestBuilder::new(2322u64)
.start_script(script, script_data)
.gas_price(0)
.gas_limit(1_000_000)
.contract_input(*contract_id)
.contract_output(contract_id)
.build()
}
pub fn setup_contract(
&mut self,
contract: Vec<Opcode>,
initial_balance: Option<(AssetId, Word)>,
initial_state: Option<Vec<StorageSlot>>,
) -> CreatedContract {
let storage_slots = if let Some(slots) = initial_state {
slots
} else {
Default::default()
};
let salt: Salt = self.rng.gen();
let program: Witness = contract
.into_iter()
.flat_map(Opcode::to_bytes)
.collect::<Vec<u8>>()
.into();
let storage_root = Contract::initial_state_root(storage_slots.iter());
let contract = Contract::from(program.as_ref());
let contract_root = contract.root();
let contract_id = contract.id(&salt, &contract_root, &storage_root);
let tx = Transaction::create(
self.gas_price,
self.gas_limit,
0,
0,
salt,
storage_slots,
vec![],
vec![Output::contract_created(contract_id, storage_root)],
vec![program],
)
.into_checked(self.block_height as Word, &self.params)
.expect("failed to check tx");
let state = self.execute_tx(tx).expect("Expected vm execution to be successful");
if let Some((asset_id, amount)) = initial_balance {
self.storage
.merkle_contract_asset_id_balance_insert(&contract_id, &asset_id, amount)
.unwrap();
}
CreatedContract {
tx: state.tx().clone(),
contract_id,
salt,
}
}
pub fn execute_tx<Tx>(&mut self, checked: Checked<Tx>) -> anyhow::Result<StateTransition<Tx>>
where
Tx: ExecutableTransaction,
<Tx as IntoChecked>::Metadata: CheckedMetadata,
{
self.storage.set_block_height(self.block_height);
let mut transactor = Transactor::new(self.storage.clone(), self.params);
transactor.transact(checked);
let storage = transactor.as_mut().clone();
if let Some(e) = transactor.error() {
return Err(anyhow!("{:?}", e));
}
let state = transactor.to_owned_state_transition().unwrap();
let interpreter = transactor.interpreter();
let transaction: Transaction = interpreter.transaction().clone().into();
let tx_offset = self.params.tx_offset();
let tx_mem = &interpreter.memory()[tx_offset..(tx_offset + transaction.serialized_size())];
let deser_tx = Transaction::from_bytes(tx_mem).unwrap();
assert_eq!(deser_tx, transaction);
self.storage = storage;
Ok(state)
}
pub fn execute(&mut self) -> StateTransition<Script> {
let tx = self.build();
self.execute_tx(tx).expect("expected successful vm execution")
}
pub fn execute_get_outputs(&mut self) -> Vec<Output> {
self.execute().tx().outputs().to_vec()
}
pub fn execute_get_change(&mut self, find_asset_id: AssetId) -> Word {
let outputs = self.execute_get_outputs();
find_change(outputs, find_asset_id)
}
pub fn get_contract_balance(&mut self, contract_id: &ContractId, asset_id: &AssetId) -> Word {
let tx = TestBuilder::build_get_balance_tx(&self.params, contract_id, asset_id);
let state = self
.execute_tx(tx)
.expect("expected successful vm execution in this context");
let receipts = state.receipts();
receipts[0].ra().expect("Balance expected")
}
}
pub fn check_expected_reason_for_opcodes(opcodes: Vec<Opcode>, expected_reason: PanicReason) {
let client = MemoryClient::default();
check_expected_reason_for_opcodes_with_client(client, opcodes, expected_reason);
}
fn check_expected_reason_for_opcodes_with_client(
mut client: MemoryClient,
opcodes: Vec<Opcode>,
expected_reason: PanicReason,
) {
let gas_price = 0;
let params = ConsensusParameters::default().with_max_gas_per_tx(Word::MAX / 2);
let gas_limit = params.max_gas_per_tx;
let maturity = 0;
let height = 0;
let contract: Witness = opcodes.into_iter().collect::<Vec<u8>>().into();
let salt = Default::default();
let code_root = Contract::root_from_code(contract.as_ref());
let storage_slots = vec![];
let state_root = Contract::initial_state_root(storage_slots.iter());
let contract_id = Contract::from(contract.as_ref()).id(&salt, &code_root, &state_root);
let contract_deployer = TransactionBuilder::create(contract, salt, storage_slots)
.add_output(Output::contract_created(contract_id, state_root))
.finalize_checked(height, ¶ms);
client.deploy(contract_deployer).expect("valid contract deployment");
let script = [
Opcode::GTF(0x10, 0x0, Immediate12::from(GTFArgs::ScriptData)),
Opcode::CALL(0x10, REG_ZERO, REG_ZERO, REG_CGAS),
Opcode::RET(REG_ONE),
]
.into_iter()
.collect();
let script_data: Vec<u8> = [Call::new(contract_id, 0, 0).to_bytes().as_slice()]
.into_iter()
.flatten()
.copied()
.collect();
let tx_deploy_loader = TransactionBuilder::script(script, script_data)
.gas_price(gas_price)
.gas_limit(gas_limit)
.maturity(maturity)
.add_input(Input::contract(
Default::default(),
Default::default(),
Default::default(),
Default::default(),
contract_id,
))
.add_output(Output::contract(0, Default::default(), Default::default()))
.finalize_checked(height, ¶ms);
check_reason_for_transaction(client, tx_deploy_loader, expected_reason);
}
pub fn check_reason_for_transaction(
mut client: MemoryClient,
checked_tx: Checked<Script>,
expected_reason: PanicReason,
) {
let receipts = client.transact(checked_tx);
let panic_found = receipts.iter().any(|receipt| {
if let Receipt::Panic { id: _, reason, .. } = receipt {
assert_eq!(
&expected_reason,
reason.reason(),
"Expected {}, found {}",
expected_reason,
reason.reason()
);
true
} else {
false
}
});
if !panic_found {
panic!("Script should have panicked");
}
}
pub fn find_change(outputs: Vec<Output>, find_asset_id: AssetId) -> Word {
let change = outputs.into_iter().find_map(|output| {
if let Output::Change { amount, asset_id, .. } = output {
if asset_id == find_asset_id {
Some(amount)
} else {
None
}
} else {
None
}
});
change.unwrap_or_else(|| panic!("no change matching asset ID {:x} was found", &find_asset_id))
}
}
#[allow(missing_docs)]
#[cfg(all(feature = "profile-gas", any(test, feature = "test-helpers")))]
pub mod gas_profiling {
use crate::prelude::*;
use std::sync::{Arc, Mutex};
#[derive(Clone)]
pub struct GasProfiler {
data: Arc<Mutex<Option<ProfilingData>>>,
}
impl Default for GasProfiler {
fn default() -> Self {
Self {
data: Arc::new(Mutex::new(None)),
}
}
}
impl ProfileReceiver for GasProfiler {
fn on_transaction(&mut self, _state: &Result<ProgramState, InterpreterError>, data: &ProfilingData) {
let mut guard = self.data.lock().unwrap();
*guard = Some(data.clone());
}
}
impl GasProfiler {
pub fn data(&self) -> Option<ProfilingData> {
self.data.lock().ok().and_then(|g| g.as_ref().cloned())
}
pub fn total_gas(&self) -> Word {
self.data()
.map(|d| d.gas().iter().map(|(_, gas)| gas).sum())
.unwrap_or_default()
}
}
}