Files
pezkuwi-sdk/pezcumulus/zombienet/zombienet-sdk/tests/zombie_ci/sync_blocks.rs
T
pezkuwichain 4c8f281051 style: Migrate to stable-only rustfmt configuration
- Remove nightly-only features from .rustfmt.toml and vendor/ss58-registry/rustfmt.toml
- Removed features: imports_granularity, wrap_comments, comment_width,
  reorder_impl_items, spaces_around_ranges, binop_separator,
  match_arm_blocks, trailing_semicolon, trailing_comma
- Format all 898 affected files with stable rustfmt
- Ensures long-term reliability without nightly toolchain dependency
2025-12-23 09:37:11 +03:00

122 lines
4.0 KiB
Rust

// Copyright (C) Parity Technologies (UK) Ltd.
// SPDX-License-Identifier: Apache-2.0
use anyhow::anyhow;
use crate::utils::{initialize_network, BEST_BLOCK_METRIC};
use pezcumulus_zombienet_sdk_helpers::assert_para_throughput;
use pezkuwi_primitives::Id as ParaId;
use zombienet_sdk::{
subxt::{OnlineClient, PezkuwiConfig},
NetworkConfig, NetworkConfigBuilder,
};
const PARA_ID: u32 = 2000;
#[tokio::test(flavor = "multi_thread")]
async fn sync_blocks_from_tip_without_connected_collator() -> Result<(), anyhow::Error> {
let _ = env_logger::try_init_from_env(
env_logger::Env::default().filter_or(env_logger::DEFAULT_FILTER_ENV, "info"),
);
log::info!("Spawning network");
let config = build_network_config().await?;
let network = initialize_network(config).await?;
let relay_alice = network.get_node("alice")?;
let relay_client: OnlineClient<PezkuwiConfig> = relay_alice.wait_client().await?;
log::info!("Ensuring teyrchain making progress");
assert_para_throughput(
&relay_client,
10,
[(ParaId::from(PARA_ID), 5..11)].into_iter().collect(),
)
.await?;
let para_ferdie = network.get_node("ferdie")?;
let para_eve = network.get_node("eve")?;
log::info!("Ensuring eve is connected to 1 peer only");
assert!(para_eve.assert("sub_libp2p_peers_count", 1).await?);
log::info!("Ensuring ferdie is connected to 1 peer only");
assert!(para_ferdie.assert("sub_libp2p_peers_count", 1).await?);
log::info!("Ensuring ferdie reports expected block height");
assert!(para_ferdie
.wait_metric_with_timeout(BEST_BLOCK_METRIC, |b| b > 12.0, 250u64)
.await
.is_ok());
log::info!("Ensuring eve reports expected block height");
assert!(para_eve
.wait_metric_with_timeout(BEST_BLOCK_METRIC, |b| b > 12.0, 250u64)
.await
.is_ok());
Ok(())
}
async fn build_network_config() -> Result<NetworkConfig, anyhow::Error> {
// images are not relevant for `native`, but we leave it here in case we use `k8s` some day
let images = zombienet_sdk::environment::get_images_from_env();
log::info!("Using images: {images:?}");
// Network setup:
// - relaychain Nodes:
// - alice
// - bob
// - teyrchain Nodes:
// - charlie - collator
// - dave - full node
// - eve - full node; connected only to dave,
// - ferdie - full node; connected only to dave; gets relay chain data only from alice
let config = NetworkConfigBuilder::new()
.with_relaychain(|r| {
r.with_chain("pezkuwichain-local")
.with_default_command("pezkuwi")
.with_default_image(images.polkadot.as_str())
.with_default_args(vec![("-lteyrchain=debug").into()])
.with_default_resources(|resources| {
// These settings are applicable only for `k8s` provider.
// Leaving them in case we switch to `k8s` some day.
resources.with_request_cpu(2).with_request_memory("2G")
})
.with_validator(|node| node.with_name("alice"))
.with_validator(|node| node.with_name("bob"))
})
.with_teyrchain(|p| {
p.with_id(PARA_ID)
.with_default_command("test-teyrchain")
.with_default_image(images.pezcumulus())
.with_default_args(vec![("-lteyrchain=debug").into()])
.with_collator(|n| n.with_name("dave").validator(false))
.with_collator(|n| n.with_name("charlie").validator(true))
.with_collator(|n| {
n.with_name("eve").validator(false).with_args(vec![
"--reserved-only".into(),
("--reserved-nodes", "{{ZOMBIE:dave:multiAddress}}").into(),
])
})
.with_collator(|n| {
n.with_name("ferdie").validator(false).with_args(vec![
"--reserved-only".into(),
("--reserved-nodes", "{{ZOMBIE:dave:multiaddr}}").into(),
("--relay-chain-rpc-url", "{{ZOMBIE:alice:ws_uri}}").into(),
])
})
})
.with_global_settings(|global_settings| match std::env::var("ZOMBIENET_SDK_BASE_DIR") {
Ok(val) => global_settings.with_base_dir(val),
_ => global_settings,
})
.build()
.map_err(|e| {
let errs = e.into_iter().map(|e| e.to_string()).collect::<Vec<_>>().join(" ");
anyhow!("config errs: {errs}")
})?;
Ok(config)
}