mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 23:21:06 +00:00
0f1a9fb1eb
* remove Default from CandidateHash * Apply suggestions from code review Co-authored-by: Andronik Ordian <write@reusable.software> * chore: fmt * remove backed candidate default * Partial migration away from CandidateReceipt::default * Remove more CandidateReceipt defaults * fmt * Mostly remove CommittedCandidateReceipt default usage * Remove CommittedCandidateReceipt * Remove more Defaults from polakdot primitives v1 + fmt * Remove more Default from polkadot primites v1 * WIP trying to get overseer example + tests to compile * feat: add primitives test helpers * reduce deps of helper * update primitive helpers * make candidate validation compile * fixup cargo lock * make av-store compile * fixup disputes coordinator tests * test: fixup backing * test: fixup approval voting * fixup bitfield signing * test: fixup runtime-api * test: fixup availability dist * foxi[ pverseer test] * remove some Defaults, remove bounds from `dummy` All `fn dummy` in primitives need to be removed anyways. This aids in the transition. * it's a test helper, so always use std * test: fixup parachains runtime tests Excluding benches. * fix keyring * fix paras runtime properly, no more default * Remove fn dummy() usage from approval voting * Move TestCandidateBuilder out of av store to test helpers * Make candidate validation tests pass * Make most dispute coirdinator tests pass * Make provisioner tests work * Make availability recovery tests work with test helpers * Update polkadot-collator-protocol tests * Update statement distribution tests * Update polkadot overseer examples and tests * Derive default for validation code so we don't break unrelated things * Make para runtime test pass (no bench) * Some more work * chore: cargo fmt * cargo fix * avoid some Default::default * fixup dispute coordinator test * remove unused crate deps * remove Default::default wherever possible, replace by dummy_* for the most part * chore: cargo fmt * Remove some warnings * Remove CommittedCandidateReceipt dummy * Remove CandidateReceipt dummy * Remove CandidateDescriptor dummy * Remove commented out code * Fix para runtime tests * chore: nightly * Some updates to the builder * Dynamically adjust mock head data size * Make dispute cooridinator tests work * Fix test candidate_backing_reorders_votes work * +nightly-2021-10-29 fmt * Spelling and remove a default use in builder * Various clean up * More small updates * fmt * More small updates * Doc comments for test helpers * cargo run --quiet --release --features=runtime-benchmarks -- benchmark --chain=kusama-dev --steps=50 --repeat=20 --pallet=runtime_parachains::paras_inherent --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/kusama/src/weights/runtime_parachains_paras_inherent.rs * cargo run --quiet --release --features=runtime-benchmarks -- benchmark --chain=polkadot-dev --steps=50 --repeat=20 --pallet=runtime_parachains::paras_inherent --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/polkadot/src/weights/runtime_parachains_paras_inherent.rs * Update lib.rs * review comments * fix warnings * fix test by using correct candidate receipt relay parent Co-authored-by: Andronik Ordian <write@reusable.software> Co-authored-by: emostov <32168567+emostov@users.noreply.github.com> Co-authored-by: Parity Bot <admin@parity.io> Co-authored-by: Gavin Wood <gavin@parity.io>
213 lines
6.4 KiB
Rust
213 lines
6.4 KiB
Rust
// Copyright 2021 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot 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.
|
|
|
|
// Polkadot 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 Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
|
|
//! Mock data and utility functions for unit tests in this subsystem.
|
|
|
|
use std::{
|
|
collections::{HashMap, HashSet},
|
|
sync::Arc,
|
|
};
|
|
|
|
use async_trait::async_trait;
|
|
use lazy_static::lazy_static;
|
|
|
|
use polkadot_node_network_protocol::{authority_discovery::AuthorityDiscovery, PeerId};
|
|
use sc_keystore::LocalKeystore;
|
|
use sp_application_crypto::AppKey;
|
|
use sp_keyring::Sr25519Keyring;
|
|
use sp_keystore::{SyncCryptoStore, SyncCryptoStorePtr};
|
|
|
|
use polkadot_node_primitives::{DisputeMessage, SignedDisputeStatement};
|
|
use polkadot_primitives::v1::{
|
|
AuthorityDiscoveryId, CandidateHash, CandidateReceipt, Hash, SessionIndex, SessionInfo,
|
|
ValidatorId, ValidatorIndex,
|
|
};
|
|
use polkadot_primitives_test_helpers::dummy_candidate_descriptor;
|
|
|
|
pub const MOCK_SESSION_INDEX: SessionIndex = 1;
|
|
pub const MOCK_NEXT_SESSION_INDEX: SessionIndex = 2;
|
|
pub const MOCK_VALIDATORS: [Sr25519Keyring; 6] = [
|
|
Sr25519Keyring::Ferdie,
|
|
Sr25519Keyring::Alice,
|
|
Sr25519Keyring::Bob,
|
|
Sr25519Keyring::Charlie,
|
|
Sr25519Keyring::Dave,
|
|
Sr25519Keyring::Eve,
|
|
];
|
|
|
|
pub const MOCK_AUTHORITIES_NEXT_SESSION: [Sr25519Keyring; 2] =
|
|
[Sr25519Keyring::One, Sr25519Keyring::Two];
|
|
|
|
pub const FERDIE_INDEX: ValidatorIndex = ValidatorIndex(0);
|
|
pub const ALICE_INDEX: ValidatorIndex = ValidatorIndex(1);
|
|
|
|
lazy_static! {
|
|
|
|
/// Mocked `AuthorityDiscovery` service.
|
|
pub static ref MOCK_AUTHORITY_DISCOVERY: MockAuthorityDiscovery = MockAuthorityDiscovery::new();
|
|
// Creating an innocent looking `SessionInfo` is really expensive in a debug build. Around
|
|
// 700ms on my machine, We therefore cache those keys here:
|
|
pub static ref MOCK_VALIDATORS_DISCOVERY_KEYS: HashMap<Sr25519Keyring, AuthorityDiscoveryId> =
|
|
MOCK_VALIDATORS
|
|
.iter()
|
|
.chain(MOCK_AUTHORITIES_NEXT_SESSION.iter())
|
|
.map(|v| (v.clone(), v.public().into()))
|
|
.collect()
|
|
;
|
|
pub static ref FERDIE_DISCOVERY_KEY: AuthorityDiscoveryId =
|
|
MOCK_VALIDATORS_DISCOVERY_KEYS.get(&Sr25519Keyring::Ferdie).unwrap().clone();
|
|
|
|
pub static ref MOCK_SESSION_INFO: SessionInfo =
|
|
SessionInfo {
|
|
validators: MOCK_VALIDATORS.iter().take(4).map(|k| k.public().into()).collect(),
|
|
discovery_keys: MOCK_VALIDATORS
|
|
.iter()
|
|
.map(|k| MOCK_VALIDATORS_DISCOVERY_KEYS.get(&k).unwrap().clone())
|
|
.collect(),
|
|
assignment_keys: vec![],
|
|
validator_groups: vec![],
|
|
n_cores: 0,
|
|
zeroth_delay_tranche_width: 0,
|
|
relay_vrf_modulo_samples: 0,
|
|
n_delay_tranches: 0,
|
|
no_show_slots: 0,
|
|
needed_approvals: 0,
|
|
};
|
|
|
|
/// `SessionInfo` for the second session. (No more validators, but two more authorities.
|
|
pub static ref MOCK_NEXT_SESSION_INFO: SessionInfo =
|
|
SessionInfo {
|
|
discovery_keys:
|
|
MOCK_AUTHORITIES_NEXT_SESSION
|
|
.iter()
|
|
.map(|k| MOCK_VALIDATORS_DISCOVERY_KEYS.get(&k).unwrap().clone())
|
|
.collect(),
|
|
validators: vec![],
|
|
assignment_keys: vec![],
|
|
validator_groups: vec![],
|
|
n_cores: 0,
|
|
zeroth_delay_tranche_width: 0,
|
|
relay_vrf_modulo_samples: 0,
|
|
n_delay_tranches: 0,
|
|
no_show_slots: 0,
|
|
needed_approvals: 0,
|
|
};
|
|
}
|
|
|
|
pub fn make_candidate_receipt(relay_parent: Hash) -> CandidateReceipt {
|
|
CandidateReceipt {
|
|
descriptor: dummy_candidate_descriptor(relay_parent),
|
|
commitments_hash: Hash::random(),
|
|
}
|
|
}
|
|
|
|
pub async fn make_explicit_signed(
|
|
validator: Sr25519Keyring,
|
|
candidate_hash: CandidateHash,
|
|
valid: bool,
|
|
) -> SignedDisputeStatement {
|
|
let keystore: SyncCryptoStorePtr = Arc::new(LocalKeystore::in_memory());
|
|
SyncCryptoStore::sr25519_generate_new(&*keystore, ValidatorId::ID, Some(&validator.to_seed()))
|
|
.expect("Insert key into keystore");
|
|
|
|
SignedDisputeStatement::sign_explicit(
|
|
&keystore,
|
|
valid,
|
|
candidate_hash,
|
|
MOCK_SESSION_INDEX,
|
|
validator.public().into(),
|
|
)
|
|
.await
|
|
.expect("Keystore should be fine.")
|
|
.expect("Signing should work.")
|
|
}
|
|
|
|
pub async fn make_dispute_message(
|
|
candidate: CandidateReceipt,
|
|
valid_validator: ValidatorIndex,
|
|
invalid_validator: ValidatorIndex,
|
|
) -> DisputeMessage {
|
|
let candidate_hash = candidate.hash();
|
|
let valid_vote =
|
|
make_explicit_signed(MOCK_VALIDATORS[valid_validator.0 as usize], candidate_hash, true)
|
|
.await;
|
|
let invalid_vote =
|
|
make_explicit_signed(MOCK_VALIDATORS[invalid_validator.0 as usize], candidate_hash, false)
|
|
.await;
|
|
DisputeMessage::from_signed_statements(
|
|
valid_vote,
|
|
valid_validator,
|
|
invalid_vote,
|
|
invalid_validator,
|
|
candidate,
|
|
&MOCK_SESSION_INFO,
|
|
)
|
|
.expect("DisputeMessage construction should work.")
|
|
}
|
|
|
|
/// Dummy `AuthorityDiscovery` service.
|
|
#[derive(Debug, Clone)]
|
|
pub struct MockAuthorityDiscovery {
|
|
peer_ids: HashMap<Sr25519Keyring, PeerId>,
|
|
}
|
|
|
|
impl MockAuthorityDiscovery {
|
|
pub fn new() -> Self {
|
|
let mut peer_ids = HashMap::new();
|
|
peer_ids.insert(Sr25519Keyring::Alice, PeerId::random());
|
|
peer_ids.insert(Sr25519Keyring::Bob, PeerId::random());
|
|
peer_ids.insert(Sr25519Keyring::Ferdie, PeerId::random());
|
|
peer_ids.insert(Sr25519Keyring::Charlie, PeerId::random());
|
|
peer_ids.insert(Sr25519Keyring::Dave, PeerId::random());
|
|
peer_ids.insert(Sr25519Keyring::Eve, PeerId::random());
|
|
peer_ids.insert(Sr25519Keyring::One, PeerId::random());
|
|
peer_ids.insert(Sr25519Keyring::Two, PeerId::random());
|
|
|
|
Self { peer_ids }
|
|
}
|
|
|
|
pub fn get_peer_id_by_authority(&self, authority: Sr25519Keyring) -> PeerId {
|
|
*self.peer_ids.get(&authority).expect("Tester only picks valid authorities")
|
|
}
|
|
}
|
|
|
|
#[async_trait]
|
|
impl AuthorityDiscovery for MockAuthorityDiscovery {
|
|
async fn get_addresses_by_authority_id(
|
|
&mut self,
|
|
_authority: polkadot_primitives::v1::AuthorityDiscoveryId,
|
|
) -> Option<HashSet<sc_network::Multiaddr>> {
|
|
panic!("Not implemented");
|
|
}
|
|
|
|
async fn get_authority_ids_by_peer_id(
|
|
&mut self,
|
|
peer_id: polkadot_node_network_protocol::PeerId,
|
|
) -> Option<HashSet<polkadot_primitives::v1::AuthorityDiscoveryId>> {
|
|
for (a, p) in self.peer_ids.iter() {
|
|
if p == &peer_id {
|
|
return Some(HashSet::from([MOCK_VALIDATORS_DISCOVERY_KEYS
|
|
.get(&a)
|
|
.unwrap()
|
|
.clone()]))
|
|
}
|
|
}
|
|
|
|
None
|
|
}
|
|
}
|