mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-14 02:45:50 +00:00
22f88bf9d1
* Repot a bit of democracy code * Basic logic is drafted * Lazy democracy builds. * Add non-locked split-voting and instant-scheduling. * Introduce delegation that works. * Builds again. * Indentation * Building. * Docs and migration * Fix half of the tests * Fix up & repot tests * Fix runtime build * Update docs * Docs * Nits. * Turnout counts full capital * Delegations could towards capital * proxy delegation & proxy unvoting * Fix * Tests for split-voting * Add missing file * Persistent locking.
89 lines
2.9 KiB
Rust
89 lines
2.9 KiB
Rust
// Copyright 2017-2020 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/>.
|
|
|
|
//! The tests for fast-tracking functionality.
|
|
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn fast_track_referendum_works() {
|
|
new_test_ext().execute_with(|| {
|
|
System::set_block_number(0);
|
|
let h = set_balance_proposal_hash_and_note(2);
|
|
assert_noop!(Democracy::fast_track(Origin::signed(5), h, 3, 2), Error::<Test>::ProposalMissing);
|
|
assert_ok!(Democracy::external_propose_majority(
|
|
Origin::signed(3),
|
|
set_balance_proposal_hash_and_note(2)
|
|
));
|
|
assert_noop!(Democracy::fast_track(Origin::signed(1), h, 3, 2), BadOrigin);
|
|
assert_ok!(Democracy::fast_track(Origin::signed(5), h, 2, 0));
|
|
assert_eq!(
|
|
Democracy::referendum_status(0),
|
|
Ok(ReferendumStatus {
|
|
end: 2,
|
|
proposal_hash: set_balance_proposal_hash_and_note(2),
|
|
threshold: VoteThreshold::SimpleMajority,
|
|
delay: 0,
|
|
tally: Tally { ayes: 0, nays: 0, turnout: 0 },
|
|
})
|
|
);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn instant_referendum_works() {
|
|
new_test_ext().execute_with(|| {
|
|
System::set_block_number(0);
|
|
let h = set_balance_proposal_hash_and_note(2);
|
|
assert_noop!(Democracy::fast_track(Origin::signed(5), h, 3, 2), Error::<Test>::ProposalMissing);
|
|
assert_ok!(Democracy::external_propose_majority(
|
|
Origin::signed(3),
|
|
set_balance_proposal_hash_and_note(2)
|
|
));
|
|
assert_noop!(Democracy::fast_track(Origin::signed(1), h, 3, 2), BadOrigin);
|
|
assert_noop!(Democracy::fast_track(Origin::signed(5), h, 1, 0), BadOrigin);
|
|
assert_noop!(Democracy::fast_track(Origin::signed(6), h, 1, 0), Error::<Test>::InstantNotAllowed);
|
|
INSTANT_ALLOWED.with(|v| *v.borrow_mut() = true);
|
|
assert_ok!(Democracy::fast_track(Origin::signed(6), h, 1, 0));
|
|
assert_eq!(
|
|
Democracy::referendum_status(0),
|
|
Ok(ReferendumStatus {
|
|
end: 1,
|
|
proposal_hash: set_balance_proposal_hash_and_note(2),
|
|
threshold: VoteThreshold::SimpleMajority,
|
|
delay: 0,
|
|
tally: Tally { ayes: 0, nays: 0, turnout: 0 },
|
|
})
|
|
);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn fast_track_referendum_fails_when_no_simple_majority() {
|
|
new_test_ext().execute_with(|| {
|
|
System::set_block_number(0);
|
|
let h = set_balance_proposal_hash_and_note(2);
|
|
assert_ok!(Democracy::external_propose(
|
|
Origin::signed(2),
|
|
set_balance_proposal_hash_and_note(2)
|
|
));
|
|
assert_noop!(
|
|
Democracy::fast_track(Origin::signed(5), h, 3, 2),
|
|
Error::<Test>::NotSimpleMajority
|
|
);
|
|
});
|
|
}
|