mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-26 01:51:07 +00:00
af9083f53b
* System.BlockHash * Fix hash * Introduce K/V iteration in all _concat maps Also move across: - System.Account (blake2_128_concat) - Balances.Locks (twox_64_concat) - ElectionsPhragmen.VotesOf (twox_64_concat) - ElectionsPhragmen.StakeOf (twox_64_concat) - Identity.IdentityOf (twox_64_concat) - Identity.SubsOf (twox_64_concat) - Society.Payouts (twox_64_concat) - Session.NextKeys (twox_64_concat) - Identity.SuperOf (blake2_128_concat) - Session.KeyOwner (blake2_128_concat) - Society.SuspendedCandidates (twox_64_concat) - Society.SuspendedMembers (twox_64_concat) - Society.Vouching (twox_64_concat) - Society.Strikes (twox_64_concat) - System.EventTopics - Balances.Account * Build fixes * Ensure migration happens in correct order * Staking.* * Vesting.* Offences.* * Democracy.* * Babe.* Collective.* * Grandpa.* * Assets.* Benchmark.* Contracts.* Elections.* Asset.* Nicks.* Also introduce real account list * ImOnline.* * Treasury.* * Recovery.* * Final bits. * Docs * Fix one test * Fix test * All passing except the UI tests * Remove linked_map part 1 * Remove linked_map * Some iterator utils for double maps. * Remove old migrations * Introduce tombstone for LinkedMap type * Migration for genesis hash * Fix build * Fix hash * Rename Map is_linked -> unused, keeping backwards compat (#5256) * Update frame/balances/src/lib.rs Co-Authored-By: Shawn Tabrizi <shawntabrizi@gmail.com> * Update frame/elections/src/lib.rs Co-Authored-By: Shawn Tabrizi <shawntabrizi@gmail.com> * Remove old migration code. * Update frame/system/src/lib.rs Co-Authored-By: Shawn Tabrizi <shawntabrizi@gmail.com> * Update bin/node/runtime/src/lib.rs Co-Authored-By: Shawn Tabrizi <shawntabrizi@gmail.com> * Fix hash * fix session migration * Fix watning Co-authored-by: Jaco Greeff <jacogr@gmail.com> Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com> Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
167 lines
4.5 KiB
Rust
167 lines
4.5 KiB
Rust
// Copyright 2020 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/>.
|
|
|
|
//! Tests for the module.
|
|
|
|
#![cfg(test)]
|
|
|
|
use super::*;
|
|
use codec::Decode;
|
|
use sp_std::prelude::*;
|
|
use sp_runtime::{traits::{BlakeTwo256, IdentityLookup}, testing::{H256, Header}};
|
|
use frame_support::{dispatch::DispatchResult, decl_module, impl_outer_origin};
|
|
use frame_system::{RawOrigin, ensure_signed, ensure_none};
|
|
|
|
decl_module! {
|
|
pub struct Module<T: Trait> for enum Call where origin: T::Origin {
|
|
fn dummy(origin, _n: u32) -> DispatchResult {
|
|
let _sender = ensure_signed(origin)?;
|
|
Ok(())
|
|
}
|
|
|
|
fn other_dummy(origin, _n: u32) -> DispatchResult {
|
|
let _sender = ensure_none(origin)?;
|
|
Ok(())
|
|
}
|
|
}
|
|
}
|
|
|
|
impl_outer_origin! {
|
|
pub enum Origin for Test where system = frame_system {}
|
|
}
|
|
|
|
pub trait Trait {
|
|
type Event;
|
|
type BlockNumber;
|
|
type AccountId: 'static + Default + Decode;
|
|
type Origin: From<frame_system::RawOrigin<Self::AccountId>> + Into<Result<RawOrigin<Self::AccountId>, Self::Origin>>;
|
|
}
|
|
|
|
#[derive(Clone, Eq, PartialEq)]
|
|
pub struct Test;
|
|
|
|
impl frame_system::Trait for Test {
|
|
type Origin = Origin;
|
|
type Index = u64;
|
|
type BlockNumber = u64;
|
|
type Hash = H256;
|
|
type Call = ();
|
|
type Hashing = BlakeTwo256;
|
|
type AccountId = u64;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Header = Header;
|
|
type Event = ();
|
|
type BlockHashCount = ();
|
|
type MaximumBlockWeight = ();
|
|
type MaximumBlockLength = ();
|
|
type AvailableBlockRatio = ();
|
|
type Version = ();
|
|
type ModuleToIndex = ();
|
|
type AccountData = ();
|
|
type MigrateAccount = (); type OnNewAccount = ();
|
|
type OnKilledAccount = ();
|
|
}
|
|
|
|
impl Trait for Test {
|
|
type Event = ();
|
|
type BlockNumber = u32;
|
|
type Origin = Origin;
|
|
type AccountId = u64;
|
|
}
|
|
|
|
// This function basically just builds a genesis storage key/value store according to
|
|
// our desired mockup.
|
|
fn new_test_ext() -> sp_io::TestExternalities {
|
|
frame_system::GenesisConfig::default().build_storage::<Test>().unwrap().into()
|
|
}
|
|
|
|
benchmarks!{
|
|
_ {
|
|
// Define a common range for `b`.
|
|
let b in 1 .. 1000 => ();
|
|
}
|
|
|
|
dummy {
|
|
let b in ...;
|
|
let caller = account("caller", 0, 0);
|
|
}: _ (RawOrigin::Signed(caller), b.into())
|
|
|
|
other_name {
|
|
let b in ...;
|
|
let caller = account("caller", 0, 0);
|
|
}: other_dummy (RawOrigin::Signed(caller), b.into())
|
|
|
|
sort_vector {
|
|
let x in 0 .. 10000;
|
|
let mut m = Vec::<u32>::new();
|
|
for i in 0..x {
|
|
m.push(i);
|
|
}
|
|
}: {
|
|
m.sort();
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn benchmarks_macro_works() {
|
|
// Check benchmark creation for `dummy`.
|
|
let selected_benchmark = SelectedBenchmark::dummy;
|
|
|
|
let components = <SelectedBenchmark as BenchmarkingSetup<Test>>::components(&selected_benchmark);
|
|
assert_eq!(components, vec![(BenchmarkParameter::b, 1, 1000)]);
|
|
|
|
let closure = <SelectedBenchmark as BenchmarkingSetup<Test>>::instance(
|
|
&selected_benchmark,
|
|
&[(BenchmarkParameter::b, 1)],
|
|
).expect("failed to create closure");
|
|
|
|
new_test_ext().execute_with(|| {
|
|
assert_eq!(closure(), Ok(()));
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn benchmarks_macro_rename_works() {
|
|
// Check benchmark creation for `other_dummy`.
|
|
let selected_benchmark = SelectedBenchmark::other_name;
|
|
let components = <SelectedBenchmark as BenchmarkingSetup<Test>>::components(&selected_benchmark);
|
|
assert_eq!(components, vec![(BenchmarkParameter::b, 1, 1000)]);
|
|
|
|
let closure = <SelectedBenchmark as BenchmarkingSetup<Test>>::instance(
|
|
&selected_benchmark,
|
|
&[(BenchmarkParameter::b, 1)],
|
|
).expect("failed to create closure");
|
|
|
|
new_test_ext().execute_with(|| {
|
|
assert_eq!(closure(), Err("Bad origin"));
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn benchmarks_macro_works_for_non_dispatchable() {
|
|
let selected_benchmark = SelectedBenchmark::sort_vector;
|
|
|
|
let components = <SelectedBenchmark as BenchmarkingSetup<Test>>::components(&selected_benchmark);
|
|
assert_eq!(components, vec![(BenchmarkParameter::x, 0, 10000)]);
|
|
|
|
let closure = <SelectedBenchmark as BenchmarkingSetup<Test>>::instance(
|
|
&selected_benchmark,
|
|
&[(BenchmarkParameter::x, 1)],
|
|
).expect("failed to create closure");
|
|
|
|
assert_eq!(closure(), Ok(()));
|
|
}
|