Files
pezkuwi-sdk/pezkuwi/zombienet-sdk-tests/tests/functional/duplicate_collations.rs
T
pezkuwichain 57fef835e3 fix(ci): resolve all quick-checks failures
- Remove missing cli crate from workspace members
- Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml
- Fix Rust import ordering with cargo fmt
- Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
2026-01-04 17:22:12 +03:00

136 lines
4.3 KiB
Rust

// Copyright (C) Parity Technologies (UK) Ltd. and Dijital Kurdistan Tech Institute
// SPDX-License-Identifier: Apache-2.0
// Test that a teyrchain using a malus undying collator, sending the same collation to all assigned
// cores, does not break the relay chain and that blocks are included, backed by a normal collator.
use anyhow::anyhow;
use tokio::time::Duration;
use pezcumulus_zombienet_sdk_helpers::{assert_para_throughput, create_assign_core_call};
use pezkuwi_primitives::Id as ParaId;
use pezkuwi_zombienet_orchestrator::network::node::LogLineCountOptions;
use pezkuwi_zombienet_sdk::{
subxt::{OnlineClient, PezkuwiConfig},
subxt_signer::sr25519::dev,
NetworkConfigBuilder,
};
use serde_json::json;
const VALIDATOR_COUNT: u8 = 3;
#[tokio::test(flavor = "multi_thread")]
async fn duplicate_collations_test() -> Result<(), anyhow::Error> {
let _ = env_logger::try_init_from_env(
env_logger::Env::default().filter_or(env_logger::DEFAULT_FILTER_ENV, "info"),
);
let images = pezkuwi_zombienet_sdk::environment::get_images_from_env();
let config = NetworkConfigBuilder::new()
.with_relaychain(|r| {
let r = r
.with_chain("pezkuwichain-local")
.with_default_command("pezkuwi")
.with_default_image(images.pezkuwi())
.with_default_args(vec![("-lteyrchain=debug").into()])
.with_genesis_overrides(json!({
"configuration": {
"config": {
"scheduler_params": {
"num_cores": 2
},
"async_backing_params": {
"max_candidate_depth": 6
}
}
}
}))
// Have to set a `with_node` outside of the loop below, so that `r` has the right
// type.
.with_validator(|node| node.with_name("validator-0"));
(1..VALIDATOR_COUNT).fold(r, |acc, i| {
acc.with_validator(|node| node.with_name(&format!("validator-{i}")))
})
})
.with_teyrchain(|p| {
p.with_id(2000)
.with_default_command("undying-collator")
.pezcumulus_based(false)
.with_default_image(
std::env::var("COL_IMAGE")
.unwrap_or("docker.io/paritypr/colander:latest".to_string())
.as_str(),
)
.with_collator(|n| {
n.with_name("normal-collator").with_args(vec![("-lteyrchain=debug").into()])
})
.with_collator(|n| {
n.with_name("malus-collator").with_args(vec![
("-lteyrchain=debug").into(),
("--malus-type=duplicate-collations").into(),
])
})
})
.build()
.map_err(|e| {
let errs = e.into_iter().map(|e| e.to_string()).collect::<Vec<_>>().join(" ");
anyhow!("config errs: {errs}")
})?;
let spawn_fn = pezkuwi_zombienet_sdk::environment::get_spawn_fn();
let network = spawn_fn(config).await?;
let relay_node = network.get_node("validator-0")?;
let relay_client: OnlineClient<PezkuwiConfig> = relay_node.wait_client().await?;
let alice = dev::alice();
// Assign two extra cores to teyrchain-2000.
relay_client
.tx()
.sign_and_submit_then_watch_default(
&create_assign_core_call(&[(0, 2000), (1, 2000)]),
&alice,
)
.await?
.wait_for_finalized_success()
.await?;
log::info!("2 more cores assigned to teyrchain-2000");
assert_para_throughput(&relay_client, 15, [(ParaId::from(2000), 40..46)].into_iter().collect())
.await?;
let log_line_options = LogLineCountOptions::new(
|n| n == 1,
// Since we have this check after the para throughput check, all validators
// should have already detected the malicious collator, and all expected logs
// should have already appeared, so there is no need to wait more than 1 second.
Duration::from_secs(1),
false,
);
// Verify that all validators detect the malicious collator by checking their logs. This check
// must be performed after the para throughput check because the validator group needs to rotate
// at least once. This ensures that all validators have had a chance to detect the malicious
// behavior.
for i in 0..VALIDATOR_COUNT {
let validator_name = &format!("validator-{i}");
let validator_node = network.get_node(validator_name)?;
let result = validator_node
.wait_log_line_count_with_timeout(
"Invalid UMP signals: The core index in commitments doesn't match the one in descriptor",
false,
log_line_options.clone(),
)
.await?;
assert!(result.success(), "Expected log not found for {validator_name}",);
}
log::info!("Test finished successfully");
Ok(())
}