mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-22 16:11:08 +00:00
80616f6d03
[litep2p](https://github.com/altonen/litep2p) is a libp2p-compatible P2P networking library. It supports all of the features of `rust-libp2p` that are currently being utilized by Polkadot SDK. Compared to `rust-libp2p`, `litep2p` has a quite different architecture which is why the new `litep2p` network backend is only able to use a little of the existing code in `sc-network`. The design has been mainly influenced by how we'd wish to structure our networking-related code in Polkadot SDK: independent higher-levels protocols directly communicating with the network over links that support bidirectional backpressure. A good example would be `NotificationHandle`/`RequestResponseHandle` abstractions which allow, e.g., `SyncingEngine` to directly communicate with peers to announce/request blocks. I've tried running `polkadot --network-backend litep2p` with a few different peer configurations and there is a noticeable reduction in networking CPU usage. For high load (`--out-peers 200`), networking CPU usage goes down from ~110% to ~30% (80 pp) and for normal load (`--out-peers 40`), the usage goes down from ~55% to ~18% (37 pp). These should not be taken as final numbers because: a) there are still some low-hanging optimization fruits, such as enabling [receive window auto-tuning](https://github.com/libp2p/rust-yamux/pull/176), integrating `Peerset` more closely with `litep2p` or improving memory usage of the WebSocket transport b) fixing bugs/instabilities that incorrectly cause `litep2p` to do less work will increase the networking CPU usage c) verification in a more diverse set of tests/conditions is needed Nevertheless, these numbers should give an early estimate for CPU usage of the new networking backend. This PR consists of three separate changes: * introduce a generic `PeerId` (wrapper around `Multihash`) so that we don't have use `NetworkService::PeerId` in every part of the code that uses a `PeerId` * introduce `NetworkBackend` trait, implement it for the libp2p network stack and make Polkadot SDK generic over `NetworkBackend` * implement `NetworkBackend` for litep2p The new library should be considered experimental which is why `rust-libp2p` will remain as the default option for the time being. This PR currently depends on the master branch of `litep2p` but I'll cut a new release for the library once all review comments have been addresses. --------- Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> Co-authored-by: Dmitry Markin <dmitry@markin.tech> Co-authored-by: Alexandru Vasile <60601340+lexnv@users.noreply.github.com> Co-authored-by: Alexandru Vasile <alexandru.vasile@parity.io>
1584 lines
40 KiB
Rust
1584 lines
40 KiB
Rust
// Copyright (C) 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/>.
|
|
|
|
use std::{sync::Arc, time::Duration};
|
|
|
|
use assert_matches::assert_matches;
|
|
use futures::{executor, future};
|
|
use futures_timer::Delay;
|
|
|
|
use parity_scale_codec::Encode;
|
|
use polkadot_node_network_protocol::request_response::{
|
|
self as req_res, v1::AvailableDataFetchingRequest, IncomingRequest, Protocol, Recipient,
|
|
ReqProtocolNames, Requests,
|
|
};
|
|
use polkadot_node_subsystem_test_helpers::derive_erasure_chunks_with_proofs_and_root;
|
|
|
|
use super::*;
|
|
|
|
use sc_network::{IfDisconnected, OutboundFailure, ProtocolName, RequestFailure};
|
|
|
|
use polkadot_node_primitives::{BlockData, PoV, Proof};
|
|
use polkadot_node_subsystem::messages::{
|
|
AllMessages, NetworkBridgeTxMessage, RuntimeApiMessage, RuntimeApiRequest,
|
|
};
|
|
use polkadot_node_subsystem_test_helpers::{
|
|
make_subsystem_context, mock::new_leaf, TestSubsystemContextHandle,
|
|
};
|
|
use polkadot_node_subsystem_util::TimeoutExt;
|
|
use polkadot_primitives::{
|
|
AuthorityDiscoveryId, Block, Hash, HeadData, IndexedVec, PersistedValidationData, ValidatorId,
|
|
};
|
|
use polkadot_primitives_test_helpers::{dummy_candidate_receipt, dummy_hash};
|
|
|
|
type VirtualOverseer = TestSubsystemContextHandle<AvailabilityRecoveryMessage>;
|
|
|
|
// Deterministic genesis hash for protocol names
|
|
const GENESIS_HASH: Hash = Hash::repeat_byte(0xff);
|
|
|
|
fn request_receiver(
|
|
req_protocol_names: &ReqProtocolNames,
|
|
) -> IncomingRequestReceiver<AvailableDataFetchingRequest> {
|
|
let receiver = IncomingRequest::get_config_receiver::<
|
|
Block,
|
|
sc_network::NetworkWorker<Block, Hash>,
|
|
>(req_protocol_names);
|
|
// Don't close the sending end of the request protocol. Otherwise, the subsystem will terminate.
|
|
std::mem::forget(receiver.1.inbound_queue);
|
|
receiver.0
|
|
}
|
|
|
|
fn test_harness<T: Future<Output = VirtualOverseer>>(
|
|
subsystem: AvailabilityRecoverySubsystem,
|
|
test: impl FnOnce(VirtualOverseer) -> T,
|
|
) {
|
|
let _ = env_logger::builder()
|
|
.is_test(true)
|
|
.filter(Some("polkadot_availability_recovery"), log::LevelFilter::Trace)
|
|
.try_init();
|
|
|
|
let pool = sp_core::testing::TaskExecutor::new();
|
|
|
|
let (context, virtual_overseer) = make_subsystem_context(pool.clone());
|
|
|
|
let subsystem = async {
|
|
subsystem.run(context).await.unwrap();
|
|
};
|
|
|
|
let test_fut = test(virtual_overseer);
|
|
|
|
futures::pin_mut!(test_fut);
|
|
futures::pin_mut!(subsystem);
|
|
|
|
executor::block_on(future::join(
|
|
async move {
|
|
let mut overseer = test_fut.await;
|
|
overseer_signal(&mut overseer, OverseerSignal::Conclude).await;
|
|
},
|
|
subsystem,
|
|
))
|
|
.1
|
|
}
|
|
|
|
const TIMEOUT: Duration = Duration::from_millis(300);
|
|
|
|
macro_rules! delay {
|
|
($delay:expr) => {
|
|
Delay::new(Duration::from_millis($delay)).await;
|
|
};
|
|
}
|
|
|
|
async fn overseer_signal(
|
|
overseer: &mut TestSubsystemContextHandle<AvailabilityRecoveryMessage>,
|
|
signal: OverseerSignal,
|
|
) {
|
|
delay!(50);
|
|
overseer
|
|
.send(FromOrchestra::Signal(signal))
|
|
.timeout(TIMEOUT)
|
|
.await
|
|
.unwrap_or_else(|| {
|
|
panic!("{}ms is more than enough for sending signals.", TIMEOUT.as_millis())
|
|
});
|
|
}
|
|
|
|
async fn overseer_send(
|
|
overseer: &mut TestSubsystemContextHandle<AvailabilityRecoveryMessage>,
|
|
msg: AvailabilityRecoveryMessage,
|
|
) {
|
|
gum::trace!(msg = ?msg, "sending message");
|
|
overseer
|
|
.send(FromOrchestra::Communication { msg })
|
|
.timeout(TIMEOUT)
|
|
.await
|
|
.unwrap_or_else(|| {
|
|
panic!("{}ms is more than enough for sending messages.", TIMEOUT.as_millis())
|
|
});
|
|
}
|
|
|
|
async fn overseer_recv(
|
|
overseer: &mut TestSubsystemContextHandle<AvailabilityRecoveryMessage>,
|
|
) -> AllMessages {
|
|
gum::trace!("waiting for message ...");
|
|
let msg = overseer.recv().timeout(TIMEOUT).await.expect("TIMEOUT is enough to recv.");
|
|
gum::trace!(msg = ?msg, "received message");
|
|
msg
|
|
}
|
|
|
|
use sp_keyring::Sr25519Keyring;
|
|
|
|
#[derive(Debug)]
|
|
enum Has {
|
|
No,
|
|
Yes,
|
|
NetworkError(RequestFailure),
|
|
/// Make request not return at all, instead the sender is returned from the function.
|
|
///
|
|
/// Note, if you use `DoesNotReturn` you have to keep the returned senders alive, otherwise the
|
|
/// subsystem will receive a cancel event and the request actually does return.
|
|
DoesNotReturn,
|
|
}
|
|
|
|
impl Has {
|
|
fn timeout() -> Self {
|
|
Has::NetworkError(RequestFailure::Network(OutboundFailure::Timeout))
|
|
}
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
struct TestState {
|
|
validators: Vec<Sr25519Keyring>,
|
|
validator_public: IndexedVec<ValidatorIndex, ValidatorId>,
|
|
validator_authority_id: Vec<AuthorityDiscoveryId>,
|
|
current: Hash,
|
|
candidate: CandidateReceipt,
|
|
session_index: SessionIndex,
|
|
|
|
persisted_validation_data: PersistedValidationData,
|
|
|
|
available_data: AvailableData,
|
|
chunks: Vec<ErasureChunk>,
|
|
invalid_chunks: Vec<ErasureChunk>,
|
|
}
|
|
|
|
impl TestState {
|
|
fn threshold(&self) -> usize {
|
|
recovery_threshold(self.validators.len()).unwrap()
|
|
}
|
|
|
|
fn impossibility_threshold(&self) -> usize {
|
|
self.validators.len() - self.threshold() + 1
|
|
}
|
|
|
|
async fn test_runtime_api(&self, virtual_overseer: &mut VirtualOverseer) {
|
|
assert_matches!(
|
|
overseer_recv(virtual_overseer).await,
|
|
AllMessages::RuntimeApi(RuntimeApiMessage::Request(
|
|
relay_parent,
|
|
RuntimeApiRequest::SessionInfo(
|
|
session_index,
|
|
tx,
|
|
)
|
|
)) => {
|
|
assert_eq!(relay_parent, self.current);
|
|
assert_eq!(session_index, self.session_index);
|
|
|
|
tx.send(Ok(Some(SessionInfo {
|
|
validators: self.validator_public.clone(),
|
|
discovery_keys: self.validator_authority_id.clone(),
|
|
// all validators in the same group.
|
|
validator_groups: IndexedVec::<GroupIndex,Vec<ValidatorIndex>>::from(vec![(0..self.validators.len()).map(|i| ValidatorIndex(i as _)).collect()]),
|
|
assignment_keys: 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,
|
|
active_validator_indices: vec![],
|
|
dispute_period: 6,
|
|
random_seed: [0u8; 32],
|
|
}))).unwrap();
|
|
}
|
|
);
|
|
}
|
|
|
|
async fn respond_to_available_data_query(
|
|
&self,
|
|
virtual_overseer: &mut VirtualOverseer,
|
|
with_data: bool,
|
|
) {
|
|
assert_matches!(
|
|
overseer_recv(virtual_overseer).await,
|
|
AllMessages::AvailabilityStore(
|
|
AvailabilityStoreMessage::QueryAvailableData(_, tx)
|
|
) => {
|
|
let _ = tx.send(if with_data {
|
|
Some(self.available_data.clone())
|
|
} else {
|
|
gum::debug!("Sending None");
|
|
None
|
|
});
|
|
}
|
|
)
|
|
}
|
|
|
|
async fn respond_to_query_all_request(
|
|
&self,
|
|
virtual_overseer: &mut VirtualOverseer,
|
|
send_chunk: impl Fn(usize) -> bool,
|
|
) {
|
|
assert_matches!(
|
|
overseer_recv(virtual_overseer).await,
|
|
AllMessages::AvailabilityStore(
|
|
AvailabilityStoreMessage::QueryAllChunks(_, tx)
|
|
) => {
|
|
let v = self.chunks.iter()
|
|
.filter(|c| send_chunk(c.index.0 as usize))
|
|
.cloned()
|
|
.collect();
|
|
|
|
let _ = tx.send(v);
|
|
}
|
|
)
|
|
}
|
|
|
|
async fn respond_to_query_all_request_invalid(
|
|
&self,
|
|
virtual_overseer: &mut VirtualOverseer,
|
|
send_chunk: impl Fn(usize) -> bool,
|
|
) {
|
|
assert_matches!(
|
|
overseer_recv(virtual_overseer).await,
|
|
AllMessages::AvailabilityStore(
|
|
AvailabilityStoreMessage::QueryAllChunks(_, tx)
|
|
) => {
|
|
let v = self.invalid_chunks.iter()
|
|
.filter(|c| send_chunk(c.index.0 as usize))
|
|
.cloned()
|
|
.collect();
|
|
|
|
let _ = tx.send(v);
|
|
}
|
|
)
|
|
}
|
|
|
|
async fn test_chunk_requests(
|
|
&self,
|
|
req_protocol_names: &ReqProtocolNames,
|
|
candidate_hash: CandidateHash,
|
|
virtual_overseer: &mut VirtualOverseer,
|
|
n: usize,
|
|
who_has: impl Fn(usize) -> Has,
|
|
) -> Vec<oneshot::Sender<std::result::Result<(Vec<u8>, ProtocolName), RequestFailure>>> {
|
|
// arbitrary order.
|
|
let mut i = 0;
|
|
let mut senders = Vec::new();
|
|
while i < n {
|
|
// Receive a request for a chunk.
|
|
assert_matches!(
|
|
overseer_recv(virtual_overseer).await,
|
|
AllMessages::NetworkBridgeTx(
|
|
NetworkBridgeTxMessage::SendRequests(
|
|
requests,
|
|
_if_disconnected,
|
|
)
|
|
) => {
|
|
for req in requests {
|
|
i += 1;
|
|
assert_matches!(
|
|
req,
|
|
Requests::ChunkFetchingV1(req) => {
|
|
assert_eq!(req.payload.candidate_hash, candidate_hash);
|
|
|
|
let validator_index = req.payload.index.0 as usize;
|
|
let available_data = match who_has(validator_index) {
|
|
Has::No => Ok(None),
|
|
Has::Yes => Ok(Some(self.chunks[validator_index].clone().into())),
|
|
Has::NetworkError(e) => Err(e),
|
|
Has::DoesNotReturn => {
|
|
senders.push(req.pending_response);
|
|
continue
|
|
}
|
|
};
|
|
|
|
let _ = req.pending_response.send(
|
|
available_data.map(|r|
|
|
(req_res::v1::ChunkFetchingResponse::from(r).encode(), req_protocol_names.get_name(Protocol::ChunkFetchingV1))
|
|
)
|
|
);
|
|
}
|
|
)
|
|
}
|
|
}
|
|
);
|
|
}
|
|
senders
|
|
}
|
|
|
|
async fn test_full_data_requests(
|
|
&self,
|
|
req_protocol_names: &ReqProtocolNames,
|
|
candidate_hash: CandidateHash,
|
|
virtual_overseer: &mut VirtualOverseer,
|
|
who_has: impl Fn(usize) -> Has,
|
|
) -> Vec<oneshot::Sender<std::result::Result<(Vec<u8>, ProtocolName), RequestFailure>>> {
|
|
let mut senders = Vec::new();
|
|
for _ in 0..self.validators.len() {
|
|
// Receive a request for a chunk.
|
|
assert_matches!(
|
|
overseer_recv(virtual_overseer).await,
|
|
AllMessages::NetworkBridgeTx(
|
|
NetworkBridgeTxMessage::SendRequests(
|
|
mut requests,
|
|
IfDisconnected::ImmediateError,
|
|
)
|
|
) => {
|
|
assert_eq!(requests.len(), 1);
|
|
|
|
assert_matches!(
|
|
requests.pop().unwrap(),
|
|
Requests::AvailableDataFetchingV1(req) => {
|
|
assert_eq!(req.payload.candidate_hash, candidate_hash);
|
|
let validator_index = self.validator_authority_id
|
|
.iter()
|
|
.position(|a| Recipient::Authority(a.clone()) == req.peer)
|
|
.unwrap();
|
|
|
|
let available_data = match who_has(validator_index) {
|
|
Has::No => Ok(None),
|
|
Has::Yes => Ok(Some(self.available_data.clone())),
|
|
Has::NetworkError(e) => Err(e),
|
|
Has::DoesNotReturn => {
|
|
senders.push(req.pending_response);
|
|
continue
|
|
}
|
|
};
|
|
|
|
let done = available_data.as_ref().ok().map_or(false, |x| x.is_some());
|
|
|
|
let _ = req.pending_response.send(
|
|
available_data.map(|r|(
|
|
req_res::v1::AvailableDataFetchingResponse::from(r).encode(),
|
|
req_protocol_names.get_name(Protocol::AvailableDataFetchingV1)
|
|
))
|
|
);
|
|
|
|
if done { break }
|
|
}
|
|
)
|
|
}
|
|
);
|
|
}
|
|
senders
|
|
}
|
|
}
|
|
|
|
fn validator_pubkeys(val_ids: &[Sr25519Keyring]) -> IndexedVec<ValidatorIndex, ValidatorId> {
|
|
val_ids.iter().map(|v| v.public().into()).collect()
|
|
}
|
|
|
|
fn validator_authority_id(val_ids: &[Sr25519Keyring]) -> Vec<AuthorityDiscoveryId> {
|
|
val_ids.iter().map(|v| v.public().into()).collect()
|
|
}
|
|
|
|
impl Default for TestState {
|
|
fn default() -> Self {
|
|
let validators = vec![
|
|
Sr25519Keyring::Ferdie, // <- this node, role: validator
|
|
Sr25519Keyring::Alice,
|
|
Sr25519Keyring::Bob,
|
|
Sr25519Keyring::Charlie,
|
|
Sr25519Keyring::Dave,
|
|
];
|
|
|
|
let validator_public = validator_pubkeys(&validators);
|
|
let validator_authority_id = validator_authority_id(&validators);
|
|
|
|
let current = Hash::repeat_byte(1);
|
|
|
|
let mut candidate = dummy_candidate_receipt(dummy_hash());
|
|
|
|
let session_index = 10;
|
|
|
|
let persisted_validation_data = PersistedValidationData {
|
|
parent_head: HeadData(vec![7, 8, 9]),
|
|
relay_parent_number: Default::default(),
|
|
max_pov_size: 1024,
|
|
relay_parent_storage_root: Default::default(),
|
|
};
|
|
|
|
let pov = PoV { block_data: BlockData(vec![42; 64]) };
|
|
|
|
let available_data = AvailableData {
|
|
validation_data: persisted_validation_data.clone(),
|
|
pov: Arc::new(pov),
|
|
};
|
|
|
|
let (chunks, erasure_root) = derive_erasure_chunks_with_proofs_and_root(
|
|
validators.len(),
|
|
&available_data,
|
|
|_, _| {},
|
|
);
|
|
// Mess around:
|
|
let invalid_chunks = chunks
|
|
.iter()
|
|
.cloned()
|
|
.map(|mut chunk| {
|
|
if chunk.chunk.len() >= 2 && chunk.chunk[0] != chunk.chunk[1] {
|
|
chunk.chunk[0] = chunk.chunk[1];
|
|
} else if chunk.chunk.len() >= 1 {
|
|
chunk.chunk[0] = !chunk.chunk[0];
|
|
} else {
|
|
chunk.proof = Proof::dummy_proof();
|
|
}
|
|
chunk
|
|
})
|
|
.collect();
|
|
debug_assert_ne!(chunks, invalid_chunks);
|
|
|
|
candidate.descriptor.erasure_root = erasure_root;
|
|
candidate.descriptor.relay_parent = Hash::repeat_byte(10);
|
|
|
|
Self {
|
|
validators,
|
|
validator_public,
|
|
validator_authority_id,
|
|
current,
|
|
candidate,
|
|
session_index,
|
|
persisted_validation_data,
|
|
available_data,
|
|
chunks,
|
|
invalid_chunks,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn availability_is_recovered_from_chunks_if_no_group_provided() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_fast_path(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
None,
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.threshold(),
|
|
|_| Has::Yes,
|
|
)
|
|
.await;
|
|
|
|
// Recovered data should match the original one.
|
|
assert_eq!(rx.await.unwrap().unwrap(), test_state.available_data);
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
// Test another candidate, send no chunks.
|
|
let mut new_candidate = dummy_candidate_receipt(dummy_hash());
|
|
|
|
new_candidate.descriptor.relay_parent = test_state.candidate.descriptor.relay_parent;
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
new_candidate.clone(),
|
|
test_state.session_index,
|
|
None,
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
new_candidate.hash(),
|
|
&mut virtual_overseer,
|
|
test_state.impossibility_threshold(),
|
|
|_| Has::No,
|
|
)
|
|
.await;
|
|
|
|
// A request times out with `Unavailable` error.
|
|
assert_eq!(rx.await.unwrap().unwrap_err(), RecoveryError::Unavailable);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn availability_is_recovered_from_chunks_even_if_backing_group_supplied_if_chunks_only() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_chunks_only(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
Some(GroupIndex(0)),
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.threshold(),
|
|
|_| Has::Yes,
|
|
)
|
|
.await;
|
|
|
|
// Recovered data should match the original one.
|
|
assert_eq!(rx.await.unwrap().unwrap(), test_state.available_data);
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
// Test another candidate, send no chunks.
|
|
let mut new_candidate = dummy_candidate_receipt(dummy_hash());
|
|
|
|
new_candidate.descriptor.relay_parent = test_state.candidate.descriptor.relay_parent;
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
new_candidate.clone(),
|
|
test_state.session_index,
|
|
None,
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
new_candidate.hash(),
|
|
&mut virtual_overseer,
|
|
test_state.impossibility_threshold(),
|
|
|_| Has::No,
|
|
)
|
|
.await;
|
|
|
|
// A request times out with `Unavailable` error.
|
|
assert_eq!(rx.await.unwrap().unwrap_err(), RecoveryError::Unavailable);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn bad_merkle_path_leads_to_recovery_error() {
|
|
let mut test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_fast_path(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
None,
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
// Create some faulty chunks.
|
|
test_state.chunks[0].chunk = vec![0; 32];
|
|
test_state.chunks[1].chunk = vec![1; 32];
|
|
test_state.chunks[2].chunk = vec![2; 32];
|
|
test_state.chunks[3].chunk = vec![3; 32];
|
|
test_state.chunks[4].chunk = vec![4; 32];
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.impossibility_threshold(),
|
|
|_| Has::Yes,
|
|
)
|
|
.await;
|
|
|
|
// A request times out with `Unavailable` error.
|
|
assert_eq!(rx.await.unwrap().unwrap_err(), RecoveryError::Unavailable);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn wrong_chunk_index_leads_to_recovery_error() {
|
|
let mut test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_fast_path(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
None,
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
// These chunks should fail the index check as they don't have the correct index for
|
|
// validator.
|
|
test_state.chunks[1] = test_state.chunks[0].clone();
|
|
test_state.chunks[2] = test_state.chunks[0].clone();
|
|
test_state.chunks[3] = test_state.chunks[0].clone();
|
|
test_state.chunks[4] = test_state.chunks[0].clone();
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.impossibility_threshold(),
|
|
|_| Has::No,
|
|
)
|
|
.await;
|
|
|
|
// A request times out with `Unavailable` error as there are no good peers.
|
|
assert_eq!(rx.await.unwrap().unwrap_err(), RecoveryError::Unavailable);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn invalid_erasure_coding_leads_to_invalid_error() {
|
|
let mut test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_fast_path(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
let pov = PoV { block_data: BlockData(vec![69; 64]) };
|
|
|
|
let (bad_chunks, bad_erasure_root) = derive_erasure_chunks_with_proofs_and_root(
|
|
test_state.chunks.len(),
|
|
&AvailableData {
|
|
validation_data: test_state.persisted_validation_data.clone(),
|
|
pov: Arc::new(pov),
|
|
},
|
|
|i, chunk| *chunk = vec![i as u8; 32],
|
|
);
|
|
|
|
test_state.chunks = bad_chunks;
|
|
test_state.candidate.descriptor.erasure_root = bad_erasure_root;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
None,
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.threshold(),
|
|
|_| Has::Yes,
|
|
)
|
|
.await;
|
|
|
|
// f+1 'valid' chunks can't produce correct data.
|
|
assert_eq!(rx.await.unwrap().unwrap_err(), RecoveryError::Invalid);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn fast_path_backing_group_recovers() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_fast_path(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
Some(GroupIndex(0)),
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
let who_has = |i| match i {
|
|
3 => Has::Yes,
|
|
_ => Has::No,
|
|
};
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
|
|
test_state
|
|
.test_full_data_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
who_has,
|
|
)
|
|
.await;
|
|
|
|
// Recovered data should match the original one.
|
|
assert_eq!(rx.await.unwrap().unwrap(), test_state.available_data);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn recovers_from_only_chunks_if_pov_large() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_chunks_if_pov_large(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
Some(GroupIndex(0)),
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
assert_matches!(
|
|
overseer_recv(&mut virtual_overseer).await,
|
|
AllMessages::AvailabilityStore(
|
|
AvailabilityStoreMessage::QueryChunkSize(_, tx)
|
|
) => {
|
|
let _ = tx.send(Some(1000000));
|
|
}
|
|
);
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.threshold(),
|
|
|_| Has::Yes,
|
|
)
|
|
.await;
|
|
|
|
// Recovered data should match the original one.
|
|
assert_eq!(rx.await.unwrap().unwrap(), test_state.available_data);
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
// Test another candidate, send no chunks.
|
|
let mut new_candidate = dummy_candidate_receipt(dummy_hash());
|
|
|
|
new_candidate.descriptor.relay_parent = test_state.candidate.descriptor.relay_parent;
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
new_candidate.clone(),
|
|
test_state.session_index,
|
|
Some(GroupIndex(0)),
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
assert_matches!(
|
|
overseer_recv(&mut virtual_overseer).await,
|
|
AllMessages::AvailabilityStore(
|
|
AvailabilityStoreMessage::QueryChunkSize(_, tx)
|
|
) => {
|
|
let _ = tx.send(Some(1000000));
|
|
}
|
|
);
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
new_candidate.hash(),
|
|
&mut virtual_overseer,
|
|
test_state.impossibility_threshold(),
|
|
|_| Has::No,
|
|
)
|
|
.await;
|
|
|
|
// A request times out with `Unavailable` error.
|
|
assert_eq!(rx.await.unwrap().unwrap_err(), RecoveryError::Unavailable);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn fast_path_backing_group_recovers_if_pov_small() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_chunks_if_pov_large(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
Some(GroupIndex(0)),
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
let who_has = |i| match i {
|
|
3 => Has::Yes,
|
|
_ => Has::No,
|
|
};
|
|
|
|
assert_matches!(
|
|
overseer_recv(&mut virtual_overseer).await,
|
|
AllMessages::AvailabilityStore(
|
|
AvailabilityStoreMessage::QueryChunkSize(_, tx)
|
|
) => {
|
|
let _ = tx.send(Some(100));
|
|
}
|
|
);
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
|
|
test_state
|
|
.test_full_data_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
who_has,
|
|
)
|
|
.await;
|
|
|
|
// Recovered data should match the original one.
|
|
assert_eq!(rx.await.unwrap().unwrap(), test_state.available_data);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn no_answers_in_fast_path_causes_chunk_requests() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_fast_path(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
Some(GroupIndex(0)),
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
// mix of timeout and no.
|
|
let who_has = |i| match i {
|
|
0 | 3 => Has::No,
|
|
_ => Has::timeout(),
|
|
};
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
|
|
test_state
|
|
.test_full_data_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
who_has,
|
|
)
|
|
.await;
|
|
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.threshold(),
|
|
|_| Has::Yes,
|
|
)
|
|
.await;
|
|
|
|
// Recovered data should match the original one.
|
|
assert_eq!(rx.await.unwrap().unwrap(), test_state.available_data);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn task_canceled_when_receivers_dropped() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_chunks_only(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, _) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
None,
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
for _ in 0..test_state.validators.len() {
|
|
match virtual_overseer.recv().timeout(TIMEOUT).await {
|
|
None => return virtual_overseer,
|
|
Some(_) => continue,
|
|
}
|
|
}
|
|
|
|
panic!("task requested all validators without concluding")
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn chunks_retry_until_all_nodes_respond() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_chunks_only(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
Some(GroupIndex(0)),
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.validators.len() - test_state.threshold(),
|
|
|_| Has::timeout(),
|
|
)
|
|
.await;
|
|
|
|
// we get to go another round!
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.impossibility_threshold(),
|
|
|_| Has::No,
|
|
)
|
|
.await;
|
|
|
|
// Recovered data should match the original one.
|
|
assert_eq!(rx.await.unwrap().unwrap_err(), RecoveryError::Unavailable);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn not_returning_requests_wont_stall_retrieval() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_chunks_only(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
Some(GroupIndex(0)),
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
// How many validators should not respond at all:
|
|
let not_returning_count = 1;
|
|
|
|
// Not returning senders won't cause the retrieval to stall:
|
|
let _senders = test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
not_returning_count,
|
|
|_| Has::DoesNotReturn,
|
|
)
|
|
.await;
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
// Should start over:
|
|
test_state.validators.len() + 3,
|
|
|_| Has::timeout(),
|
|
)
|
|
.await;
|
|
|
|
// we get to go another round!
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.threshold(),
|
|
|_| Has::Yes,
|
|
)
|
|
.await;
|
|
|
|
// Recovered data should match the original one:
|
|
assert_eq!(rx.await.unwrap().unwrap(), test_state.available_data);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn all_not_returning_requests_still_recovers_on_return() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_chunks_only(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
Some(GroupIndex(0)),
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |_| false).await;
|
|
|
|
let senders = test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.validators.len(),
|
|
|_| Has::DoesNotReturn,
|
|
)
|
|
.await;
|
|
|
|
future::join(
|
|
async {
|
|
Delay::new(Duration::from_millis(10)).await;
|
|
// Now retrieval should be able to recover.
|
|
std::mem::drop(senders);
|
|
},
|
|
test_state.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
// Should start over:
|
|
test_state.validators.len() + 3,
|
|
|_| Has::timeout(),
|
|
),
|
|
)
|
|
.await;
|
|
|
|
// we get to go another round!
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.threshold(),
|
|
|_| Has::Yes,
|
|
)
|
|
.await;
|
|
|
|
// Recovered data should match the original one:
|
|
assert_eq!(rx.await.unwrap().unwrap(), test_state.available_data);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn returns_early_if_we_have_the_data() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_chunks_only(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
None,
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, true).await;
|
|
|
|
assert_eq!(rx.await.unwrap().unwrap(), test_state.available_data);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn does_not_query_local_validator() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_chunks_only(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
None,
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state.respond_to_query_all_request(&mut virtual_overseer, |i| i == 0).await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.validators.len(),
|
|
|i| if i == 0 { panic!("requested from local validator") } else { Has::timeout() },
|
|
)
|
|
.await;
|
|
|
|
// second round, make sure it uses the local chunk.
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.threshold() - 1,
|
|
|i| if i == 0 { panic!("requested from local validator") } else { Has::Yes },
|
|
)
|
|
.await;
|
|
|
|
assert_eq!(rx.await.unwrap().unwrap(), test_state.available_data);
|
|
virtual_overseer
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn invalid_local_chunk_is_ignored() {
|
|
let test_state = TestState::default();
|
|
let req_protocol_names = ReqProtocolNames::new(&GENESIS_HASH, None);
|
|
let subsystem = AvailabilityRecoverySubsystem::with_chunks_only(
|
|
request_receiver(&req_protocol_names),
|
|
Metrics::new_dummy(),
|
|
);
|
|
|
|
test_harness(subsystem, |mut virtual_overseer| async move {
|
|
overseer_signal(
|
|
&mut virtual_overseer,
|
|
OverseerSignal::ActiveLeaves(ActiveLeavesUpdate::start_work(new_leaf(
|
|
test_state.current,
|
|
1,
|
|
))),
|
|
)
|
|
.await;
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
overseer_send(
|
|
&mut virtual_overseer,
|
|
AvailabilityRecoveryMessage::RecoverAvailableData(
|
|
test_state.candidate.clone(),
|
|
test_state.session_index,
|
|
None,
|
|
tx,
|
|
),
|
|
)
|
|
.await;
|
|
|
|
test_state.test_runtime_api(&mut virtual_overseer).await;
|
|
test_state.respond_to_available_data_query(&mut virtual_overseer, false).await;
|
|
test_state
|
|
.respond_to_query_all_request_invalid(&mut virtual_overseer, |i| i == 0)
|
|
.await;
|
|
|
|
let candidate_hash = test_state.candidate.hash();
|
|
|
|
test_state
|
|
.test_chunk_requests(
|
|
&req_protocol_names,
|
|
candidate_hash,
|
|
&mut virtual_overseer,
|
|
test_state.threshold() - 1,
|
|
|i| if i == 0 { panic!("requested from local validator") } else { Has::Yes },
|
|
)
|
|
.await;
|
|
|
|
assert_eq!(rx.await.unwrap().unwrap(), test_state.available_data);
|
|
virtual_overseer
|
|
});
|
|
}
|