1use core::any::Any;
2
3pub mod api;
4pub mod macros;
5
6pub use frame_metadata::RuntimeMetadataPrefixed;
7pub use frame_support::weights::Weight;
8use frame_support::{
9 sp_runtime::traits::Dispatchable,
10 traits::fungible::Inspect,
11};
12use frame_system::{
13 pallet_prelude::{
14 BlockNumberFor,
15 OriginFor,
16 },
17 EventRecord,
18};
19pub use macros::{
20 BlockBuilder,
21 DefaultSandbox,
22};
23use pallet_revive::{
24 ContractResult,
25 ExecReturnValue,
26 InstantiateReturnValue,
27};
28pub use {
30 frame_support::sp_runtime::testing::H256,
31 frame_support::{
32 self,
33 sp_runtime::{
34 AccountId32,
35 DispatchError,
36 },
37 },
38 frame_system,
39 pallet_balances,
40 pallet_revive,
41 pallet_timestamp,
42 paste,
43 sp_core::crypto::Ss58Codec,
44 sp_externalities::{
45 self,
46 Extension,
47 },
48 sp_io::TestExternalities,
49};
50
51#[derive(Clone, Debug)]
53pub struct Snapshot {
54 pub storage: RawStorage,
56 pub storage_root: StorageRoot,
58}
59
60pub type RawStorage = Vec<(Vec<u8>, (Vec<u8>, i32))>;
61pub type StorageRoot = H256;
62
63type BalanceOf<R> =
65 <<R as pallet_revive::Config>::Currency as Inspect<AccountIdFor<R>>>::Balance;
66
67pub type AccountIdFor<R> = <R as frame_system::Config>::AccountId;
69
70pub type RuntimeCall<R> = <R as frame_system::Config>::RuntimeCall;
72
73pub type EventRecordOf<Runtime> = EventRecord<
75 <Runtime as frame_system::Config>::RuntimeEvent,
76 <Runtime as frame_system::Config>::Hash,
77>;
78
79pub type ContractInstantiateResultFor<Runtime> =
81 ContractResult<OriginFor<Runtime>, BalanceOf<Runtime>>;
82
83pub type ContractResultFor<Runtime> = ContractResult<Runtime, BalanceOf<Runtime>>;
84
85pub type ContractResultInstantiate<Runtime> =
86 ContractResult<InstantiateReturnValue, BalanceOf<Runtime>>;
87
88pub type ContractExecResultFor<Runtime> =
90 ContractResult<ExecReturnValue, BalanceOf<Runtime>>;
91
92pub type MapAccountResultFor = Result<(), DispatchError>;
94
95pub type RuntimeOf<S> = <S as Sandbox>::Runtime;
97
98pub type RuntimeEventOf<S> = <RuntimeOf<S> as frame_system::Config>::RuntimeEvent;
100
101pub trait Sandbox {
103 type Runtime: frame_system::Config;
105
106 fn execute_with<T>(&mut self, execute: impl FnOnce() -> T) -> T;
108
109 fn dry_run<T>(&mut self, action: impl FnOnce(&mut Self) -> T) -> T;
111
112 fn register_extension<E: Any + Extension>(&mut self, ext: E);
114
115 fn initialize_block(
117 _height: BlockNumberFor<Self::Runtime>,
118 _parent_hash: <Self::Runtime as frame_system::Config>::Hash,
119 ) {
120 }
121
122 fn finalize_block(
124 _height: BlockNumberFor<Self::Runtime>,
125 ) -> <Self::Runtime as frame_system::Config>::Hash {
126 Default::default()
127 }
128
129 fn default_actor() -> AccountIdFor<Self::Runtime>;
131
132 fn default_gas_limit() -> Weight {
133 Weight::from_parts(100_000_000_000_000, 6 * 1024 * 1024)
134 }
135
136 fn get_metadata() -> RuntimeMetadataPrefixed;
138
139 fn convert_account_to_origin(
141 account: AccountIdFor<Self::Runtime>,
142 ) -> <<Self::Runtime as frame_system::Config>::RuntimeCall as Dispatchable>::RuntimeOrigin;
143
144 fn take_snapshot(&mut self) -> Snapshot;
146
147 fn restore_snapshot(&mut self, snapshot: Snapshot);
149}