mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-04-01 00:33:40 +00:00
81 lines
2.7 KiB
Rust
81 lines
2.7 KiB
Rust
use std::time::Duration;
|
|
|
|
use anyhow::{Result, anyhow};
|
|
use lb_ext::{CoreBuilderExt as _, LbcComposeDeployer, LbcExtEnv, ScenarioBuilder};
|
|
use testing_framework_core::scenario::{AttachSource, Deployer as _, Runner};
|
|
use testing_framework_runner_compose::{ComposeDeploymentMetadata, ComposeRunnerError};
|
|
|
|
#[tokio::test]
|
|
#[ignore = "requires Docker and mutates compose runtime state"]
|
|
async fn compose_attach_mode_restart_node_opt_in() -> Result<()> {
|
|
let managed = ScenarioBuilder::deployment_with(|d| d.with_node_count(1))
|
|
.enable_node_control()
|
|
.with_run_duration(Duration::from_secs(5))
|
|
.build()?;
|
|
|
|
let deployer = LbcComposeDeployer::default();
|
|
let (_managed_runner, metadata): (Runner<LbcExtEnv>, ComposeDeploymentMetadata) =
|
|
match deployer.deploy_with_metadata(&managed).await {
|
|
Ok(result) => result,
|
|
Err(ComposeRunnerError::DockerUnavailable) => return Ok(()),
|
|
Err(error) => return Err(anyhow::Error::new(error)),
|
|
};
|
|
|
|
let project_name = metadata
|
|
.project_name()
|
|
.ok_or_else(|| anyhow!("compose deployment metadata has no project name"))?
|
|
.to_owned();
|
|
let attach_source = AttachSource::compose(vec![]).with_project(project_name);
|
|
|
|
let attached = ScenarioBuilder::deployment_with(|d| d.with_node_count(1))
|
|
.enable_node_control()
|
|
.with_run_duration(Duration::from_secs(5))
|
|
.with_attach_source(attach_source)
|
|
.build()?;
|
|
|
|
let attached_runner: Runner<LbcExtEnv> = match deployer.deploy(&attached).await {
|
|
Ok(runner) => runner,
|
|
Err(ComposeRunnerError::DockerUnavailable) => return Ok(()),
|
|
Err(error) => return Err(anyhow::Error::new(error)),
|
|
};
|
|
|
|
let control = attached_runner
|
|
.context()
|
|
.node_control()
|
|
.ok_or_else(|| anyhow!("attached compose node control is unavailable"))?;
|
|
|
|
let services: Vec<String> = attached_runner
|
|
.context()
|
|
.borrowed_nodes()
|
|
.into_iter()
|
|
.map(|node| node.identity)
|
|
.collect();
|
|
|
|
if services.is_empty() {
|
|
return Err(anyhow!("attached compose runner discovered no services"));
|
|
}
|
|
|
|
for service in services {
|
|
let pre_restart_started_at = metadata
|
|
.service_started_at(&service)
|
|
.await
|
|
.map_err(|err| anyhow!("{err}"))?;
|
|
|
|
control
|
|
.restart_node(&service)
|
|
.await
|
|
.map_err(|err| anyhow!("attached restart failed for {service}: {err}"))?;
|
|
|
|
metadata
|
|
.wait_until_service_restarted(
|
|
&service,
|
|
&pre_restart_started_at,
|
|
Duration::from_secs(30),
|
|
)
|
|
.await
|
|
.map_err(|err| anyhow!("{err}"))?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|