mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-10 11:07:30 +00:00
b0e1212d48
* Using child storage, (srml-support only), test failing . * fix simple tests. * Enumerable by requiring owned struct (previous form only allow &'static). Broken tests are from genesis init. * implement for_child_keys_with_prefix * indent * clear_child_prefix fix. * clear_child_prefix fix 2. * fix for storage_impl, if/when allowing child and not child this could be reverted. * Fix lot of urlinked child genesis, still need to look upon actual genesis srml module code. Probably still a lot of broken code needing debugging. * switch well_known_key to their associated module child trie. Fix a genesis init (balance). Complete some testing. Comment some tests before using. * fixing test runtime child keys * latest commit fix broken genesis init * fix system balances child name. * Important fix: storage_root from test externalities need children (it is already the case for ext). * executive root with child calculation * Avoid empty trie on test ext. * Symetric removal of key for system. * commenting changes related tests. * Remove child module specifics. * fix issues. * fix some formatting * fix bench and bump runtime * Remove extend_storage_overlays, assimilate_storage do the same as is proper considering srml macro. * Fix warning for assimilate. * Removing kill as they do not impact any test cases. * Use tuple of storage map instead of two parameters. This changes the behavior of decl_storage genesis build closure (breaking api). * Do not use build storage before assimilate. * fix error * Update core/state-machine/src/backend.rs
220 lines
6.4 KiB
Rust
220 lines
6.4 KiB
Rust
// Copyright 2018-2019 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Substrate is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Test utilities
|
|
|
|
#![cfg(test)]
|
|
|
|
use sr_primitives::{Perbill, traits::{Convert, IdentityLookup}, testing::Header,
|
|
weights::{DispatchInfo, Weight}};
|
|
use primitives::{H256, Blake2Hasher};
|
|
use runtime_io;
|
|
use srml_support::{impl_outer_origin, parameter_types};
|
|
use srml_support::traits::Get;
|
|
use std::cell::RefCell;
|
|
use crate::{GenesisConfig, Module, Trait};
|
|
|
|
impl_outer_origin!{
|
|
pub enum Origin for Runtime {}
|
|
}
|
|
|
|
thread_local! {
|
|
static EXISTENTIAL_DEPOSIT: RefCell<u64> = RefCell::new(0);
|
|
static TRANSFER_FEE: RefCell<u64> = RefCell::new(0);
|
|
static CREATION_FEE: RefCell<u64> = RefCell::new(0);
|
|
static TRANSACTION_BASE_FEE: RefCell<u64> = RefCell::new(0);
|
|
static TRANSACTION_BYTE_FEE: RefCell<u64> = RefCell::new(1);
|
|
static TRANSACTION_WEIGHT_FEE: RefCell<u64> = RefCell::new(1);
|
|
static WEIGHT_TO_FEE: RefCell<u64> = RefCell::new(1);
|
|
}
|
|
|
|
pub struct ExistentialDeposit;
|
|
impl Get<u64> for ExistentialDeposit {
|
|
fn get() -> u64 { EXISTENTIAL_DEPOSIT.with(|v| *v.borrow()) }
|
|
}
|
|
|
|
pub struct TransferFee;
|
|
impl Get<u64> for TransferFee {
|
|
fn get() -> u64 { TRANSFER_FEE.with(|v| *v.borrow()) }
|
|
}
|
|
|
|
pub struct CreationFee;
|
|
impl Get<u64> for CreationFee {
|
|
fn get() -> u64 { CREATION_FEE.with(|v| *v.borrow()) }
|
|
}
|
|
|
|
pub struct TransactionBaseFee;
|
|
impl Get<u64> for TransactionBaseFee {
|
|
fn get() -> u64 { TRANSACTION_BASE_FEE.with(|v| *v.borrow()) }
|
|
}
|
|
|
|
pub struct TransactionByteFee;
|
|
impl Get<u64> for TransactionByteFee {
|
|
fn get() -> u64 { TRANSACTION_BYTE_FEE.with(|v| *v.borrow()) }
|
|
}
|
|
|
|
pub struct WeightToFee(u64);
|
|
impl Convert<Weight, u64> for WeightToFee {
|
|
fn convert(t: Weight) -> u64 {
|
|
WEIGHT_TO_FEE.with(|v| *v.borrow() * (t as u64))
|
|
}
|
|
}
|
|
|
|
// Workaround for https://github.com/rust-lang/rust/issues/26925 . Remove when sorted.
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
|
pub struct Runtime;
|
|
parameter_types! {
|
|
pub const BlockHashCount: u64 = 250;
|
|
pub const MaximumBlockWeight: u32 = 1024;
|
|
pub const MaximumBlockLength: u32 = 2 * 1024;
|
|
pub const AvailableBlockRatio: Perbill = Perbill::one();
|
|
}
|
|
impl system::Trait for Runtime {
|
|
type Origin = Origin;
|
|
type Index = u64;
|
|
type BlockNumber = u64;
|
|
type Call = ();
|
|
type Hash = H256;
|
|
type Hashing = ::sr_primitives::traits::BlakeTwo256;
|
|
type AccountId = u64;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Header = Header;
|
|
type WeightMultiplierUpdate = ();
|
|
type Event = ();
|
|
type BlockHashCount = BlockHashCount;
|
|
type MaximumBlockWeight = MaximumBlockWeight;
|
|
type MaximumBlockLength = MaximumBlockLength;
|
|
type AvailableBlockRatio = AvailableBlockRatio;
|
|
}
|
|
impl Trait for Runtime {
|
|
type Balance = u64;
|
|
type OnFreeBalanceZero = ();
|
|
type OnNewAccount = ();
|
|
type Event = ();
|
|
type TransactionPayment = ();
|
|
type DustRemoval = ();
|
|
type TransferPayment = ();
|
|
type ExistentialDeposit = ExistentialDeposit;
|
|
type TransferFee = TransferFee;
|
|
type CreationFee = CreationFee;
|
|
type TransactionBaseFee = TransactionBaseFee;
|
|
type TransactionByteFee = TransactionByteFee;
|
|
type WeightToFee = WeightToFee;
|
|
}
|
|
|
|
pub struct ExtBuilder {
|
|
transaction_base_fee: u64,
|
|
transaction_byte_fee: u64,
|
|
weight_to_fee: u64,
|
|
existential_deposit: u64,
|
|
transfer_fee: u64,
|
|
creation_fee: u64,
|
|
monied: bool,
|
|
vesting: bool,
|
|
}
|
|
impl Default for ExtBuilder {
|
|
fn default() -> Self {
|
|
Self {
|
|
transaction_base_fee: 0,
|
|
transaction_byte_fee: 0,
|
|
weight_to_fee: 0,
|
|
existential_deposit: 0,
|
|
transfer_fee: 0,
|
|
creation_fee: 0,
|
|
monied: false,
|
|
vesting: false,
|
|
}
|
|
}
|
|
}
|
|
impl ExtBuilder {
|
|
pub fn transaction_fees(mut self, base_fee: u64, byte_fee: u64, weight_fee: u64) -> Self {
|
|
self.transaction_base_fee = base_fee;
|
|
self.transaction_byte_fee = byte_fee;
|
|
self.weight_to_fee = weight_fee;
|
|
self
|
|
}
|
|
pub fn existential_deposit(mut self, existential_deposit: u64) -> Self {
|
|
self.existential_deposit = existential_deposit;
|
|
self
|
|
}
|
|
#[allow(dead_code)]
|
|
pub fn transfer_fee(mut self, transfer_fee: u64) -> Self {
|
|
self.transfer_fee = transfer_fee;
|
|
self
|
|
}
|
|
pub fn creation_fee(mut self, creation_fee: u64) -> Self {
|
|
self.creation_fee = creation_fee;
|
|
self
|
|
}
|
|
pub fn monied(mut self, monied: bool) -> Self {
|
|
self.monied = monied;
|
|
if self.existential_deposit == 0 {
|
|
self.existential_deposit = 1;
|
|
}
|
|
self
|
|
}
|
|
pub fn vesting(mut self, vesting: bool) -> Self {
|
|
self.vesting = vesting;
|
|
self
|
|
}
|
|
pub fn set_associated_consts(&self) {
|
|
EXISTENTIAL_DEPOSIT.with(|v| *v.borrow_mut() = self.existential_deposit);
|
|
TRANSFER_FEE.with(|v| *v.borrow_mut() = self.transfer_fee);
|
|
CREATION_FEE.with(|v| *v.borrow_mut() = self.creation_fee);
|
|
TRANSACTION_BASE_FEE.with(|v| *v.borrow_mut() = self.transaction_base_fee);
|
|
TRANSACTION_BYTE_FEE.with(|v| *v.borrow_mut() = self.transaction_byte_fee);
|
|
WEIGHT_TO_FEE.with(|v| *v.borrow_mut() = self.weight_to_fee);
|
|
}
|
|
pub fn build(self) -> runtime_io::TestExternalities<Blake2Hasher> {
|
|
self.set_associated_consts();
|
|
let mut t = system::GenesisConfig::default().build_storage::<Runtime>().unwrap();
|
|
GenesisConfig::<Runtime> {
|
|
balances: if self.monied {
|
|
vec![
|
|
(1, 10 * self.existential_deposit),
|
|
(2, 20 * self.existential_deposit),
|
|
(3, 30 * self.existential_deposit),
|
|
(4, 40 * self.existential_deposit),
|
|
(12, 10 * self.existential_deposit)
|
|
]
|
|
} else {
|
|
vec![]
|
|
},
|
|
vesting: if self.vesting && self.monied {
|
|
vec![
|
|
(1, 0, 10, 5 * self.existential_deposit),
|
|
(2, 10, 20, 0),
|
|
(12, 10, 20, 5 * self.existential_deposit)
|
|
]
|
|
} else {
|
|
vec![]
|
|
},
|
|
}.assimilate_storage(&mut t).unwrap();
|
|
t.into()
|
|
}
|
|
}
|
|
|
|
pub type System = system::Module<Runtime>;
|
|
pub type Balances = Module<Runtime>;
|
|
|
|
|
|
pub const CALL: &<Runtime as system::Trait>::Call = &();
|
|
|
|
/// create a transaction info struct from weight. Handy to avoid building the whole struct.
|
|
pub fn info_from_weight(w: Weight) -> DispatchInfo {
|
|
DispatchInfo { weight: w, ..Default::default() }
|
|
}
|