Newer
Older
// Copyright 2018-2021 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,
EnvInstance,
OnInstance,
};
pub use super::{
db::ChainSpec,
CallData,
EmittedEvent,
};
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
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
{
<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
{
<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
{
<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
{
<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
{
<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))
})
}
pub fn register_chain_extension<E>(extension: E)
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance
.chain_extension_handler
.register(Box::new(extension));
})
}
/// Set the entropy hash of the current block.
///
/// # Note
///
/// This allows to control what [`crate::random`] returns.
pub fn set_block_entropy<T>(entropy: T::Hash) -> Result<()>
where
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance.current_block_mut()?.set_entropy::<T>(entropy)
})
.map_err(Into::into)
}
/// Update the [ChainSpec](`crate::test::ChainSpec`) for the test environment
pub fn update_chain_spec<F>(f: F) -> Result<()>
where
F: FnOnce(&mut ChainSpec),
<EnvInstance as OnInstance>::on_instance(|instance| f(instance.chain_spec_mut()));
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
/// 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
{
<EnvInstance as OnInstance>::on_instance(|instance| instance.advance_block::<T>())
}
/// Set to true to disable clearing storage
///
/// # Note
///
/// Useful for benchmarking because it ensures the initialized storage is maintained across runs,
/// because lazy storage structures automatically clear their associated cells when they are dropped.
pub fn set_clear_storage_disabled(disable: bool) {
<EnvInstance as OnInstance>::on_instance(|instance| {
instance.clear_storage_disabled = disable
})
}
/// The default accounts.
pub struct DefaultAccounts<T>
where
/// The predefined `ALICE` account holding substantial amounts of value.
/// The predefined `BOB` account holding some amounts of value.
/// The predefined `CHARLIE` account holding some amounts of value.
/// The predefined `DJANGO` account holding no value.
/// The predefined `EVE` account holding no value.
/// The predefined `FRANK` account holding no value.
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: Environment,
<T as Environment>::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.
pub fn initialize_or_reset_as_default<T>() -> Result<()>
T: Environment,
<T as Environment>::AccountId: From<[u8; 32]>,
{
<EnvInstance as OnInstance>::on_instance(|instance| {
instance.initialize_or_reset_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
F: FnOnce(DefaultAccounts<T>) -> Result<()>,
<T as Environment>::AccountId: From<[u8; 32]>,
initialize_or_reset_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
{
<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))
})
}
/// Returns the amount of storage cells used by the account `account_id`.
///
/// Returns `None` if the `account_id` is non-existent.
pub fn count_used_storage_cells<T>(account_id: &T::AccountId) -> Result<usize>
where
T: Environment,
{
<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.count_used_storage_cells().map_err(Into::into))
})
}
/// Returns the account id of the currently executing contract.
pub fn get_current_contract_account_id<T>() -> Result<T::AccountId>
where
T: Environment,
{
<EnvInstance as OnInstance>::on_instance(|instance| {
let exec_context = instance.exec_context()?;
let callee = exec_context.callee.decode()?;
Ok(callee)
})
}
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
/// The result of a successful contract termination.
#[derive(scale::Encode, scale::Decode)]
pub struct ContractTerminationResult<E>
where
E: Environment,
{
/// The beneficiary account who received the remaining value in the contract.
pub beneficiary: <E as Environment>::AccountId,
/// The value which was transferred to the `beneficiary`.
pub transferred: <E as Environment>::Balance,
}
#[cfg(feature = "std")]
use std::panic::UnwindSafe;
/// Tests if a contract terminates successfully after `self.env().terminate()`
/// has been called.
///
/// # Usage
///
/// ```no_compile
/// let should_terminate = move || your_contract.fn_which_should_terminate();
/// ink_env::test::assert_contract_termination::<ink_env::DefaultEnvironment, _>(
/// should_terminate,
/// expected_beneficiary,
/// expected_value_transferred_to_beneficiary
/// );
/// ```
///
/// See `examples/contract-terminate` for a complete usage example.
#[cfg(feature = "std")]
pub fn assert_contract_termination<T, F>(
should_terminate: F,
expected_beneficiary: T::AccountId,
expected_balance: T::Balance,
) where
T: Environment,
F: FnMut() + UnwindSafe,
<T as Environment>::AccountId: core::fmt::Debug,
<T as Environment>::Balance: core::fmt::Debug,
{
let value_any = ::std::panic::catch_unwind(should_terminate)
.expect_err("contract did not terminate");
let encoded_input: &Vec<u8> = value_any
.downcast_ref::<Vec<u8>>()
.expect("panic object can not be cast");
let res: ContractTerminationResult<T> =
scale::Decode::decode(&mut &encoded_input[..]).expect("input can not be decoded");
assert_eq!(res.beneficiary, expected_beneficiary);
assert_eq!(res.transferred, expected_balance);
}