Skip to content

Commit 968408d

Browse files
committed
Add config subcommand to test-manager
Move vm subcommand into config subcommand Also change the `test-manager config vm list` command to just list configured VMs, instead of their configuration contents.
1 parent acdaf7b commit 968408d

File tree

3 files changed

+84
-48
lines changed

3 files changed

+84
-48
lines changed

test/test-by-version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ usage() {
77
echo
88
echo "Required environment variables:"
99
echo " - ACCOUNT_TOKEN: Valid MullvadVPN account number"
10-
echo " - TEST_OS: Name of the VM configuration to use. List available configurations with 'cargo run --bin test-manager list'"
10+
echo " - TEST_OS: Name of the VM configuration to use. List available configurations with 'cargo run --bin test-manager config vm list'"
1111
echo "Optional environment variables:"
1212
echo " - APP_VERSION: The version of the app to test (defaults to the latest stable release)"
1313
echo " - APP_PACKAGE_TO_UPGRADE_FROM: The package version to upgrade from (defaults to none)"

test/test-manager/src/config/io.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ impl ConfigFile {
5151
}
5252

5353
/// Get configuration file path
54-
fn get_config_path() -> Result<PathBuf, Error> {
54+
pub fn get_config_path() -> Result<PathBuf, Error> {
5555
Ok(Self::get_config_dir()?.join("config.json"))
5656
}
5757

test/test-manager/src/main.rs

+82-46
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ mod vm;
1313
use std::net::IpAddr;
1414
use std::{net::SocketAddr, path::PathBuf};
1515

16-
use anyhow::{Context, Result};
16+
use anyhow::{Context, Ok, Result};
1717
use clap::{builder::PossibleValuesParser, Parser};
18+
use config::ConfigFile;
1819
use package::TargetInfo;
1920
use tests::{config::TEST_CONFIG, get_filtered_tests};
2021
use vm::provision;
@@ -31,28 +32,13 @@ struct Args {
3132

3233
#[derive(clap::Subcommand, Debug)]
3334
enum Commands {
34-
/// Create or edit a VM config
35-
Set {
36-
/// Name of the VM config
37-
vm: String,
38-
39-
/// VM config
40-
#[clap(flatten)]
41-
config: config::VmConfig,
42-
},
43-
44-
/// Remove specified VM config
45-
Remove {
46-
/// Name of the VM config, run `test-manager list` to see available configs
47-
vm: String,
48-
},
49-
50-
/// List available VM configurations
51-
List,
35+
/// Manage configuration for tests and VMs
36+
#[clap(subcommand)]
37+
Config(ConfigArg),
5238

5339
/// Spawn a runner instance without running any tests
5440
RunVm {
55-
/// Name of the VM config, run `test-manager list` to see available configs
41+
/// Name of the VM config, run `test-manager config vm list` to see configured VMs
5642
vm: String,
5743

5844
/// Run VNC server on a specified port
@@ -69,7 +55,7 @@ enum Commands {
6955

7056
/// Spawn a runner instance and run tests
7157
RunTests {
72-
/// Name of the VM config, run `test-manager list` to see available configs
58+
/// Name of the VM config, run `test-manager config vm list` to see configured VMs
7359
#[arg(long)]
7460
vm: String,
7561

@@ -161,6 +147,39 @@ enum Commands {
161147
},
162148
}
163149

150+
#[derive(clap::Subcommand, Debug)]
151+
enum ConfigArg {
152+
/// Print the current config
153+
Get,
154+
/// Print the path to the current config file
155+
Which,
156+
/// Manage VM-specific setting
157+
#[clap(subcommand)]
158+
Vm(VmConfig),
159+
}
160+
161+
#[derive(clap::Subcommand, Debug)]
162+
enum VmConfig {
163+
/// Create or edit a VM config
164+
Set {
165+
/// Name of the VM config
166+
vm: String,
167+
168+
/// VM config
169+
#[clap(flatten)]
170+
config: config::VmConfig,
171+
},
172+
173+
/// Remove specified VM config
174+
Remove {
175+
/// Name of the VM config, run `test-manager config vm list` to see configured VMs
176+
vm: String,
177+
},
178+
179+
/// List available VM configurations
180+
List,
181+
}
182+
164183
#[cfg(target_os = "linux")]
165184
impl Args {
166185
fn get_vnc_port(&self) -> Option<u16> {
@@ -184,33 +203,50 @@ async fn main() -> Result<()> {
184203
.await
185204
.context("Failed to load config")?;
186205
match args.cmd {
187-
Commands::Set {
188-
vm,
189-
config: vm_config,
190-
} => vm::set_config(&mut config, &vm, vm_config)
191-
.await
192-
.context("Failed to edit or create VM config"),
193-
Commands::Remove { vm } => {
194-
if config.get_vm(&vm).is_none() {
195-
println!("No such configuration");
196-
return Ok(());
206+
Commands::Config(config_subcommand) => match config_subcommand {
207+
ConfigArg::Get => {
208+
println!("{:#?}", *config);
209+
Ok(())
197210
}
198-
config
199-
.edit(|config| {
200-
config.vms.remove_entry(&vm);
201-
})
202-
.await
203-
.context("Failed to remove config entry")?;
204-
println!("Removed configuration \"{vm}\"");
205-
Ok(())
206-
}
207-
Commands::List => {
208-
println!("Available configurations:");
209-
for (vm, config) in config.vms.iter() {
210-
println!("{vm}: {config:#?}");
211+
ConfigArg::Which => {
212+
println!(
213+
"{}",
214+
ConfigFile::get_config_path()
215+
.expect("Get config path")
216+
.display()
217+
);
218+
Ok(())
211219
}
212-
Ok(())
213-
}
220+
ConfigArg::Vm(vm_config) => match vm_config {
221+
VmConfig::Set {
222+
vm,
223+
config: vm_config,
224+
} => vm::set_config(&mut config, &vm, vm_config)
225+
.await
226+
.context("Failed to edit or create VM config"),
227+
VmConfig::Remove { vm } => {
228+
if config.get_vm(&vm).is_none() {
229+
println!("No such configuration");
230+
return Ok(());
231+
}
232+
config
233+
.edit(|config| {
234+
config.vms.remove_entry(&vm);
235+
})
236+
.await
237+
.context("Failed to remove config entry")?;
238+
println!("Removed configuration \"{vm}\"");
239+
Ok(())
240+
}
241+
VmConfig::List => {
242+
println!("Configured VMs:");
243+
for vm in config.vms.keys() {
244+
println!("{vm}");
245+
}
246+
Ok(())
247+
}
248+
},
249+
},
214250
Commands::RunVm {
215251
vm,
216252
vnc,

0 commit comments

Comments
 (0)