mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 19:21:13 +00:00
08f680e281
* aura: add feature-flagged explicit slot duration type * fmt * add some comments * have node-template use new explicit feature * fix mock * fmt * use the experimental feature flag instead * checkout master Cargo.lock
127 lines
3.6 KiB
Rust
127 lines
3.6 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! Test utilities
|
|
|
|
#![cfg(test)]
|
|
|
|
use crate as pallet_aura;
|
|
use frame_support::{
|
|
parameter_types,
|
|
traits::{ConstU32, ConstU64, DisabledValidators},
|
|
};
|
|
use sp_consensus_aura::{ed25519::AuthorityId, AuthorityIndex};
|
|
use sp_core::H256;
|
|
use sp_runtime::{testing::UintAuthorityId, traits::IdentityLookup, BuildStorage};
|
|
|
|
type Block = frame_system::mocking::MockBlock<Test>;
|
|
|
|
const SLOT_DURATION: u64 = 2;
|
|
|
|
frame_support::construct_runtime!(
|
|
pub enum Test
|
|
{
|
|
System: frame_system::{Pallet, Call, Config<T>, Storage, Event<T>},
|
|
Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent},
|
|
Aura: pallet_aura::{Pallet, Storage, Config<T>},
|
|
}
|
|
);
|
|
|
|
impl frame_system::Config for Test {
|
|
type BaseCallFilter = frame_support::traits::Everything;
|
|
type BlockWeights = ();
|
|
type BlockLength = ();
|
|
type DbWeight = ();
|
|
type RuntimeOrigin = RuntimeOrigin;
|
|
type Nonce = u64;
|
|
type RuntimeCall = RuntimeCall;
|
|
type Hash = H256;
|
|
type Hashing = ::sp_runtime::traits::BlakeTwo256;
|
|
type AccountId = u64;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Block = Block;
|
|
type RuntimeEvent = RuntimeEvent;
|
|
type BlockHashCount = ConstU64<250>;
|
|
type Version = ();
|
|
type PalletInfo = PalletInfo;
|
|
type AccountData = ();
|
|
type OnNewAccount = ();
|
|
type OnKilledAccount = ();
|
|
type SystemWeightInfo = ();
|
|
type SS58Prefix = ();
|
|
type OnSetCode = ();
|
|
type MaxConsumers = frame_support::traits::ConstU32<16>;
|
|
}
|
|
|
|
impl pallet_timestamp::Config for Test {
|
|
type Moment = u64;
|
|
type OnTimestampSet = Aura;
|
|
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
type WeightInfo = ();
|
|
}
|
|
|
|
parameter_types! {
|
|
static DisabledValidatorTestValue: Vec<AuthorityIndex> = Default::default();
|
|
pub static AllowMultipleBlocksPerSlot: bool = false;
|
|
}
|
|
|
|
pub struct MockDisabledValidators;
|
|
|
|
impl MockDisabledValidators {
|
|
pub fn disable_validator(index: AuthorityIndex) {
|
|
DisabledValidatorTestValue::mutate(|v| {
|
|
if let Err(i) = v.binary_search(&index) {
|
|
v.insert(i, index);
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
impl DisabledValidators for MockDisabledValidators {
|
|
fn is_disabled(index: AuthorityIndex) -> bool {
|
|
DisabledValidatorTestValue::get().binary_search(&index).is_ok()
|
|
}
|
|
}
|
|
|
|
impl pallet_aura::Config for Test {
|
|
type AuthorityId = AuthorityId;
|
|
type DisabledValidators = MockDisabledValidators;
|
|
type MaxAuthorities = ConstU32<10>;
|
|
type AllowMultipleBlocksPerSlot = AllowMultipleBlocksPerSlot;
|
|
|
|
#[cfg(feature = "experimental")]
|
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
|
}
|
|
|
|
fn build_ext(authorities: Vec<u64>) -> sp_io::TestExternalities {
|
|
let mut storage = frame_system::GenesisConfig::<Test>::default().build_storage().unwrap();
|
|
pallet_aura::GenesisConfig::<Test> {
|
|
authorities: authorities.into_iter().map(|a| UintAuthorityId(a).to_public_key()).collect(),
|
|
}
|
|
.assimilate_storage(&mut storage)
|
|
.unwrap();
|
|
storage.into()
|
|
}
|
|
|
|
pub fn build_ext_and_execute_test(authorities: Vec<u64>, test: impl FnOnce() -> ()) {
|
|
let mut ext = build_ext(authorities);
|
|
ext.execute_with(|| {
|
|
test();
|
|
Aura::do_try_state().expect("Storage invariants should hold")
|
|
});
|
|
}
|