Newer
Older
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
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Operations on the off-chain testing environment.
use super::{
db::ExecContext,
AccountError,
EmittedEvent,
EnvInstance,
OnInstance,
};
use crate::env::{
call::CallData,
EnvTypes,
Result,
};
use ink_prelude::string::String;
/// Pushes a contract execution context.
///
/// This is the data behind a single instance of a contract call.
///
/// # Note
///
/// Together with [`pop_execution_context`] this can be used to emulated
/// nested calls.
pub fn push_execution_context<T>(
caller: T::AccountId,
callee: T::AccountId,
gas_limit: T::Balance,
endowment: T::Balance,
call_data: CallData,
) where
T: EnvTypes,
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance.exec_context.push(
ExecContext::build::<T>()
.caller(caller)
.callee(callee)
.gas(gas_limit)
.transferred_value(endowment)
.call_data(call_data)
.finish(),
)
})
}
/// Pops the top contract execution context.
///
/// # Note
///
/// Together with [`push_execution_context`] this can be used to emulated
/// nested calls.
pub fn pop_execution_context() {
<EnvInstance as OnInstance>::on_instance(|instance| {
instance.exec_context.pop();
})
}
/// Sets the balance of the account to the given balance.
///
/// # Note
///
/// Note that account could refer to either a user account or
/// a smart contract account.
///
/// # Errors
///
/// - If `account` does not exist.
/// - If the underlying `account` type does not match.
/// - If the underlying `new_balance` type does not match.
pub fn set_account_balance<T>(
account_id: T::AccountId,
new_balance: T::Balance,
) -> Result<()>
where
T: EnvTypes,
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance
.accounts
.get_account_mut::<T>(&account_id)
.ok_or_else(|| AccountError::no_account_for_id::<T>(&account_id))
.map_err(Into::into)
.and_then(|account| account.set_balance::<T>(new_balance).map_err(Into::into))
})
}
/// Returns the balance of the account.
///
/// # Note
///
/// Note that account could refer to either a user account or
/// a smart contract account. This returns the same as `env::api::balance`
/// if given the account ID of the currently executed smart contract.
///
/// # Errors
///
/// - If `account` does not exist.
/// - If the underlying `account` type does not match.
pub fn get_account_balance<T>(account_id: T::AccountId) -> Result<T::Balance>
where
T: EnvTypes,
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance
.accounts
.get_account::<T>(&account_id)
.ok_or_else(|| AccountError::no_account_for_id::<T>(&account_id))
.map_err(Into::into)
.and_then(|account| account.balance::<T>().map_err(Into::into))
})
}
/// Sets the rent allowance of the contract account to the given rent allowance.
///
/// # Errors
///
/// - If `account` does not exist.
/// - If the underlying `account` type does not match.
/// - If the underlying `new_rent_allowance` type does not match.
pub fn set_contract_rent_allowance<T>(
account_id: T::AccountId,
new_rent_allowance: T::Balance,
) -> Result<()>
where
T: EnvTypes,
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance
.accounts
.get_account_mut::<T>(&account_id)
.ok_or_else(|| AccountError::no_account_for_id::<T>(&account_id))
.map_err(Into::into)
.and_then(|account| {
account
.set_rent_allowance::<T>(new_rent_allowance)
.map_err(Into::into)
})
})
}
/// Returns the rent allowance of the contract account.
///
/// # Errors
///
/// - If `account` does not exist.
/// - If the underlying `account` type does not match.
/// - If the returned rent allowance cannot be properly decoded.
pub fn get_contract_rent_allowance<T>(account_id: T::AccountId) -> Result<T::Balance>
where
T: EnvTypes,
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance
.accounts
.get_account::<T>(&account_id)
.ok_or_else(|| AccountError::no_account_for_id::<T>(&account_id))
.map_err(Into::into)
.and_then(|account| account.rent_allowance::<T>().map_err(Into::into))
})
}
/// Sets the runtime storage to value for the given key.
pub fn set_runtime_storage<T>(key: &[u8], value: T)
where
T: scale::Encode,
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance.runtime_storage.store(key.to_vec(), value)
})
}
/// Sets the call handler for runtime calls.
pub fn set_runtime_call_handler<T, F>(f: F)
where
T: EnvTypes,
F: FnMut(<T as EnvTypes>::Call) + 'static,
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance.runtime_call_handler.register::<T, F>(f)
})
}
/// Set the entropy hash of the current block.
///
/// # Note
///
/// This allows to control what [`crate::env::random`] returns.
pub fn set_block_entropy<T>(entropy: T::Hash) -> Result<()>
where
T: EnvTypes,
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance.current_block_mut()?.set_entropy::<T>(entropy)
})
.map_err(Into::into)
}
/// Returns the contents of the past performed environmental `println` in order.
pub fn recorded_printlns() -> impl Iterator<Item = String> {
<EnvInstance as OnInstance>::on_instance(|instance| {
// We return a clone of the recorded strings instead of
// references to them since this would require the whole `on_instance`
// API to operate on `'static` environmental instances which would
// ultimately allow leaking those `'static` references to the outside
// and potentially lead to terrible bugs such as iterator invalidation.
instance
.console
.past_prints()
.map(ToOwned::to_owned)
.collect::<Vec<_>>()
.into_iter()
})
}
/// Returns the recorded emitted events in order.
pub fn recorded_events() -> impl Iterator<Item = EmittedEvent> {
<EnvInstance as OnInstance>::on_instance(|instance| {
// We return a clone of the recorded emitted events instead of
// references to them since this would require the whole `on_instance`
// API to operate on `'static` environmental instances which would
// ultimately allow leaking those `'static` references to the outside
// and potentially lead to terrible bugs such as iterator invalidation.
instance
.emitted_events
.emitted_events()
.map(Clone::clone)
.collect::<Vec<_>>()
.into_iter()
})
}
/// Advances the chain by a single block.
pub fn advance_block<T>() -> Result<()>
where
T: EnvTypes,
{
<EnvInstance as OnInstance>::on_instance(|instance| instance.advance_block::<T>())
}
/// The default accounts.
pub struct DefaultAccounts<T>
where
T: EnvTypes,
{
pub alice: T::AccountId,
pub bob: T::AccountId,
pub charlie: T::AccountId,
pub django: T::AccountId,
pub eve: T::AccountId,
pub frank: T::AccountId,
}
/// Returns the default accounts for testing purposes:
/// Alice, Bob, Charlie, Django, Eve and Frank.
pub fn default_accounts<T>() -> Result<DefaultAccounts<T>>
where
T: EnvTypes,
<T as EnvTypes>::AccountId: From<[u8; 32]>,
{
Ok(DefaultAccounts {
alice: T::AccountId::from([0x01; 32]),
bob: T::AccountId::from([0x02; 32]),
charlie: T::AccountId::from([0x03; 32]),
django: T::AccountId::from([0x04; 32]),
eve: T::AccountId::from([0x05; 32]),
frank: T::AccountId::from([0x06; 32]),
})
}
/// Initializes the whole off-chain environment.
///
/// # Note
///
/// - Initializes the off-chain environment with default values that fit most
/// uses cases.
/// - The off-chain environment _must_ be initialized before use.
pub fn initialize_as_default<T>() -> Result<()>
where
T: EnvTypes,
<T as EnvTypes>::AccountId: From<[u8; 32]>,
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance.initialize_as_default::<T>()
})
}
/// Runs the given closure test function with the default configuartion
/// for the off-chain environment.
pub fn run_test<T, F>(f: F) -> Result<()>
where
T: EnvTypes,
F: FnOnce(DefaultAccounts<T>) -> Result<()>,
<T as EnvTypes>::AccountId: From<[u8; 32]>,
{
initialize_as_default::<T>()?;
let default_accounts = default_accounts::<T>()?;
f(default_accounts)
}
/// Returns the total number of reads and writes of the contract's storage.
pub fn get_contract_storage_rw<T>(account_id: &T::AccountId) -> Result<(usize, usize)>
where
T: EnvTypes,
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance
.accounts
.get_account::<T>(account_id)
.ok_or_else(|| AccountError::no_account_for_id::<T>(account_id))
.map_err(Into::into)
.and_then(|account| account.get_storage_rw().map_err(Into::into))
})
}