Skip to content

Commit e330dd6

Browse files
committed
Run tests in the order given
1 parent 2baad57 commit e330dd6

File tree

3 files changed

+27
-20
lines changed

3 files changed

+27
-20
lines changed

test/test-manager/src/main.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ use std::{net::SocketAddr, path::PathBuf};
1313

1414
use anyhow::{Context, Result};
1515
use clap::Parser;
16+
use tests::get_filtered_tests;
1617
use vm::provision;
1718

1819
use crate::tests::config::OpenVPNCertificate;
@@ -118,7 +119,8 @@ enum Commands {
118119
#[arg(long)]
119120
openvpn_certificate: Option<PathBuf>,
120121

121-
/// Only run tests matching substrings
122+
/// Names of tests to run. The order given will be respected. If not set, all tests will be
123+
/// run.
122124
test_filters: Vec<String>,
123125

124126
/// Print results live
@@ -253,6 +255,7 @@ async fn main() -> Result<()> {
253255
(false, true) => config::Display::Vnc,
254256
(true, true) => unreachable!("invalid combination"),
255257
};
258+
let tests = get_filtered_tests(&test_filters)?;
256259

257260
let mullvad_host = config.get_host();
258261
log::debug!("Mullvad host: {mullvad_host}");
@@ -325,7 +328,7 @@ async fn main() -> Result<()> {
325328
openvpn_certificate,
326329
),
327330
&*instance,
328-
&test_filters,
331+
tests,
329332
skip_wait,
330333
!verbose,
331334
summary_logger,

test/test-manager/src/run_tests.rs

+2-18
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use crate::{
22
logging::{Logger, Panic, TestOutput, TestResult},
33
mullvad_daemon::{self, MullvadClientArgument, RpcClientProvider},
44
summary::SummaryLogger,
5-
tests::{self, config::TEST_CONFIG, get_tests, TestContext},
5+
tests::{self, config::TEST_CONFIG, TestContext, TestMetadata},
66
vm,
77
};
88
use anyhow::{Context, Result};
@@ -103,7 +103,7 @@ impl TestHandler<'_> {
103103
pub async fn run(
104104
config: tests::config::TestConfig,
105105
instance: &dyn vm::VmInstance,
106-
test_filters: &[String],
106+
tests: Vec<&TestMetadata>,
107107
skip_wait: bool,
108108
print_failed_tests_only: bool,
109109
summary_logger: Option<SummaryLogger>,
@@ -141,22 +141,6 @@ pub async fn run(
141141
logger: Logger::get_or_init(),
142142
};
143143

144-
let mut tests = get_tests();
145-
146-
tests.retain(|test| test.should_run_on_os(TEST_CONFIG.os));
147-
148-
if !test_filters.is_empty() {
149-
tests.retain(|test| {
150-
for command in test_filters {
151-
let command = command.to_lowercase();
152-
if test.command.to_lowercase().contains(&command) {
153-
return true;
154-
}
155-
}
156-
false
157-
});
158-
}
159-
160144
if TEST_CONFIG.app_package_to_upgrade_from_filename.is_some() {
161145
test_handler
162146
.run_test(

test/test-manager/src/tests/mod.rs

+20
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,26 @@ pub fn get_tests() -> Vec<&'static TestMetadata> {
7878
tests
7979
}
8080

81+
pub fn get_filtered_tests(specified_tests: &[String]) -> Result<Vec<&TestMetadata>, anyhow::Error> {
82+
let mut tests = get_tests();
83+
tests.retain(|test| test.should_run_on_os(TEST_CONFIG.os));
84+
if !specified_tests.is_empty() {
85+
specified_tests
86+
.iter()
87+
.map(|f| {
88+
tests
89+
.iter()
90+
.find(|t| t.command.eq_ignore_ascii_case(f))
91+
.cloned()
92+
.ok_or(anyhow::anyhow!("Test '{f}' not found"))
93+
})
94+
.collect()
95+
} else {
96+
// Keep all tests
97+
Ok(tests)
98+
}
99+
}
100+
81101
/// Make sure the daemon is installed and logged in and restore settings to the defaults.
82102
pub async fn prepare_daemon(
83103
rpc: &ServiceClient,

0 commit comments

Comments
 (0)