mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-03 19:17:26 +00:00
e3e651f72c
* Happy new year Updates the copyright years and fixes wrong license headers. * Fix the template * Split HEADER into HEADER-APACHE & HEADER-GPL
90 lines
2.9 KiB
Rust
90 lines
2.9 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2017-2021 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.
|
|
|
|
//! 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
|
|
);
|
|
});
|
|
}
|