1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
//! Platform-specific API integration tests for network interface discovery
//!
//! These tests verify that platform-specific APIs work correctly on each OS
#![allow(clippy::unwrap_used, clippy::expect_used)]
use ant_quic::candidate_discovery::NetworkInterfaceDiscovery;
#[cfg(target_os = "windows")]
mod windows_tests {
use super::*;
use ant_quic::candidate_discovery::windows::WindowsInterfaceDiscovery;
use std::time::Duration;
#[test]
fn test_windows_ip_helper_api_functionality() {
let mut discovery = WindowsInterfaceDiscovery::new();
// Test that we can start a scan
match discovery.start_scan() {
Ok(_) => {
// Wait for scan to complete
std::thread::sleep(Duration::from_millis(100));
// Check scan results
if let Some(interfaces) = discovery.check_scan_complete() {
println!("Found {} network interfaces on Windows", interfaces.len());
// Verify we have at least one interface (loopback should always exist)
assert!(
!interfaces.is_empty(),
"Windows should have at least one network interface"
);
// Check that interfaces have valid data
for interface in interfaces {
assert!(
!interface.name.is_empty(),
"Interface name should not be empty"
);
assert!(
!interface.addresses.is_empty(),
"Interface should have at least one address"
);
println!(
"Windows interface: {} with {} addresses",
interface.name,
interface.addresses.len()
);
}
} else {
panic!("Windows network scan did not complete");
}
}
Err(e) => {
// On CI, we might not have full permissions
if e.contains("Access is denied") || e.contains("permission") {
println!("Skipping test due to permission issues on CI: {}", e);
} else {
panic!("Failed to start Windows network scan: {}", e);
}
}
}
}
#[test]
fn test_windows_network_change_monitoring() {
let mut discovery = WindowsInterfaceDiscovery::new();
// Initialize monitoring
if let Err(e) = discovery.start_scan() {
if e.contains("permission") {
println!("Skipping monitoring test due to permissions");
return;
}
}
// In a real scenario, we would trigger network changes
// For now, just verify the monitoring system initializes
assert!(true, "Windows network monitoring initialized");
}
#[test]
#[ignore] // Requires admin privileges
fn test_windows_adapter_enumeration_stress() {
// Stress test: rapid enumeration
for i in 0..10 {
let mut discovery = WindowsInterfaceDiscovery::new();
match discovery.start_scan() {
Ok(_) => {
std::thread::sleep(Duration::from_millis(50));
if let Some(interfaces) = discovery.check_scan_complete() {
println!("Iteration {}: Found {} interfaces", i, interfaces.len());
}
}
Err(e) => println!("Iteration {} failed: {}", i, e),
}
}
}
}
#[cfg(target_os = "linux")]
mod linux_tests {
use super::*;
use ant_quic::candidate_discovery::linux::LinuxInterfaceDiscovery;
use std::time::Duration;
#[test]
fn test_linux_netlink_socket_functionality() {
let mut discovery = LinuxInterfaceDiscovery::new();
// Test that we can start a scan
match discovery.start_scan() {
Ok(_) => {
// Wait for scan to complete
std::thread::sleep(Duration::from_millis(100));
// Check scan results
if let Some(interfaces) = discovery.check_scan_complete() {
println!("Found {} network interfaces on Linux", interfaces.len());
// Verify we have at least one interface (lo should always exist)
assert!(
!interfaces.is_empty(),
"Linux should have at least one network interface"
);
// Look for loopback interface (may not exist in all CI environments)
let has_loopback = interfaces.iter().any(|i| i.name == "lo");
if !has_loopback {
println!("Warning: No loopback interface found (may be normal in CI)");
}
// Check that interfaces have valid data
for interface in interfaces {
assert!(
!interface.name.is_empty(),
"Interface name should not be empty"
);
println!(
"Linux interface: {} with {} addresses, up: {}",
interface.name,
interface.addresses.len(),
interface.is_up
);
}
} else {
panic!("Linux network scan did not complete");
}
}
Err(e) => {
panic!("Failed to start Linux network scan: {}", e);
}
}
}
#[test]
fn test_linux_proc_filesystem_access() {
// Verify we can access required /proc files
assert!(
std::path::Path::new("/proc/net/dev").exists(),
"/proc/net/dev should exist on Linux"
);
// Check if we can read the file
match std::fs::read_to_string("/proc/net/dev") {
Ok(content) => {
assert!(
content.contains("lo:"),
"/proc/net/dev should contain loopback interface"
);
}
Err(e) => panic!("Cannot read /proc/net/dev: {}", e),
}
// Check IPv6 support (might not exist on all systems)
if std::path::Path::new("/proc/net/if_inet6").exists() {
println!("IPv6 support detected via /proc/net/if_inet6");
}
}
#[test]
fn test_linux_netlink_monitoring() {
let mut discovery = LinuxInterfaceDiscovery::new();
// Try to initialize netlink socket for monitoring
match discovery.initialize_netlink_socket() {
Ok(_) => {
println!("Linux netlink socket initialized successfully");
// Check for network changes (none expected in test)
match discovery.check_network_changes() {
Ok(changes) => {
println!("Network changes detected: {}", changes);
}
Err(e) => {
println!("Error checking network changes: {:?}", e);
}
}
}
Err(e) => {
// Might fail on some CI environments
println!(
"Netlink initialization failed (may be normal on CI): {:?}",
e
);
}
}
}
#[test]
#[ignore] // Requires specific network setup
fn test_linux_netlink_namespace() {
// This test would require network namespace capabilities
// Usually requires root or CAP_NET_ADMIN
println!("Network namespace test would run with appropriate privileges");
}
#[test]
fn test_linux_interface_enumeration_stress() {
// Stress test: rapid enumeration
for i in 0..10 {
let mut discovery = LinuxInterfaceDiscovery::new();
match discovery.start_scan() {
Ok(_) => {
std::thread::sleep(Duration::from_millis(50));
if let Some(interfaces) = discovery.check_scan_complete() {
println!("Iteration {}: Found {} interfaces", i, interfaces.len());
}
}
Err(e) => panic!("Iteration {} failed: {}", i, e),
}
}
}
}
#[cfg(target_os = "macos")]
mod macos_tests {
use super::*;
use ant_quic::candidate_discovery::macos::MacOSInterfaceDiscovery;
use std::time::Duration;
#[test]
fn test_macos_system_configuration_functionality() {
let mut discovery = MacOSInterfaceDiscovery::new();
// Test that we can start a scan
match discovery.start_scan() {
Ok(_) => {
// Wait for scan to complete
std::thread::sleep(Duration::from_millis(100));
// Check scan results
if let Some(interfaces) = discovery.check_scan_complete() {
println!("Found {} network interfaces on macOS", interfaces.len());
// Verify we have at least one interface (lo0 should always exist)
assert!(
!interfaces.is_empty(),
"macOS should have at least one network interface"
);
// Look for loopback interface (may not exist in all CI environments)
let has_loopback = interfaces.iter().any(|i| i.name == "lo0");
if !has_loopback {
println!("Warning: No lo0 interface found (may be normal in CI)");
}
// Check that interfaces have valid data
for interface in interfaces {
assert!(
!interface.name.is_empty(),
"Interface name should not be empty"
);
println!(
"macOS interface: {} with {} addresses, wireless: {}",
interface.name,
interface.addresses.len(),
interface.is_wireless
);
}
} else {
panic!("macOS network scan did not complete");
}
}
Err(e) => {
panic!("Failed to start macOS network scan: {}", e);
}
}
}
#[test]
fn test_macos_scf_dynamic_store() {
let mut discovery = MacOSInterfaceDiscovery::new();
// Test creating dynamic store
match discovery.initialize_dynamic_store() {
Ok(_) => {
println!("macOS SCDynamicStore created successfully");
// The store should be initialized
assert!(
discovery.sc_store.is_some(),
"Dynamic store should be initialized"
);
}
Err(e) => {
// Might fail on some CI environments
println!(
"Dynamic store creation failed (may be normal on CI): {:?}",
e
);
}
}
}
#[test]
fn test_macos_framework_availability() {
// Check that required frameworks exist
let frameworks = [
"/System/Library/Frameworks/SystemConfiguration.framework",
"/System/Library/Frameworks/CoreFoundation.framework",
];
for framework in &frameworks {
assert!(
std::path::Path::new(framework).exists(),
"Required framework {} should exist",
framework
);
}
}
#[test]
fn test_macos_network_change_monitoring() {
let mut discovery = MacOSInterfaceDiscovery::new();
// Try to set up monitoring
match discovery.enable_change_monitoring() {
Ok(_) => {
println!("macOS network monitoring initialized");
// Check if monitoring detects changes
let changed = discovery.check_network_changes();
println!("Network changes detected: {}", changed);
}
Err(e) => {
println!(
"Network monitoring setup failed (may be normal on CI): {:?}",
e
);
}
}
}
#[test]
#[ignore] // Long-running test
fn test_macos_interface_enumeration_stress() {
// Stress test: rapid enumeration
for i in 0..10 {
let mut discovery = MacOSInterfaceDiscovery::new();
match discovery.start_scan() {
Ok(_) => {
std::thread::sleep(Duration::from_millis(50));
if let Some(interfaces) = discovery.check_scan_complete() {
println!("Iteration {}: Found {} interfaces", i, interfaces.len());
}
}
Err(e) => panic!("Iteration {} failed: {}", i, e),
}
}
}
}
// Cross-platform comparison tests
#[test]
fn test_platform_interface_consistency() {
#[cfg(target_os = "windows")]
let mut discovery = ant_quic::candidate_discovery::windows::WindowsInterfaceDiscovery::new();
#[cfg(target_os = "linux")]
let mut discovery = ant_quic::candidate_discovery::linux::LinuxInterfaceDiscovery::new();
#[cfg(target_os = "macos")]
let mut discovery = ant_quic::candidate_discovery::macos::MacOSInterfaceDiscovery::new();
// All platforms should support the same trait
match discovery.start_scan() {
Ok(_) => {
std::thread::sleep(std::time::Duration::from_millis(100));
if let Some(interfaces) = discovery.check_scan_complete() {
// All platforms should report consistent interface structure
for interface in interfaces {
// Basic validation
assert!(!interface.name.is_empty());
assert!(interface.mtu.is_none() || interface.mtu.unwrap() >= 576);
// Addresses should be valid
for addr in &interface.addresses {
assert!(addr.port() == 0, "Interface addresses should have port 0");
}
}
}
}
Err(e) => {
println!("Platform consistency test skipped due to: {}", e);
}
}
}