mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-28 22:37:25 +00:00
1a524b8207
* Add Call type to extensible transactions. Cleanup some naming * Merge Resource and BlockExhausted into just Exhausted * Fix * Another fix * Call * Some fixes * Fix srml tests. * Fix all tests. * Refactor crypto so each application of it has its own type. * Introduce new AuthorityProvider API into Aura This will eventually allow for dynamic determination of authority keys and avoid having to set them directly on CLI. * Introduce authority determinator for Babe. Experiment with modular consensus API. * Work in progress to introduce KeyTypeId and avoid polluting API with validator IDs * Finish up drafting imonline * Rework offchain workers API. * Rework API implementation. * Make it compile for wasm, simplify app_crypto. * Fix compilation of im-online. * Fix compilation of im-online. * Fix more compilation errors. * Make it compile. * Fixing tests. * Rewrite `keystore` * Fix session tests * Bring back `TryFrom`'s' * Fix `srml-grandpa` * Fix `srml-aura` * Fix consensus babe * More fixes * Make service generate keys from dev_seed * Build fixes * Remove offchain tests * More fixes and cleanups * Fixes finality grandpa * Fix `consensus-aura` * Fix cli * Fix `node-cli` * Fix chain_spec builder * Fix doc tests * Add authority getter for grandpa. * Test fix * Fixes * Make keystore accessible from the runtime * Move app crypto to its own crate * Update `Cargo.lock` * Make the crypto stuff usable from the runtime * Adds some runtime crypto tests * Use last finalized block for grandpa authority * Fix warning * Adds `SessionKeys` runtime api * Remove `FinalityPair` and `ConsensusPair` * Minor governance tweaks to get it inline with docs. * Make the governance be up to date with the docs. * Build fixes. * Generate the inital session keys * Failing keystore is a hard error * Make babe work again * Fix grandpa * Fix tests * Disable `keystore` in consensus critical stuff * Build fix. * ImOnline supports multiple authorities at once. * Update core/application-crypto/src/ed25519.rs * Merge branch 'master' into gav-in-progress * Remove unneeded code for now. * Some `session` testing * Support querying the public keys * Cleanup offchain * Remove warnings * More cleanup * Apply suggestions from code review Co-Authored-By: Benjamin Kampmann <ben.kampmann@googlemail.com> * More cleanups * JSONRPC API for setting keys. Also, rename traits::KeyStore* -> traits::BareCryptoStore* * Bad merge * Fix integration tests * Fix test build * Test fix * Fixes * Warnings * Another warning * Bump version.
182 lines
5.3 KiB
Rust
182 lines
5.3 KiB
Rust
// Copyright 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/>.
|
|
|
|
//! Mock helpers for Session.
|
|
|
|
use super::*;
|
|
use std::cell::RefCell;
|
|
use srml_support::{impl_outer_origin, parameter_types};
|
|
use primitives::{crypto::key_types::DUMMY, H256};
|
|
use sr_primitives::{
|
|
Perbill, impl_opaque_keys, traits::{BlakeTwo256, IdentityLookup, ConvertInto},
|
|
testing::{Header, UintAuthorityId}
|
|
};
|
|
|
|
impl_opaque_keys! {
|
|
pub struct MockSessionKeys {
|
|
#[id(DUMMY)]
|
|
pub dummy: UintAuthorityId,
|
|
}
|
|
}
|
|
|
|
impl From<UintAuthorityId> for MockSessionKeys {
|
|
fn from(dummy: UintAuthorityId) -> Self {
|
|
Self { dummy }
|
|
}
|
|
}
|
|
|
|
impl_outer_origin! {
|
|
pub enum Origin for Test {}
|
|
}
|
|
|
|
thread_local! {
|
|
pub static NEXT_VALIDATORS: RefCell<Vec<u64>> = RefCell::new(vec![1, 2, 3]);
|
|
pub static AUTHORITIES: RefCell<Vec<UintAuthorityId>> =
|
|
RefCell::new(vec![UintAuthorityId(1), UintAuthorityId(2), UintAuthorityId(3)]);
|
|
pub static FORCE_SESSION_END: RefCell<bool> = RefCell::new(false);
|
|
pub static SESSION_LENGTH: RefCell<u64> = RefCell::new(2);
|
|
pub static SESSION_CHANGED: RefCell<bool> = RefCell::new(false);
|
|
pub static TEST_SESSION_CHANGED: RefCell<bool> = RefCell::new(false);
|
|
}
|
|
|
|
pub struct TestShouldEndSession;
|
|
impl ShouldEndSession<u64> for TestShouldEndSession {
|
|
fn should_end_session(now: u64) -> bool {
|
|
let l = SESSION_LENGTH.with(|l| *l.borrow());
|
|
now % l == 0 || FORCE_SESSION_END.with(|l| { let r = *l.borrow(); *l.borrow_mut() = false; r })
|
|
}
|
|
}
|
|
|
|
pub struct TestSessionHandler;
|
|
impl SessionHandler<u64> for TestSessionHandler {
|
|
fn on_new_session<T: OpaqueKeys>(
|
|
changed: bool,
|
|
validators: &[(u64, T)],
|
|
_queued_validators: &[(u64, T)],
|
|
) {
|
|
SESSION_CHANGED.with(|l| *l.borrow_mut() = changed);
|
|
AUTHORITIES.with(|l|
|
|
*l.borrow_mut() = validators.iter()
|
|
.map(|(_, id)| id.get::<UintAuthorityId>(DUMMY).unwrap_or_default())
|
|
.collect()
|
|
);
|
|
}
|
|
fn on_disabled(_validator_index: usize) {}
|
|
}
|
|
|
|
pub struct TestOnSessionEnding;
|
|
impl OnSessionEnding<u64> for TestOnSessionEnding {
|
|
fn on_session_ending(_: SessionIndex, _: SessionIndex) -> Option<Vec<u64>> {
|
|
if !TEST_SESSION_CHANGED.with(|l| *l.borrow()) {
|
|
Some(NEXT_VALIDATORS.with(|l| l.borrow().clone()))
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "historical")]
|
|
impl crate::historical::OnSessionEnding<u64, u64> for TestOnSessionEnding {
|
|
fn on_session_ending(_: SessionIndex, _: SessionIndex)
|
|
-> Option<(Vec<u64>, Vec<(u64, u64)>)>
|
|
{
|
|
if !TEST_SESSION_CHANGED.with(|l| *l.borrow()) {
|
|
let last_validators = Session::validators();
|
|
let last_identifications = last_validators.into_iter().map(|v| (v, v)).collect();
|
|
Some((NEXT_VALIDATORS.with(|l| l.borrow().clone()), last_identifications))
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn authorities() -> Vec<UintAuthorityId> {
|
|
AUTHORITIES.with(|l| l.borrow().to_vec())
|
|
}
|
|
|
|
pub fn force_new_session() {
|
|
FORCE_SESSION_END.with(|l| *l.borrow_mut() = true )
|
|
}
|
|
|
|
pub fn set_session_length(x: u64) {
|
|
SESSION_LENGTH.with(|l| *l.borrow_mut() = x )
|
|
}
|
|
|
|
pub fn session_changed() -> bool {
|
|
SESSION_CHANGED.with(|l| *l.borrow())
|
|
}
|
|
|
|
pub fn set_next_validators(next: Vec<u64>) {
|
|
NEXT_VALIDATORS.with(|v| *v.borrow_mut() = next);
|
|
}
|
|
|
|
#[derive(Clone, Eq, PartialEq)]
|
|
pub struct Test;
|
|
parameter_types! {
|
|
pub const BlockHashCount: u64 = 250;
|
|
pub const MaximumBlockWeight: u32 = 1024;
|
|
pub const MaximumBlockLength: u32 = 2 * 1024;
|
|
pub const MinimumPeriod: u64 = 5;
|
|
pub const AvailableBlockRatio: Perbill = Perbill::one();
|
|
}
|
|
|
|
impl system::Trait for Test {
|
|
type Origin = Origin;
|
|
type Index = u64;
|
|
type BlockNumber = u64;
|
|
type Call = ();
|
|
type Hash = H256;
|
|
type Hashing = BlakeTwo256;
|
|
type AccountId = u64;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Header = Header;
|
|
type WeightMultiplierUpdate = ();
|
|
type Event = ();
|
|
type BlockHashCount = BlockHashCount;
|
|
type MaximumBlockWeight = MaximumBlockWeight;
|
|
type AvailableBlockRatio = AvailableBlockRatio;
|
|
type MaximumBlockLength = MaximumBlockLength;
|
|
}
|
|
|
|
impl timestamp::Trait for Test {
|
|
type Moment = u64;
|
|
type OnTimestampSet = ();
|
|
type MinimumPeriod = MinimumPeriod;
|
|
}
|
|
|
|
impl Trait for Test {
|
|
type ShouldEndSession = TestShouldEndSession;
|
|
#[cfg(feature = "historical")]
|
|
type OnSessionEnding = crate::historical::NoteHistoricalRoot<Test, TestOnSessionEnding>;
|
|
#[cfg(not(feature = "historical"))]
|
|
type OnSessionEnding = TestOnSessionEnding;
|
|
type SessionHandler = TestSessionHandler;
|
|
type ValidatorId = u64;
|
|
type ValidatorIdOf = ConvertInto;
|
|
type Keys = MockSessionKeys;
|
|
type Event = ();
|
|
type SelectInitialValidators = ();
|
|
}
|
|
|
|
#[cfg(feature = "historical")]
|
|
impl crate::historical::Trait for Test {
|
|
type FullIdentification = u64;
|
|
type FullIdentificationOf = sr_primitives::traits::ConvertInto;
|
|
}
|
|
|
|
pub type System = system::Module<Test>;
|
|
pub type Session = Module<Test>;
|