mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 11:41:02 +00:00
0ddcbf747f
* all the ise * forgot a misspelling * a few more replacements * bump impl * rollback and fixes * bump impl again * Add aliases for RPC * Update on_demand.rs
199 lines
6.3 KiB
Rust
199 lines
6.3 KiB
Rust
// Copyright 2017-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/>.
|
|
|
|
//! Tests for the module.
|
|
|
|
#![cfg(test)]
|
|
|
|
use primitives::{testing, traits::OnFinalize};
|
|
use primitives::traits::Header;
|
|
use runtime_io::with_externalities;
|
|
use crate::mock::{Grandpa, System, new_test_ext};
|
|
use system::{EventRecord, Phase};
|
|
use crate::{RawLog, RawEvent};
|
|
use codec::{Decode, Encode};
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn authorities_change_logged() {
|
|
with_externalities(&mut new_test_ext(vec![(1, 1), (2, 1), (3, 1)]), || {
|
|
System::initialize(&1, &Default::default(), &Default::default());
|
|
Grandpa::schedule_change(vec![(4, 1), (5, 1), (6, 1)], 0, None).unwrap();
|
|
|
|
System::note_finished_extrinsics();
|
|
Grandpa::on_finalize(1);
|
|
|
|
let header = System::finalize();
|
|
assert_eq!(header.digest, testing::Digest {
|
|
logs: vec![
|
|
RawLog::AuthoritiesChangeSignal(0, vec![(4, 1), (5, 1), (6, 1)]).into(),
|
|
],
|
|
});
|
|
|
|
assert_eq!(System::events(), vec![
|
|
EventRecord {
|
|
phase: Phase::Finalization,
|
|
event: RawEvent::NewAuthorities(vec![(4, 1), (5, 1), (6, 1)]).into(),
|
|
},
|
|
]);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn authorities_change_logged_after_delay() {
|
|
with_externalities(&mut new_test_ext(vec![(1, 1), (2, 1), (3, 1)]), || {
|
|
System::initialize(&1, &Default::default(), &Default::default());
|
|
Grandpa::schedule_change(vec![(4, 1), (5, 1), (6, 1)], 1, None).unwrap();
|
|
Grandpa::on_finalize(1);
|
|
let header = System::finalize();
|
|
assert_eq!(header.digest, testing::Digest {
|
|
logs: vec![
|
|
RawLog::AuthoritiesChangeSignal(1, vec![(4, 1), (5, 1), (6, 1)]).into(),
|
|
],
|
|
});
|
|
|
|
// no change at this height.
|
|
assert_eq!(System::events(), vec![]);
|
|
|
|
System::initialize(&2, &header.hash(), &Default::default());
|
|
System::note_finished_extrinsics();
|
|
Grandpa::on_finalize(2);
|
|
|
|
let _header = System::finalize();
|
|
assert_eq!(System::events(), vec![
|
|
EventRecord {
|
|
phase: Phase::Finalization,
|
|
event: RawEvent::NewAuthorities(vec![(4, 1), (5, 1), (6, 1)]).into(),
|
|
},
|
|
]);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn cannot_schedule_change_when_one_pending() {
|
|
with_externalities(&mut new_test_ext(vec![(1, 1), (2, 1), (3, 1)]), || {
|
|
System::initialize(&1, &Default::default(), &Default::default());
|
|
Grandpa::schedule_change(vec![(4, 1), (5, 1), (6, 1)], 1, None).unwrap();
|
|
assert!(Grandpa::pending_change().is_some());
|
|
assert!(Grandpa::schedule_change(vec![(5, 1)], 1, None).is_err());
|
|
|
|
Grandpa::on_finalize(1);
|
|
let header = System::finalize();
|
|
|
|
System::initialize(&2, &header.hash(), &Default::default());
|
|
assert!(Grandpa::pending_change().is_some());
|
|
assert!(Grandpa::schedule_change(vec![(5, 1)], 1, None).is_err());
|
|
|
|
Grandpa::on_finalize(2);
|
|
let header = System::finalize();
|
|
|
|
System::initialize(&3, &header.hash(), &Default::default());
|
|
assert!(Grandpa::pending_change().is_none());
|
|
assert!(Grandpa::schedule_change(vec![(5, 1)], 1, None).is_ok());
|
|
|
|
Grandpa::on_finalize(3);
|
|
let _header = System::finalize();
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn new_decodes_from_old() {
|
|
let old = OldStoredPendingChange {
|
|
scheduled_at: 5u32,
|
|
delay: 100u32,
|
|
next_authorities: vec![(1u64, 5), (2u64, 10), (3u64, 2)],
|
|
};
|
|
|
|
let encoded = old.encode();
|
|
let new = StoredPendingChange::<u32, u64>::decode(&mut &encoded[..]).unwrap();
|
|
assert!(new.forced.is_none());
|
|
assert_eq!(new.scheduled_at, old.scheduled_at);
|
|
assert_eq!(new.delay, old.delay);
|
|
assert_eq!(new.next_authorities, old.next_authorities);
|
|
}
|
|
|
|
#[test]
|
|
fn dispatch_forced_change() {
|
|
with_externalities(&mut new_test_ext(vec![(1, 1), (2, 1), (3, 1)]), || {
|
|
System::initialize(&1, &Default::default(), &Default::default());
|
|
Grandpa::schedule_change(
|
|
vec![(4, 1), (5, 1), (6, 1)],
|
|
5,
|
|
Some(0),
|
|
).unwrap();
|
|
|
|
assert!(Grandpa::pending_change().is_some());
|
|
assert!(Grandpa::schedule_change(vec![(5, 1)], 1, Some(0)).is_err());
|
|
|
|
Grandpa::on_finalize(1);
|
|
let mut header = System::finalize();
|
|
|
|
for i in 2..7 {
|
|
System::initialize(&i, &header.hash(), &Default::default());
|
|
assert!(Grandpa::pending_change().unwrap().forced.is_some());
|
|
assert_eq!(Grandpa::next_forced(), Some(11));
|
|
assert!(Grandpa::schedule_change(vec![(5, 1)], 1, None).is_err());
|
|
assert!(Grandpa::schedule_change(vec![(5, 1)], 1, Some(0)).is_err());
|
|
|
|
Grandpa::on_finalize(i);
|
|
header = System::finalize();
|
|
}
|
|
|
|
// change has been applied at the end of block 6.
|
|
// add a normal change.
|
|
{
|
|
System::initialize(&7, &header.hash(), &Default::default());
|
|
assert!(Grandpa::pending_change().is_none());
|
|
assert_eq!(Grandpa::grandpa_authorities(), vec![(4, 1), (5, 1), (6, 1)]);
|
|
assert!(Grandpa::schedule_change(vec![(5, 1)], 1, None).is_ok());
|
|
Grandpa::on_finalize(7);
|
|
header = System::finalize();
|
|
}
|
|
|
|
// run the normal change.
|
|
{
|
|
System::initialize(&8, &header.hash(), &Default::default());
|
|
assert!(Grandpa::pending_change().is_some());
|
|
assert_eq!(Grandpa::grandpa_authorities(), vec![(4, 1), (5, 1), (6, 1)]);
|
|
assert!(Grandpa::schedule_change(vec![(5, 1)], 1, None).is_err());
|
|
Grandpa::on_finalize(8);
|
|
header = System::finalize();
|
|
}
|
|
|
|
// normal change applied. but we can't apply a new forced change for some
|
|
// time.
|
|
for i in 9..11 {
|
|
System::initialize(&i, &header.hash(), &Default::default());
|
|
assert!(Grandpa::pending_change().is_none());
|
|
assert_eq!(Grandpa::grandpa_authorities(), vec![(5, 1)]);
|
|
assert_eq!(Grandpa::next_forced(), Some(11));
|
|
assert!(Grandpa::schedule_change(vec![(5, 1), (6, 1)], 5, Some(0)).is_err());
|
|
Grandpa::on_finalize(i);
|
|
header = System::finalize();
|
|
}
|
|
|
|
{
|
|
System::initialize(&11, &header.hash(), &Default::default());
|
|
assert!(Grandpa::pending_change().is_none());
|
|
assert!(Grandpa::schedule_change(vec![(5, 1), (6, 1), (7, 1)], 5, Some(0)).is_ok());
|
|
assert_eq!(Grandpa::next_forced(), Some(21));
|
|
Grandpa::on_finalize(11);
|
|
header = System::finalize();
|
|
}
|
|
let _ = header;
|
|
});
|
|
}
|