mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 17:01:09 +00:00
a757dfb222
* added fee calculations; need some type conversions * cleaned up make_payment and other stuff * rename vars to compile * add WeightToFee type * clean test files after new type added to balances * fmting * fix balance configs in tests * more fixing mocks and tests * more comprehensive block weight limit test * fix compilation errors * more srml/executive tests && started fixing node/executor tests * new fee multiplier; still overflows :( * perbill at the end attempt; needs to be changed * clean fmting, rename some vars * new PoC implementation. * test weight_to_fee range and verify functionality * 12 of 15 tests in node executor are passing * 1 test failing; big_block imports are failing for wrong reasons * Update srml/executive/src/lib.rs Co-Authored-By: Kian Peymani <Kianenigma@users.noreply.github.com> * Some cleanup. * consolidate tests in runtime impls * clean and condition executive for stateful fee range test * remove comments to self * Major cleanup. * More cleanup. * Fix lock files. * Fix build. * Update node-template/runtime/Cargo.toml Co-Authored-By: Gavin Wood <github@gavwood.com> * Update node/executor/src/lib.rs Co-Authored-By: Gavin Wood <github@gavwood.com> * Update node/executor/src/lib.rs Co-Authored-By: Gavin Wood <github@gavwood.com> * Update node/executor/src/lib.rs Co-Authored-By: Gavin Wood <github@gavwood.com> * Update node/executor/src/lib.rs Co-Authored-By: Gavin Wood <github@gavwood.com> * Update node/executor/src/lib.rs Co-Authored-By: Gavin Wood <github@gavwood.com> * Update node/executor/src/lib.rs Co-Authored-By: Gavin Wood <github@gavwood.com> * Per-block update. * nit. * Update docs. * Fix contracts test. * Stateful fee update. * Update lock files. * Update node/runtime/src/impls.rs * Revamped again with fixed64. * fix cargo file. * nits. * Some cleanup. * Some nits. * Fix build. * Bump. * Rename to WeightMultiplier * Update node/executor/src/lib.rs Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Add weight to election module mock. * Fix build. * finalize merge * Update srml/system/src/lib.rs * Bring back fees. * Some nits. * Code shifting for simplicity. * Fix build + more tests. * Update weights.rs * Update core/sr-primitives/src/weights.rs * Update lib.rs * Fix test build
105 lines
2.8 KiB
Rust
105 lines
2.8 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 std::collections::HashSet;
|
|
use ref_thread_local::{ref_thread_local, RefThreadLocal};
|
|
use primitives::testing::Header;
|
|
use substrate_primitives::{H256, Blake2Hasher};
|
|
use srml_support::{impl_outer_origin, parameter_types};
|
|
use {runtime_io, system};
|
|
use crate::{GenesisConfig, Module, Trait, IsDeadAccount, OnNewAccount, ResolveHint};
|
|
|
|
impl_outer_origin!{
|
|
pub enum Origin for Runtime {}
|
|
}
|
|
|
|
ref_thread_local! {
|
|
static managed ALIVE: HashSet<u64> = HashSet::new();
|
|
}
|
|
|
|
pub fn make_account(who: u64) {
|
|
ALIVE.borrow_mut().insert(who);
|
|
Indices::on_new_account(&who);
|
|
}
|
|
|
|
pub fn kill_account(who: u64) {
|
|
ALIVE.borrow_mut().remove(&who);
|
|
}
|
|
|
|
pub struct TestIsDeadAccount {}
|
|
impl IsDeadAccount<u64> for TestIsDeadAccount {
|
|
fn is_dead_account(who: &u64) -> bool {
|
|
!ALIVE.borrow_mut().contains(who)
|
|
}
|
|
}
|
|
|
|
pub struct TestResolveHint;
|
|
impl ResolveHint<u64, u64> for TestResolveHint {
|
|
fn resolve_hint(who: &u64) -> Option<u64> {
|
|
if *who < 256 {
|
|
None
|
|
} else {
|
|
Some(*who - 256)
|
|
}
|
|
}
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
impl system::Trait for Runtime {
|
|
type Origin = Origin;
|
|
type Index = u64;
|
|
type BlockNumber = u64;
|
|
type Hash = H256;
|
|
type Hashing = ::primitives::traits::BlakeTwo256;
|
|
type AccountId = u64;
|
|
type Lookup = Indices;
|
|
type Header = Header;
|
|
type WeightMultiplierUpdate = ();
|
|
type Event = ();
|
|
type BlockHashCount = BlockHashCount;
|
|
}
|
|
impl Trait for Runtime {
|
|
type AccountIndex = u64;
|
|
type IsDeadAccount = TestIsDeadAccount;
|
|
type ResolveHint = TestResolveHint;
|
|
type Event = ();
|
|
}
|
|
|
|
pub fn new_test_ext() -> runtime_io::TestExternalities<Blake2Hasher> {
|
|
{
|
|
let mut h = ALIVE.borrow_mut();
|
|
h.clear();
|
|
for i in 1..5 { h.insert(i); }
|
|
}
|
|
|
|
let mut t = system::GenesisConfig::default().build_storage::<Runtime>().unwrap().0;
|
|
t.extend(GenesisConfig::<Runtime> {
|
|
ids: vec![1, 2, 3, 4]
|
|
}.build_storage().unwrap().0);
|
|
t.into()
|
|
}
|
|
|
|
pub type Indices = Module<Runtime>;
|