mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 11:38:01 +00:00
eca163ba64
* Bump versionb globally * Rebuild and fix * Rename fixes * Rebuild * Minor fix and code formatting for validator election * Fix tests * More test fixes * Fix several bugs in phragmen elections. * Rebuild, remove pointless closures
244 lines
7.6 KiB
Rust
244 lines
7.6 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 primitives::{traits::{IdentityLookup, Convert}, BuildStorage, Perbill};
|
|
use primitives::testing::{Digest, DigestItem, Header, UintAuthorityId, ConvertUintAuthorityId};
|
|
use substrate_primitives::{H256, Blake2Hasher};
|
|
use runtime_io;
|
|
use srml_support::impl_outer_origin;
|
|
use crate::{GenesisConfig, Module, Trait, StakerStatus};
|
|
|
|
/// The AccountId alias in this test module.
|
|
pub type AccountIdType = u64;
|
|
|
|
/// Simple structure that exposes how u64 currency can be represented as... u64.
|
|
pub struct CurrencyToVoteHandler;
|
|
impl Convert<u64, u64> for CurrencyToVoteHandler {
|
|
fn convert(x: u64) -> u64 { x }
|
|
}
|
|
impl Convert<u128, u64> for CurrencyToVoteHandler {
|
|
fn convert(x: u128) -> u64 {
|
|
x as u64
|
|
}
|
|
}
|
|
|
|
impl_outer_origin!{
|
|
pub enum Origin for Test {}
|
|
}
|
|
|
|
// Workaround for https://github.com/rust-lang/rust/issues/26925 . Remove when sorted.
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
|
pub struct Test;
|
|
impl consensus::Trait for Test {
|
|
type Log = DigestItem;
|
|
type SessionKey = UintAuthorityId;
|
|
type InherentOfflineReport = ();
|
|
}
|
|
impl system::Trait for Test {
|
|
type Origin = Origin;
|
|
type Index = u64;
|
|
type BlockNumber = u64;
|
|
type Hash = H256;
|
|
type Hashing = ::primitives::traits::BlakeTwo256;
|
|
type Digest = Digest;
|
|
type AccountId = AccountIdType;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Header = Header;
|
|
type Event = ();
|
|
type Log = DigestItem;
|
|
}
|
|
impl balances::Trait for Test {
|
|
type Balance = u64;
|
|
type OnFreeBalanceZero = Staking;
|
|
type OnNewAccount = ();
|
|
type Event = ();
|
|
type TransactionPayment = ();
|
|
type TransferPayment = ();
|
|
type DustRemoval = ();
|
|
}
|
|
impl session::Trait for Test {
|
|
type ConvertAccountIdToSessionKey = ConvertUintAuthorityId;
|
|
type OnSessionChange = Staking;
|
|
type Event = ();
|
|
}
|
|
impl timestamp::Trait for Test {
|
|
type Moment = u64;
|
|
type OnTimestampSet = ();
|
|
}
|
|
impl Trait for Test {
|
|
type Currency = balances::Module<Self>;
|
|
type CurrencyToVote = CurrencyToVoteHandler;
|
|
type OnRewardMinted = ();
|
|
type Event = ();
|
|
type Slash = ();
|
|
type Reward = ();
|
|
}
|
|
|
|
pub struct ExtBuilder {
|
|
existential_deposit: u64,
|
|
session_length: u64,
|
|
sessions_per_era: u64,
|
|
current_era: u64,
|
|
reward: u64,
|
|
validator_pool: bool,
|
|
nominate: bool,
|
|
validator_count: u32,
|
|
minimum_validator_count: u32,
|
|
fair: bool,
|
|
}
|
|
|
|
impl Default for ExtBuilder {
|
|
fn default() -> Self {
|
|
Self {
|
|
existential_deposit: 0,
|
|
session_length: 1,
|
|
sessions_per_era: 1,
|
|
current_era: 0,
|
|
reward: 10,
|
|
validator_pool: false,
|
|
nominate: true,
|
|
validator_count: 2,
|
|
minimum_validator_count: 0,
|
|
fair: true
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ExtBuilder {
|
|
pub fn existential_deposit(mut self, existential_deposit: u64) -> Self {
|
|
self.existential_deposit = existential_deposit;
|
|
self
|
|
}
|
|
pub fn session_length(mut self, session_length: u64) -> Self {
|
|
self.session_length = session_length;
|
|
self
|
|
}
|
|
pub fn sessions_per_era(mut self, sessions_per_era: u64) -> Self {
|
|
self.sessions_per_era = sessions_per_era;
|
|
self
|
|
}
|
|
pub fn _current_era(mut self, current_era: u64) -> Self {
|
|
self.current_era = current_era;
|
|
self
|
|
}
|
|
pub fn validator_pool(mut self, validator_pool: bool) -> Self {
|
|
self.validator_pool = validator_pool;
|
|
self
|
|
}
|
|
pub fn nominate(mut self, nominate: bool) -> Self {
|
|
self.nominate = nominate;
|
|
self
|
|
}
|
|
pub fn validator_count(mut self, count: u32) -> Self {
|
|
self.validator_count = count;
|
|
self
|
|
}
|
|
pub fn minimum_validator_count(mut self, count: u32) -> Self {
|
|
self.minimum_validator_count = count;
|
|
self
|
|
}
|
|
pub fn fair(mut self, is_fair: bool) -> Self {
|
|
self.fair = is_fair;
|
|
self
|
|
}
|
|
pub fn build(self) -> runtime_io::TestExternalities<Blake2Hasher> {
|
|
let (mut t, mut c) = system::GenesisConfig::<Test>::default().build_storage().unwrap();
|
|
let balance_factor = if self.existential_deposit > 0 {
|
|
256
|
|
} else {
|
|
1
|
|
};
|
|
let _ = consensus::GenesisConfig::<Test>{
|
|
code: vec![],
|
|
authorities: vec![],
|
|
}.assimilate_storage(&mut t, &mut c);
|
|
let _ = session::GenesisConfig::<Test>{
|
|
session_length: self.session_length,
|
|
// NOTE: if config.nominate == false then 100 is also selected in the initial round.
|
|
validators: if self.validator_pool { vec![10, 20, 30, 40] } else { vec![10, 20] },
|
|
keys: vec![],
|
|
}.assimilate_storage(&mut t, &mut c);
|
|
let _ = balances::GenesisConfig::<Test>{
|
|
balances: vec![
|
|
(1, 10 * balance_factor),
|
|
(2, 20 * balance_factor),
|
|
(3, 300 * balance_factor),
|
|
(4, 400 * balance_factor),
|
|
(10, balance_factor),
|
|
(11, balance_factor * 1000),
|
|
(20, balance_factor),
|
|
(21, balance_factor * 2000),
|
|
(30, balance_factor),
|
|
(31, balance_factor * 2000),
|
|
(40, balance_factor),
|
|
(41, balance_factor * 2000),
|
|
(100, 2000 * balance_factor),
|
|
(101, 2000 * balance_factor),
|
|
],
|
|
transaction_base_fee: 0,
|
|
transaction_byte_fee: 0,
|
|
existential_deposit: self.existential_deposit,
|
|
transfer_fee: 0,
|
|
creation_fee: 0,
|
|
vesting: vec![],
|
|
}.assimilate_storage(&mut t, &mut c);
|
|
let _ = GenesisConfig::<Test>{
|
|
sessions_per_era: self.sessions_per_era,
|
|
current_era: self.current_era,
|
|
stakers: if self.validator_pool {
|
|
vec![
|
|
(11, 10, balance_factor * 1000, StakerStatus::<AccountIdType>::Validator),
|
|
(21, 20, balance_factor * if self.fair { 1000 } else { 2000 }, StakerStatus::<AccountIdType>::Validator),
|
|
(31, 30, balance_factor * 1000, if self.validator_pool { StakerStatus::<AccountIdType>::Validator } else { StakerStatus::<AccountIdType>::Idle }),
|
|
(41, 40, balance_factor * 1000, if self.validator_pool { StakerStatus::<AccountIdType>::Validator } else { StakerStatus::<AccountIdType>::Idle }),
|
|
// nominator
|
|
(101, 100, balance_factor * 500, if self.nominate { StakerStatus::<AccountIdType>::Nominator(vec![11, 21]) } else { StakerStatus::<AccountIdType>::Nominator(vec![]) })
|
|
]
|
|
} else {
|
|
vec![
|
|
(11, 10, balance_factor * 1000, StakerStatus::<AccountIdType>::Validator),
|
|
(21, 20, balance_factor * if self.fair { 1000 } else { 2000 }, StakerStatus::<AccountIdType>::Validator),
|
|
(31, 30, 1, StakerStatus::<AccountIdType>::Validator),
|
|
// nominator
|
|
(101, 100, balance_factor * 500, if self.nominate { StakerStatus::<AccountIdType>::Nominator(vec![11, 21]) } else { StakerStatus::<AccountIdType>::Nominator(vec![]) })
|
|
]
|
|
},
|
|
validator_count: self.validator_count,
|
|
minimum_validator_count: self.minimum_validator_count,
|
|
bonding_duration: self.sessions_per_era * self.session_length * 3,
|
|
session_reward: Perbill::from_millionths((1000000 * self.reward / balance_factor) as u32),
|
|
offline_slash: Perbill::from_percent(5),
|
|
current_session_reward: self.reward,
|
|
offline_slash_grace: 0,
|
|
invulnerables: vec![],
|
|
}.assimilate_storage(&mut t, &mut c);
|
|
let _ = timestamp::GenesisConfig::<Test>{
|
|
minimum_period: 5,
|
|
}.assimilate_storage(&mut t, &mut c);
|
|
t.into()
|
|
}
|
|
}
|
|
|
|
pub type System = system::Module<Test>;
|
|
pub type Balances = balances::Module<Test>;
|
|
pub type Session = session::Module<Test>;
|
|
pub type Timestamp = timestamp::Module<Test>;
|
|
pub type Staking = Module<Test>;
|