Skip to content

Commit fa0e78a

Browse files
Merge branch 'integration-test-fixes'
2 parents c2cf8b5 + 81c966c commit fa0e78a

File tree

2 files changed

+41
-22
lines changed

2 files changed

+41
-22
lines changed

mullvad-management-interface/src/client.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ use mullvad_types::{
1616
version::AppVersionInfo,
1717
wireguard::{PublicKey, QuantumResistantState, RotationInterval},
1818
};
19-
use std::path::Path;
20-
use std::str::FromStr;
19+
use std::{path::Path, str::FromStr};
2120
#[cfg(target_os = "windows")]
2221
use talpid_types::split_tunnel::ExcludedProcess;
2322
use tonic::{Code, Status};
@@ -29,6 +28,7 @@ pub type Result<T> = std::result::Result<T, super::Error>;
2928
#[derive(Debug, Clone)]
3029
pub struct MullvadProxyClient(crate::ManagementServiceClient);
3130

31+
#[derive(Debug)]
3232
pub enum DaemonEvent {
3333
TunnelState(TunnelState),
3434
Settings(Settings),

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

+39-20
Original file line numberDiff line numberDiff line change
@@ -288,50 +288,69 @@ pub async fn test_automatic_wireguard_rotation(
288288
.device
289289
.pubkey;
290290

291-
// Stop daemon
291+
log::info!("Old wireguard key: {old_key}");
292+
293+
log::info!("Stopping daemon");
292294
rpc.stop_mullvad_daemon()
293295
.await
294296
.expect("Could not stop system service");
295297

296-
// Open device.json and change created field to more than 7 days ago
298+
log::info!("Changing created field of `device.json` to more than 7 days ago");
297299
rpc.make_device_json_old()
298300
.await
299301
.expect("Could not change device.json to have an old created timestamp");
300302

301-
// Start daemon
303+
log::info!("Starting daemon");
302304
rpc.start_mullvad_daemon()
303305
.await
304306
.expect("Could not start system service");
305307

306308
// NOTE: Need to create a new `mullvad_client` here after the restart otherwise we can't
307309
// communicate with the daemon
310+
log::info!("Reconnecting to daemon");
308311
drop(mullvad_client);
309312
let mut mullvad_client = ctx.rpc_provider.new_client().await;
310313

311-
// Verify rotation has happened after a minute
312-
const KEY_ROTATION_TIMEOUT: Duration = Duration::from_secs(100);
314+
log::info!("Verifying that wireguard key has change");
315+
316+
// Check if the key rotation has already occurred when connected to the daemon, otherwise
317+
// listen for device daemon events until we observe the change. We have to register the event
318+
// listener before polling the current key to be sure we don't miss the change.
319+
let event_listener = mullvad_client.events_listen().await.unwrap();
320+
let new_key = mullvad_client
321+
.get_device()
322+
.await
323+
.unwrap()
324+
.into_device()
325+
.expect("Could not get device")
326+
.device
327+
.pubkey;
313328

314-
let new_key = tokio::time::timeout(
315-
KEY_ROTATION_TIMEOUT,
316-
helpers::find_daemon_event(
317-
mullvad_client.events_listen().await.unwrap(),
318-
|daemon_event| match daemon_event {
329+
// If key has not yet been updated, listen for changes to it
330+
if new_key == old_key {
331+
log::info!("Listening for device daemon event");
332+
// Verify rotation has happened within 100 seconds - if the key hasn't been rotated after
333+
// that, the rotation probably won't happen anytime soon.
334+
let device_event = tokio::task::spawn(tokio::time::timeout(
335+
Duration::from_secs(100),
336+
helpers::find_daemon_event(event_listener, |daemon_event| match daemon_event {
319337
DaemonEvent::Device(device_event) => Some(device_event),
320338
_ => None,
321-
},
322-
),
323-
)
324-
.await
325-
.map_err(|_error| Error::Daemon(String::from("Tunnel event listener timed out")))?
326-
.map(|device_event| {
327-
device_event
339+
}),
340+
))
341+
.await
342+
.unwrap()
343+
.map_err(|_error| Error::Daemon(String::from("Tunnel event listener timed out")))??;
344+
345+
let new_key = device_event
328346
.new_state
329347
.into_device()
330348
.expect("Could not get device")
331349
.device
332-
.pubkey
333-
})?;
350+
.pubkey;
351+
352+
assert_ne!(old_key, new_key);
353+
}
334354

335-
assert_ne!(old_key, new_key);
336355
Ok(())
337356
}

0 commit comments

Comments
 (0)