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
use crate::scenario::model::{ScCallStep, Step, TxESDT, TypedScCall, TypedScCallExecutor};
use multiversx_sc::codec::{CodecFrom, PanicErrorHandler, TopEncodeMulti};
use crate::{
tx_execution::sc_call_with_async_and_callback,
tx_mock::{generate_tx_hash_dummy, TxInput, TxResult, TxTokenTransfer},
world_mock::BlockchainMock,
};
use super::check_tx_output;
impl BlockchainMock {
pub fn perform_sc_call(&mut self, sc_call_step: ScCallStep) -> &mut Self {
let _ = self.with_borrowed(|state| execute_and_check(state, &sc_call_step));
self.scenario_trace.steps.push(Step::ScCall(sc_call_step));
self
}
pub fn perform_sc_call_get_result<OriginalResult, RequestedResult>(
&mut self,
typed_sc_call: TypedScCall<OriginalResult>,
) -> RequestedResult
where
OriginalResult: TopEncodeMulti,
RequestedResult: CodecFrom<OriginalResult>,
{
let sc_call_step: ScCallStep = typed_sc_call.into();
let tx_result = self.with_borrowed(|state| execute_and_check(state, &sc_call_step));
self.scenario_trace.steps.push(Step::ScCall(sc_call_step));
let mut raw_result = tx_result.result_values;
RequestedResult::multi_decode_or_handle_err(&mut raw_result, PanicErrorHandler).unwrap()
}
}
impl TypedScCallExecutor for BlockchainMock {
fn execute_typed_sc_call<OriginalResult, RequestedResult>(
&mut self,
typed_sc_call: TypedScCall<OriginalResult>,
) -> RequestedResult
where
OriginalResult: TopEncodeMulti,
RequestedResult: CodecFrom<OriginalResult>,
{
self.perform_sc_call_get_result(typed_sc_call)
}
}
pub(crate) fn execute(
mut state: BlockchainMock,
sc_call_step: &ScCallStep,
) -> (TxResult, BlockchainMock) {
let tx = &sc_call_step.tx;
let tx_input = TxInput {
from: tx.from.to_address(),
to: tx.to.to_address(),
egld_value: tx.egld_value.value.clone(),
esdt_values: tx_esdt_transfers_from_scenario(tx.esdt_value.as_slice()),
func_name: tx.function.clone().into(),
args: tx
.arguments
.iter()
.map(|scen_arg| scen_arg.value.clone())
.collect(),
gas_limit: tx.gas_limit.value,
gas_price: tx.gas_price.value,
tx_hash: generate_tx_hash_dummy(&sc_call_step.id),
..Default::default()
};
state.increase_account_nonce(&tx_input.from);
sc_call_with_async_and_callback(tx_input, state)
}
fn execute_and_check(
state: BlockchainMock,
sc_call_step: &ScCallStep,
) -> (TxResult, BlockchainMock) {
let (tx_result, state) = execute(state, sc_call_step);
if let Some(tx_expect) = &sc_call_step.expect {
check_tx_output(&sc_call_step.id, tx_expect, &tx_result);
}
(tx_result, state)
}
pub fn tx_esdt_transfers_from_scenario(scenario_transf_esdt: &[TxESDT]) -> Vec<TxTokenTransfer> {
scenario_transf_esdt
.iter()
.map(tx_esdt_transfer_from_scenario)
.collect()
}
pub fn tx_esdt_transfer_from_scenario(scenario_transf_esdt: &TxESDT) -> TxTokenTransfer {
TxTokenTransfer {
token_identifier: scenario_transf_esdt.esdt_token_identifier.value.clone(),
nonce: scenario_transf_esdt.nonce.value,
value: scenario_transf_esdt.esdt_value.value.clone(),
}
}