mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-11 22:21:07 +00:00
ce08e1354f
* EPM and staking pallets: Adds new crate for integration tests a * Adds ExtBuilder and helpers with initial conditions assertions * removes account helpers; adds staking, session, etc genesis * Adds kusama incident test case * Prepare for slashing test * Adds solution submission * slash_through_offending_threshold * Renames e2e integration tests dir and crate * consistently slash 10% of validator set * finishes continous_slashes_below_offending_threshold test * Update frame/election-provider-multi-phase/test-staking-e2e/src/lib.rs Co-authored-by: Ankan <10196091+Ank4n@users.noreply.github.com> * Update frame/election-provider-multi-phase/test-staking-e2e/src/lib.rs Co-authored-by: Ankan <10196091+Ank4n@users.noreply.github.com> * Update frame/election-provider-multi-phase/test-staking-e2e/src/lib.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/election-provider-multi-phase/test-staking-e2e/src/mock.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/election-provider-multi-phase/test-staking-e2e/src/mock.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/election-provider-multi-phase/test-staking-e2e/src/mock.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * mock fixes * Additional checks to delayed solution eras and mock fixes * nits and addresses review comments; splits ext_builder into one per pallet * helper to set balances ext builder * bring up mock.rs to master * integration test fixes and additions --------- Co-authored-by: Ankan <10196091+Ank4n@users.noreply.github.com> Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com>
207 lines
7.5 KiB
Rust
207 lines
7.5 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.
|
|
|
|
#![cfg(test)]
|
|
mod mock;
|
|
|
|
pub(crate) const LOG_TARGET: &str = "tests::e2e-epm";
|
|
|
|
use mock::*;
|
|
use sp_core::Get;
|
|
use sp_npos_elections::{to_supports, StakedAssignment};
|
|
use sp_runtime::Perbill;
|
|
|
|
use crate::mock::RuntimeOrigin;
|
|
|
|
// syntactic sugar for logging.
|
|
#[macro_export]
|
|
macro_rules! log {
|
|
($level:tt, $patter:expr $(, $values:expr)* $(,)?) => {
|
|
log::$level!(
|
|
target: crate::LOG_TARGET,
|
|
concat!("🛠️ ", $patter) $(, $values)*
|
|
)
|
|
};
|
|
}
|
|
|
|
fn log_current_time() {
|
|
log!(
|
|
trace,
|
|
"block: {:?}, session: {:?}, era: {:?}, EPM phase: {:?} ts: {:?}",
|
|
System::block_number(),
|
|
Session::current_index(),
|
|
Staking::current_era(),
|
|
ElectionProviderMultiPhase::current_phase(),
|
|
Timestamp::now()
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn block_progression_works() {
|
|
ExtBuilder::default().build_and_execute(|| {
|
|
assert_eq!(active_era(), 0);
|
|
assert_eq!(Session::current_index(), 0);
|
|
assert!(ElectionProviderMultiPhase::current_phase().is_off());
|
|
|
|
assert!(start_next_active_era().is_ok());
|
|
assert_eq!(active_era(), 1);
|
|
assert_eq!(Session::current_index(), <SessionsPerEra as Get<u32>>::get());
|
|
|
|
assert!(ElectionProviderMultiPhase::current_phase().is_off());
|
|
|
|
roll_to_epm_signed();
|
|
assert!(ElectionProviderMultiPhase::current_phase().is_signed());
|
|
});
|
|
|
|
ExtBuilder::default().build_and_execute(|| {
|
|
assert_eq!(active_era(), 0);
|
|
assert_eq!(Session::current_index(), 0);
|
|
assert!(ElectionProviderMultiPhase::current_phase().is_off());
|
|
|
|
assert!(start_next_active_era_delayed_solution().is_ok());
|
|
// if the solution is delayed, EPM will end up in emergency mode..
|
|
assert!(ElectionProviderMultiPhase::current_phase().is_emergency());
|
|
// .. era won't progress..
|
|
assert_eq!(active_era(), 0);
|
|
// .. but session does.
|
|
assert_eq!(Session::current_index(), 2);
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
/// Replicates the Kusama incident of 8th Dec 2022 and its resolution through the governance
|
|
/// fallback.
|
|
///
|
|
/// After enough slashes exceeded the `Staking::OffendingValidatorsThreshold`, the staking pallet
|
|
/// set `Forcing::ForceNew`. When a new session starts, staking will start to force a new era and
|
|
/// calls <EPM as election_provider>::elect(). If at this point EPM and the staking miners did not
|
|
/// have enough time to queue a new solution (snapshot + solution submission), the election request
|
|
/// fails. If there is no election fallback mechanism in place, EPM enters in emergency mode.
|
|
/// Recovery: Once EPM is in emergency mode, subsequent calls to `elect()` will fail until a new
|
|
/// solution is added to EPM's `QueuedSolution` queue. This can be achieved through
|
|
/// `Call::set_emergency_election_result` or `Call::governance_fallback` dispatchables. Once a new
|
|
/// solution is added to the queue, EPM phase transitions to `Phase::Off` and the election flow
|
|
/// restarts. Note that in this test case, the emergency throttling is disabled.
|
|
fn enters_emergency_phase_after_forcing_before_elect() {
|
|
let epm_builder = EpmExtBuilder::default().disable_emergency_throttling();
|
|
|
|
ExtBuilder::default().epm(epm_builder).build_and_execute(|| {
|
|
log!(
|
|
trace,
|
|
"current validators (staking): {:?}",
|
|
<Runtime as pallet_staking::SessionInterface<AccountId>>::validators()
|
|
);
|
|
let session_validators_before = Session::validators();
|
|
|
|
roll_to_epm_off();
|
|
assert!(ElectionProviderMultiPhase::current_phase().is_off());
|
|
|
|
assert_eq!(pallet_staking::ForceEra::<Runtime>::get(), pallet_staking::Forcing::NotForcing);
|
|
// slashes so that staking goes into `Forcing::ForceNew`.
|
|
slash_through_offending_threshold();
|
|
|
|
assert_eq!(pallet_staking::ForceEra::<Runtime>::get(), pallet_staking::Forcing::ForceNew);
|
|
|
|
advance_session_delayed_solution();
|
|
assert!(ElectionProviderMultiPhase::current_phase().is_emergency());
|
|
log_current_time();
|
|
|
|
let era_before_delayed_next = Staking::current_era();
|
|
// try to advance 2 eras.
|
|
assert!(start_next_active_era_delayed_solution().is_ok());
|
|
assert_eq!(Staking::current_era(), era_before_delayed_next);
|
|
assert!(start_next_active_era().is_err());
|
|
assert_eq!(Staking::current_era(), era_before_delayed_next);
|
|
|
|
// EPM is still in emergency phase.
|
|
assert!(ElectionProviderMultiPhase::current_phase().is_emergency());
|
|
|
|
// session validator set remains the same.
|
|
assert_eq!(Session::validators(), session_validators_before);
|
|
|
|
// performs recovery through the set emergency result.
|
|
let supports = to_supports(&vec![
|
|
StakedAssignment { who: 21, distribution: vec![(21, 10)] },
|
|
StakedAssignment { who: 31, distribution: vec![(21, 10), (31, 10)] },
|
|
StakedAssignment { who: 41, distribution: vec![(41, 10)] },
|
|
]);
|
|
assert!(ElectionProviderMultiPhase::set_emergency_election_result(
|
|
RuntimeOrigin::root(),
|
|
supports
|
|
)
|
|
.is_ok());
|
|
|
|
// EPM can now roll to signed phase to proceed with elections. The validator set is the
|
|
// expected (ie. set through `set_emergency_election_result`).
|
|
roll_to_epm_signed();
|
|
//assert!(ElectionProviderMultiPhase::current_phase().is_signed());
|
|
assert_eq!(Session::validators(), vec![21, 31, 41]);
|
|
assert_eq!(Staking::current_era(), era_before_delayed_next.map(|e| e + 1));
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
/// Continuously slash 10% of the active validators per era.
|
|
///
|
|
/// Since the `OffendingValidatorsThreshold` is only checked per era staking does not force a new
|
|
/// era even as the number of active validators is decreasing across eras. When processing a new
|
|
/// slash, staking calculates the offending threshold based on the length of the current list of
|
|
/// active validators. Thus, slashing a percentage of the current validators that is lower than
|
|
/// `OffendingValidatorsThreshold` will never force a new era. However, as the slashes progress, if
|
|
/// the subsequent elections do not meet the minimum election untrusted score, the election will
|
|
/// fail and enter in emenergency mode.
|
|
fn continous_slashes_below_offending_threshold() {
|
|
let staking_builder = StakingExtBuilder::default().validator_count(10);
|
|
let epm_builder = EpmExtBuilder::default().disable_emergency_throttling();
|
|
|
|
ExtBuilder::default()
|
|
.staking(staking_builder)
|
|
.epm(epm_builder)
|
|
.build_and_execute(|| {
|
|
assert_eq!(Session::validators().len(), 10);
|
|
let mut active_validator_set = Session::validators();
|
|
|
|
roll_to_epm_signed();
|
|
|
|
// set a minimum election score.
|
|
assert!(set_minimum_election_score(500, 1000, 500).is_ok());
|
|
|
|
// slash 10% of the active validators and progress era until the minimum trusted score
|
|
// is reached.
|
|
while active_validator_set.len() > 0 {
|
|
let slashed = slash_percentage(Perbill::from_percent(10));
|
|
assert_eq!(slashed.len(), 1);
|
|
|
|
// break loop when era does not progress; EPM is in emergency phase as election
|
|
// failed due to election minimum score.
|
|
if start_next_active_era().is_err() {
|
|
assert!(ElectionProviderMultiPhase::current_phase().is_emergency());
|
|
break
|
|
}
|
|
|
|
active_validator_set = Session::validators();
|
|
|
|
log!(
|
|
trace,
|
|
"slashed 10% of active validators ({:?}). After slash: {:?}",
|
|
slashed,
|
|
active_validator_set
|
|
);
|
|
}
|
|
});
|
|
}
|