Skip to content

Commit 8cc7b16

Browse files
committed
Group platform split tunnel tests under one test
1 parent be58ee2 commit 8cc7b16

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

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

+15-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
use mullvad_management_interface::MullvadProxyClient;
22
use std::str;
33
use test_macro::test_function;
4-
use test_rpc::{ExecResult, ServiceClient};
4+
use test_rpc::{meta::Os, ExecResult, ServiceClient};
55

6-
use super::{helpers, TestContext};
6+
use super::{config::TEST_CONFIG, helpers, TestContext};
7+
8+
#[test_function]
9+
pub async fn test_split_tunnel(
10+
ctx: TestContext,
11+
rpc: ServiceClient,
12+
mullvad_client: MullvadProxyClient,
13+
) -> anyhow::Result<()> {
14+
match TEST_CONFIG.os {
15+
Os::Linux => test_split_tunnel_linux(ctx, rpc, mullvad_client).await,
16+
Os::Windows => test_split_tunnel_windows(ctx, rpc, mullvad_client).await,
17+
Os::Macos => todo!("MacOS"),
18+
}
19+
}
720

8-
#[test_function(target_os = "windows")]
921
pub async fn test_split_tunnel_windows(
1022
_: TestContext,
1123
rpc: ServiceClient,
@@ -69,7 +81,6 @@ pub async fn test_split_tunnel_windows(
6981
Ok(())
7082
}
7183

72-
#[test_function(target_os = "linux")]
7384
pub async fn test_split_tunnel_linux(
7485
_: TestContext,
7586
rpc: ServiceClient,

0 commit comments

Comments
 (0)