1use owo_colors::OwoColorize;
7use sysinfo::Networks;
8
9pub fn detect_active_interface_and_local_ip() -> (Option<String>, Option<String>) {
11 let local_ip = std::net::UdpSocket::bind("0.0.0.0:0")
12 .ok()
13 .and_then(|socket| {
14 socket.connect("8.8.8.8:53").ok()?;
15 socket.local_addr().ok().map(|addr| addr.ip().to_string())
16 });
17
18 let active_interface = {
19 #[cfg(target_os = "linux")]
20 {
21 let native_iface = std::fs::read_to_string("/proc/net/route")
22 .ok()
23 .and_then(|content| parse_proc_net_route(&content));
24
25 native_iface.or_else(|| {
26 std::process::Command::new("ip")
27 .args(["route", "show", "default"])
28 .output()
29 .ok()
30 .and_then(|o| String::from_utf8(o.stdout).ok())
31 .and_then(|s| {
32 s.split_whitespace()
33 .position(|w| w == "dev")
34 .and_then(|i| s.split_whitespace().nth(i + 1))
35 .map(|s| s.to_string())
36 })
37 })
38 }
39 #[cfg(target_os = "macos")]
40 {
41 std::process::Command::new("route")
42 .args(["-n", "get", "default"])
43 .output()
44 .ok()
45 .and_then(|o| String::from_utf8(o.stdout).ok())
46 .and_then(|s| {
47 s.lines()
48 .find(|l| l.contains("interface:"))
49 .and_then(|l| l.split_whitespace().last())
50 .map(|s| s.to_string())
51 })
52 }
53 #[cfg(target_os = "windows")]
54 {
55 local_ip
62 .as_deref()
63 .and_then(|ip| ip.parse::<std::net::IpAddr>().ok())
64 .and_then(|target| {
65 let networks = Networks::new_with_refreshed_list();
66 match_active_interface(
67 networks.iter().map(|(name, data)| {
68 (
69 name.to_string(),
70 data.ip_networks().iter().map(|n| n.addr).collect(),
71 )
72 }),
73 target,
74 )
75 })
76 }
77 #[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows")))]
78 {
79 None
80 }
81 };
82
83 (local_ip, active_interface)
84}
85
86#[cfg(any(target_os = "windows", test))]
93fn match_active_interface(
94 ifaces: impl Iterator<Item = (String, Vec<std::net::IpAddr>)>,
95 local_ip: std::net::IpAddr,
96) -> Option<String> {
97 ifaces
98 .into_iter()
99 .find(|(_, ips)| ips.contains(&local_ip))
100 .map(|(name, _)| name)
101}
102
103pub fn detect_public_ip() -> Option<String> {
105 std::process::Command::new("curl")
106 .args(["-s", "--max-time", "2", "https://api.ipify.org"])
107 .output()
108 .ok()
109 .and_then(|o| String::from_utf8(o.stdout).ok())
110 .map(|s| s.trim().to_string())
111 .filter(|s| !s.is_empty())
112}
113
114pub fn detect_networks(active_interface: Option<&str>, local_ip: Option<&str>) -> Vec<String> {
116 Networks::new_with_refreshed_list()
117 .iter()
118 .map(|(name, data)| {
119 let rx = format_bytes(data.total_received());
120 let tx = format_bytes(data.total_transmitted());
121 let is_up = data.operational_state() == sysinfo::InterfaceOperationalState::Up
122 || data.total_received() > 0
123 || data.total_transmitted() > 0;
124 let status = if is_up {
125 "Up".green().to_string()
126 } else {
127 "Down".red().to_string()
128 };
129
130 let mut ipv4_addresses = Vec::new();
131 let mut ipv6_addresses = Vec::new();
132
133 if is_up {
134 for ip_net in data.ip_networks() {
135 let ip = ip_net.addr;
136 let name_lower = name.to_lowercase();
137 let is_loopback_iface =
138 name_lower.starts_with("lo") || name_lower.contains("loopback");
139 if ip.is_loopback() && !is_loopback_iface {
140 continue;
141 }
142 match ip {
143 std::net::IpAddr::V4(v4) => {
144 ipv4_addresses.push(v4.to_string());
145 }
146 std::net::IpAddr::V6(v6) => {
147 if !v6.is_unicast_link_local() {
148 ipv6_addresses.push(v6.to_string());
149 }
150 }
151 }
152 }
153
154 if ipv4_addresses.is_empty() && ipv6_addresses.is_empty() {
156 if let (Some(active), Some(ip)) = (active_interface, local_ip) {
157 if name == active {
158 ipv4_addresses.push(ip.to_string());
159 }
160 }
161 }
162 }
163
164 let ip_str = if !ipv4_addresses.is_empty() || !ipv6_addresses.is_empty() {
165 let mut combined = Vec::new();
166 if !ipv4_addresses.is_empty() {
167 combined.push(ipv4_addresses.join(", "));
168 }
169 if !ipv6_addresses.is_empty() {
170 combined.push(ipv6_addresses.join(", "));
171 }
172 format!(" ({})", combined.join(", "))
173 } else {
174 String::new()
175 };
176
177 format!("{}{} [{}] RX: {} TX: {}", name, ip_str, status, rx, tx)
178 })
179 .collect()
180}
181
182pub fn format_bytes(bytes: u64) -> String {
184 const KB: u64 = 1024;
185 const MB: u64 = KB * 1024;
186 const GB: u64 = MB * 1024;
187
188 if bytes >= GB {
189 format!("{:.1} GB", bytes as f64 / GB as f64)
190 } else if bytes >= MB {
191 format!("{:.1} MB", bytes as f64 / MB as f64)
192 } else if bytes >= KB {
193 format!("{:.1} KB", bytes as f64 / KB as f64)
194 } else {
195 format!("{} B", bytes)
196 }
197}
198
199pub fn lookup_pci_vendor(vendor_id: &str) -> Option<String> {
203 let vendor_id = vendor_id.trim_start_matches("0x").to_lowercase();
204 let paths = ["/usr/share/hwdata/pci.ids", "/usr/share/misc/pci.ids"];
205 for path in &paths {
206 if let Ok(content) = std::fs::read_to_string(path) {
207 for line in content.lines() {
208 if line.starts_with('#') || line.is_empty() {
209 continue;
210 }
211 if !line.starts_with('\t') {
212 let parts: Vec<&str> = line.split_whitespace().collect();
213 if parts.len() >= 2 && parts[0].to_lowercase() == vendor_id {
214 let name = line.strip_prefix(parts[0]).unwrap().trim();
215 return Some(name.to_string());
216 }
217 }
218 }
219 }
220 }
221 None
222}
223
224pub fn detect_wifi() -> Option<String> {
226 #[cfg(target_os = "linux")]
227 {
228 let mut wifi_interface = None;
229 if let Ok(entries) = std::fs::read_dir("/sys/class/net") {
230 for entry in entries.filter_map(|e| e.ok()) {
231 let path = entry.path();
232 if path.join("wireless").exists() || path.join("phy80211").exists() {
233 wifi_interface = Some(entry.file_name().to_string_lossy().to_string());
234 break;
235 }
236 }
237 }
238
239 if let Some(ref iface) = wifi_interface {
240 if let Ok(output) = std::process::Command::new("iw")
241 .args(["dev", iface, "link"])
242 .output()
243 {
244 if let Ok(stdout) = String::from_utf8(output.stdout) {
245 let (ssid, links) = parse_iw_link_output(&stdout);
246 if let Some(s) = ssid {
247 let card_model = get_wifi_card_model(iface);
248 let prefix = if let Some(m) = card_model {
249 format!("{} [{}] - ", m, iface)
250 } else {
251 format!("[{}] - ", iface)
252 };
253
254 if !links.is_empty() {
255 let mut link_strs = Vec::new();
256 for link in links {
257 let freq_str = link.freq.map(|f| {
258 let ghz_mhz = if f >= 1000.0 {
259 format!("{:.1} GHz", f / 1000.0)
260 } else {
261 format!("{} MHz", f)
262 };
263 if let Some(ch) = freq_to_channel(f) {
264 format!("{} ch{}", ghz_mhz, ch)
265 } else {
266 ghz_mhz
267 }
268 });
269
270 let mut rx_tx = Vec::new();
271 if let Some(rx) = link.rx_rate {
272 if rx != "0"
273 && !rx.starts_with("0 ")
274 && rx != "0 Mbps"
275 && rx != "0 MBit/s"
276 {
277 rx_tx.push(format!("↓{}", clean_rate(&rx)));
278 }
279 }
280 if let Some(tx) = link.tx_rate {
281 if tx != "0"
282 && !tx.starts_with("0 ")
283 && tx != "0 Mbps"
284 && tx != "0 MBit/s"
285 {
286 rx_tx.push(format!("↑{}", clean_rate(&tx)));
287 }
288 }
289
290 match (freq_str, rx_tx.is_empty()) {
291 (Some(f), false) => {
292 link_strs.push(format!("{} [{}]", f, rx_tx.join(" ")))
293 }
294 (Some(f), true) => link_strs.push(f),
295 (None, false) => link_strs.push(rx_tx.join(" ")),
296 _ => {}
297 }
298 }
299 if !link_strs.is_empty() {
300 return Some(format!(
301 "{}{}{} ({})",
302 prefix,
303 s,
304 "",
305 link_strs.join(", ")
306 ));
307 } else {
308 return Some(format!("{}{}", prefix, s));
309 }
310 }
311 return Some(format!("{}{}", prefix, s));
312 }
313 }
314 }
315 }
316
317 if let Ok(output) = std::process::Command::new("nmcli")
319 .args([
320 "-t",
321 "-f",
322 "active,ssid,rate",
323 "device",
324 "wifi",
325 "list",
326 "--rescan",
327 "no",
328 ])
329 .output()
330 {
331 if let Ok(stdout) = String::from_utf8(output.stdout) {
332 for line in stdout.lines() {
333 let line = line.trim();
334 if let Some(rest) = line.strip_prefix("yes:") {
335 if let Some(colon_idx) = rest.rfind(':') {
336 let ssid = &rest[..colon_idx];
337 let rate = rest[colon_idx + 1..].trim();
338 if !ssid.is_empty() {
339 if !rate.is_empty()
340 && rate != "0"
341 && !rate.starts_with("0 ")
342 && rate != "0 Mbit/s"
343 && rate != "0 Mbps"
344 {
345 return Some(format!("{} ({})", ssid, clean_rate(rate)));
346 } else {
347 return Some(ssid.to_string());
348 }
349 }
350 } else if !rest.is_empty() {
351 return Some(rest.to_string());
352 }
353 }
354 }
355 }
356 }
357
358 if let Ok(output) = std::process::Command::new("iwgetid").arg("-r").output() {
360 if let Ok(stdout) = String::from_utf8(output.stdout) {
361 let ssid = stdout.trim();
362 if !ssid.is_empty() {
363 return Some(ssid.to_string());
364 }
365 }
366 }
367 None
368 }
369
370 #[cfg(target_os = "macos")]
371 {
372 crate::macos_ffi::get_wifi_info().map(|(ssid, rate)| match rate {
373 Some(r) if r > 0 => format!("{} (↑{} Mbps)", ssid, r),
374 _ => ssid,
375 })
376 }
377
378 #[cfg(target_os = "windows")]
379 {
380 if let Ok(output) = std::process::Command::new("netsh")
381 .args(["wlan", "show", "interfaces"])
382 .output()
383 {
384 if let Ok(stdout) = String::from_utf8(output.stdout) {
385 return parse_netsh_output(&stdout);
386 }
387 }
388 None
389 }
390
391 #[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows")))]
392 {
393 None
394 }
395}
396
397#[cfg(any(target_os = "linux", test))]
398pub fn parse_proc_net_route(content: &str) -> Option<String> {
399 for line in content.lines().skip(1) {
400 let parts: Vec<&str> = line.split_whitespace().collect();
401 if parts.len() >= 8 {
402 let dest = parts[1];
403 let mask = parts[7];
404 if dest == "00000000" && mask == "00000000" {
405 return Some(parts[0].to_string());
406 }
407 }
408 }
409 None
410}
411
412#[allow(
413 clippy::manual_is_multiple_of,
414 clippy::manual_range_contains,
415 dead_code
416)]
417fn freq_to_channel(freq_mhz: f64) -> Option<u32> {
418 let freq = freq_mhz.round() as u32;
419 if freq >= 2412 && freq <= 2472 {
420 Some((freq - 2407) / 5)
421 } else if freq == 2484 {
422 Some(14)
423 } else if freq >= 5160 && freq <= 5885 {
424 if (freq - 5000) % 5 == 0 {
425 Some((freq - 5000) / 5)
426 } else {
427 None
428 }
429 } else if freq >= 5955 && freq <= 7115 {
430 if (freq - 5950) % 5 == 0 {
431 Some((freq - 5950) / 5)
432 } else {
433 None
434 }
435 } else {
436 None
437 }
438}
439
440#[allow(dead_code)]
441fn get_wifi_card_model(iface: &str) -> Option<String> {
442 let vendor = std::fs::read_to_string(format!("/sys/class/net/{}/device/vendor", iface)).ok()?;
443 let device = std::fs::read_to_string(format!("/sys/class/net/{}/device/device", iface)).ok()?;
444 let vendor_clean = vendor.trim().trim_start_matches("0x").to_lowercase();
445 let device_clean = device.trim().trim_start_matches("0x").to_lowercase();
446
447 let vendor_name = lookup_pci_vendor(&vendor_clean);
448 let model_name = crate::gpu::lookup_pci_device(&vendor_clean, &device_clean);
449
450 match (vendor_name, model_name) {
451 (Some(v), Some(m)) => {
452 let v_clean = v.replace(", Inc.", "").replace(" Corporation", "");
453 if m.to_lowercase().contains(&v_clean.to_lowercase())
454 || m.to_lowercase().contains(
455 &v_clean
456 .split_whitespace()
457 .next()
458 .unwrap_or("")
459 .to_lowercase(),
460 )
461 {
462 Some(m)
463 } else {
464 Some(format!("{} {}", v_clean, m))
465 }
466 }
467 (None, Some(m)) => Some(m),
468 _ => None,
469 }
470}
471
472#[allow(dead_code)]
473fn clean_rate(rate: &str) -> String {
474 rate.replace("MBit/s", "Mbps")
475 .replace("GBit/s", "Gbps")
476 .replace("Bit/s", "bps")
477}
478
479#[derive(Debug, Clone)]
480pub struct WifiLink {
481 pub freq: Option<f64>,
482 pub rx_rate: Option<String>,
483 pub tx_rate: Option<String>,
484}
485
486#[allow(dead_code)]
487pub fn parse_iw_link_output(stdout: &str) -> (Option<String>, Vec<WifiLink>) {
488 let mut ssid = None;
489 let mut links = Vec::new();
490 let mut current_link = None;
491
492 for line in stdout.lines() {
493 let trimmed = line.trim();
494 if trimmed.starts_with("Connected to") || trimmed.starts_with("link") {
495 if let Some(link) = current_link.take() {
496 links.push(link);
497 }
498 current_link = Some(WifiLink {
499 freq: None,
500 rx_rate: None,
501 tx_rate: None,
502 });
503 } else if trimmed.starts_with("SSID:") {
504 ssid = Some(trimmed.strip_prefix("SSID:").unwrap().trim().to_string());
505 } else if trimmed.starts_with("freq:") {
506 if let Some(ref mut link) = current_link {
507 let freq_str = trimmed.strip_prefix("freq:").unwrap().trim();
508 link.freq = freq_str.parse::<f64>().ok();
509 }
510 } else if trimmed.starts_with("rx bitrate:") {
511 if let Some(ref mut link) = current_link {
512 let rx_str = trimmed.strip_prefix("rx bitrate:").unwrap().trim();
513 let rate = rx_str
514 .split_whitespace()
515 .take(2)
516 .collect::<Vec<&str>>()
517 .join(" ");
518 link.rx_rate = Some(rate);
519 }
520 } else if trimmed.starts_with("tx bitrate:") {
521 if let Some(ref mut link) = current_link {
522 let tx_str = trimmed.strip_prefix("tx bitrate:").unwrap().trim();
523 let rate = tx_str
524 .split_whitespace()
525 .take(2)
526 .collect::<Vec<&str>>()
527 .join(" ");
528 link.tx_rate = Some(rate);
529 }
530 }
531 }
532 if let Some(link) = current_link {
533 links.push(link);
534 }
535 (ssid, links)
536}
537
538#[allow(dead_code)]
539pub fn parse_netsh_output(stdout: &str) -> Option<String> {
540 let mut ssid = None;
541 let mut rx = None;
542 let mut tx = None;
543 let mut band = None;
544 for line in stdout.lines() {
545 let trimmed = line.trim();
546 if trimmed.starts_with("SSID") {
547 if let Some(idx) = trimmed.find(':') {
548 let val = trimmed[idx + 1..].trim().to_string();
549 if !val.is_empty() {
550 ssid = Some(val);
551 }
552 }
553 } else if trimmed.starts_with("Receive rate (Mbps)") {
554 if let Some(idx) = trimmed.find(':') {
555 let val = trimmed[idx + 1..].trim().to_string();
556 if !val.is_empty() {
557 rx = Some(val);
558 }
559 }
560 } else if trimmed.starts_with("Transmit rate (Mbps)") {
561 if let Some(idx) = trimmed.find(':') {
562 let val = trimmed[idx + 1..].trim().to_string();
563 if !val.is_empty() {
564 tx = Some(val);
565 }
566 }
567 } else if trimmed.starts_with("Band") {
568 if let Some(idx) = trimmed.find(':') {
569 let val = trimmed[idx + 1..].trim().to_string();
570 if !val.is_empty() {
571 band = Some(val);
572 }
573 }
574 }
575 }
576 if let Some(s) = ssid {
577 let mut rate_strs = Vec::new();
578 if let Some(rx_val) = rx {
579 if rx_val != "0" {
580 rate_strs.push(format!("↓{} Mbps", rx_val));
581 }
582 }
583 if let Some(tx_val) = tx {
584 if tx_val != "0" {
585 rate_strs.push(format!("↑{} Mbps", tx_val));
586 }
587 }
588 let info = match (band, rate_strs.is_empty()) {
589 (Some(b), false) => format!("{} [{}]", b, rate_strs.join(" ")),
590 (Some(b), true) => b,
591 (None, false) => rate_strs.join(" "),
592 _ => String::new(),
593 };
594 if !info.is_empty() {
595 Some(format!("{} ({})", s, info))
596 } else {
597 Some(s)
598 }
599 } else {
600 None
601 }
602}
603
604pub fn detect_dns() -> Vec<String> {
610 #[cfg(any(target_os = "linux", target_os = "macos"))]
611 {
612 if let Ok(content) = std::fs::read_to_string("/etc/resolv.conf") {
613 return parse_resolv_conf(&content);
614 }
615 }
616 #[cfg(target_os = "windows")]
617 {
618 if let Ok(output) = std::process::Command::new("powershell")
619 .args([
620 "-Command",
621 "Get-DnsClientServerAddress -AddressFamily IPv4 | Select-Object -ExpandProperty ServerAddresses | Sort-Object -Unique",
622 ])
623 .output()
624 {
625 if let Ok(stdout) = String::from_utf8(output.stdout) {
626 let servers: Vec<String> = stdout
627 .lines()
628 .map(|l| l.trim().to_string())
629 .filter(|l| !l.is_empty())
630 .collect();
631 if !servers.is_empty() {
632 return servers;
633 }
634 }
635 }
636 }
637 Vec::new()
638}
639
640#[cfg(any(target_os = "linux", target_os = "macos", test))]
641pub fn parse_resolv_conf(content: &str) -> Vec<String> {
642 content
643 .lines()
644 .filter_map(|line| {
645 let line = line.trim();
646 if line.starts_with('#') || line.starts_with(';') {
647 return None;
648 }
649 let mut parts = line.split_whitespace();
650 if parts.next()? == "nameserver" {
651 parts.next().map(|s| s.to_string())
652 } else {
653 None
654 }
655 })
656 .collect()
657}
658
659pub fn detect_domain() -> Option<String> {
665 #[cfg(any(target_os = "linux", target_os = "macos"))]
666 {
667 if let Ok(content) = std::fs::read_to_string("/etc/resolv.conf") {
668 return parse_domain_from_resolv_conf(&content);
669 }
670 }
671 None
672}
673
674pub fn detect_domain_search() -> Vec<String> {
681 #[cfg(target_os = "linux")]
682 {
683 if let Ok(output) = std::process::Command::new("resolvectl")
684 .args(["status", "--no-pager"])
685 .output()
686 {
687 if output.status.success() {
688 let text = String::from_utf8_lossy(&output.stdout);
689 let result = parse_resolvectl_search(&text);
690 if !result.is_empty() {
691 return result;
692 }
693 }
694 }
695 if let Ok(content) = std::fs::read_to_string("/etc/resolv.conf") {
696 return parse_search_from_resolv_conf(&content);
697 }
698 }
699 #[cfg(target_os = "macos")]
700 {
701 if let Ok(content) = std::fs::read_to_string("/etc/resolv.conf") {
702 return parse_search_from_resolv_conf(&content);
703 }
704 }
705 Vec::new()
706}
707
708#[cfg(any(target_os = "linux", target_os = "macos", test))]
711pub fn parse_domain_from_resolv_conf(content: &str) -> Option<String> {
712 let mut first_search: Option<String> = None;
713 for line in content.lines() {
714 let line = line.trim();
715 if line.starts_with('#') || line.starts_with(';') {
716 continue;
717 }
718 let mut parts = line.split_whitespace();
719 match parts.next() {
720 Some("domain") => {
721 if let Some(d) = parts.next() {
722 return Some(d.to_string());
723 }
724 }
725 Some("search") if first_search.is_none() => {
726 if let Some(d) = parts.next() {
727 first_search = Some(d.to_string());
728 }
729 }
730 _ => {}
731 }
732 }
733 first_search
734}
735
736#[cfg(any(target_os = "linux", target_os = "macos", test))]
738pub fn parse_search_from_resolv_conf(content: &str) -> Vec<String> {
739 for line in content.lines() {
740 let line = line.trim();
741 if line.starts_with('#') || line.starts_with(';') {
742 continue;
743 }
744 let mut parts = line.split_whitespace();
745 if parts.next() == Some("search") {
746 let domains: Vec<String> = parts.map(|s| s.to_string()).collect();
747 if !domains.is_empty() {
748 return domains;
749 }
750 }
751 }
752 Vec::new()
753}
754
755#[cfg(any(target_os = "linux", test))]
759pub fn parse_resolvectl_search(content: &str) -> Vec<String> {
760 let mut results = Vec::new();
761 let mut current_iface: Option<String> = None;
762
763 for line in content.lines() {
764 let trimmed = line.trim();
765 if trimmed.starts_with("Link ") {
767 if let (Some(start), Some(end)) = (trimmed.find('('), trimmed.find(')')) {
768 current_iface = Some(trimmed[start + 1..end].to_string());
769 }
770 continue;
771 }
772 if let Some(ref iface) = current_iface {
773 let domains_str = trimmed
774 .strip_prefix("DNS Domain:")
775 .or_else(|| trimmed.strip_prefix("DNS Search Domains:"))
776 .map(|v| v.trim());
777 if let Some(domains) = domains_str {
778 let filtered: Vec<&str> =
780 domains.split_whitespace().filter(|d| *d != "~.").collect();
781 if !filtered.is_empty() {
782 results.push(format!("{}: {}", iface, filtered.join(", ")));
783 }
784 }
785 }
786 }
787 results
788}
789
790#[cfg(test)]
791mod tests {
792 use super::*;
793
794 #[test]
795 fn test_match_active_interface() {
796 use std::net::IpAddr;
797 let target: IpAddr = "192.168.1.50".parse().unwrap();
798 let ifaces = vec![
799 ("lo".to_string(), vec!["127.0.0.1".parse().unwrap()]),
800 (
801 "Ethernet".to_string(),
802 vec!["192.168.1.50".parse().unwrap(), "fe80::1".parse().unwrap()],
803 ),
804 ("Wi-Fi".to_string(), vec!["10.0.0.2".parse().unwrap()]),
805 ];
806 assert_eq!(
808 match_active_interface(ifaces.into_iter(), target),
809 Some("Ethernet".to_string())
810 );
811
812 let orphan: IpAddr = "8.8.8.8".parse().unwrap();
814 let ifaces2 = vec![(
815 "lo".to_string(),
816 vec!["127.0.0.1".parse::<IpAddr>().unwrap()],
817 )];
818 assert_eq!(match_active_interface(ifaces2.into_iter(), orphan), None);
819 }
820
821 #[test]
822 fn test_format_bytes() {
823 assert_eq!(format_bytes(500), "500 B");
824 assert_eq!(format_bytes(1024), "1.0 KB");
825 assert_eq!(format_bytes(1024 * 1024), "1.0 MB");
826 assert_eq!(format_bytes(1024 * 1024 * 1024), "1.0 GB");
827 assert_eq!(format_bytes(1536), "1.5 KB");
828 }
829
830 #[test]
831 fn test_parse_proc_net_route() {
832 let sample =
833 "Iface\tDestination\tGateway \tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU\tWindow\tIRTT\n\
834 wlan0\t0000A8C0\t00000000\t0001\t0\t0\t600\t0000FFFF\t0\t0\t0\n\
835 wlan0\t00000000\t0100A8C0\t0003\t0\t0\t600\t00000000\t0\t0\t0\n";
836 assert_eq!(parse_proc_net_route(sample), Some("wlan0".to_string()));
837
838 let sample_no_default =
839 "Iface\tDestination\tGateway \tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU\tWindow\tIRTT\n\
840 wlan0\t0000A8C0\t00000000\t0001\t0\t0\t600\t0000FFFF\t0\t0\t0\n";
841 assert_eq!(parse_proc_net_route(sample_no_default), None);
842 }
843
844 #[test]
845 fn test_parse_netsh_output() {
846 let sample = " Name : Wi-Fi\n State : connected\n SSID : Office_Wi-Fi\n Receive rate (Mbps) : 433\n Transmit rate (Mbps) : 866\n Band : 5 GHz\n";
847 assert_eq!(
848 parse_netsh_output(sample),
849 Some("Office_Wi-Fi (5 GHz [↓433 Mbps ↑866 Mbps])".to_string())
850 );
851 }
852
853 #[test]
854 fn test_parse_iw_link_output() {
855 let sample = "Connected to 84:78:48:dc:97:23 (on wlp2s0)\n SSID: OfficeNet\n freq: 6135.0\n rx bitrate: 6.0 MBit/s\n tx bitrate: 864.6 MBit/s 160MHz HE-MCS 4\n";
856 let (ssid, links) = parse_iw_link_output(sample);
857 assert_eq!(ssid, Some("OfficeNet".to_string()));
858 assert_eq!(links.len(), 1);
859 assert_eq!(links[0].freq, Some(6135.0));
860 assert_eq!(links[0].rx_rate, Some("6.0 MBit/s".to_string()));
861 assert_eq!(links[0].tx_rate, Some("864.6 MBit/s".to_string()));
862
863 let sample_mlo = "Connected to aa:bb:cc:dd:ee:ff (on wlan0)\n SSID: HomeWiFi\n freq: 5180.0\n rx bitrate: 866.0 MBit/s\n tx bitrate: 866.0 MBit/s\nConnected to aa:bb:cc:dd:ee:01 (on wlan0)\n freq: 6135.0\n rx bitrate: 1200.0 MBit/s\n tx bitrate: 1200.0 MBit/s\n";
865 let (ssid_mlo, links_mlo) = parse_iw_link_output(sample_mlo);
866 assert_eq!(ssid_mlo, Some("HomeWiFi".to_string()));
867 assert_eq!(links_mlo.len(), 2);
868 assert_eq!(links_mlo[0].freq, Some(5180.0));
869 assert_eq!(links_mlo[1].freq, Some(6135.0));
870 }
871
872 #[test]
873 fn test_parse_resolv_conf() {
874 let sample = "# Generated by NetworkManager\ndomain home\nsearch home\nnameserver 192.168.1.1\nnameserver 8.8.8.8\n; comment\nnameserver 2001:db8::1\n";
875 assert_eq!(
876 parse_resolv_conf(sample),
877 vec!["192.168.1.1", "8.8.8.8", "2001:db8::1"]
878 );
879
880 let empty = "# no nameservers\nsearch local\n";
881 assert_eq!(parse_resolv_conf(empty), Vec::<String>::new());
882 }
883
884 #[test]
885 fn test_parse_domain_from_resolv_conf_domain_directive() {
886 let s = "# test\ndomain example.com\nsearch fallback.com\nnameserver 1.1.1.1\n";
887 assert_eq!(
888 parse_domain_from_resolv_conf(s),
889 Some("example.com".to_string())
890 );
891 }
892
893 #[test]
894 fn test_parse_domain_from_resolv_conf_search_fallback() {
895 let s = "# no domain directive\nsearch local.lan other.lan\nnameserver 1.1.1.1\n";
896 assert_eq!(
897 parse_domain_from_resolv_conf(s),
898 Some("local.lan".to_string())
899 );
900 }
901
902 #[test]
903 fn test_parse_domain_from_resolv_conf_none() {
904 let s = "# no domain or search\nnameserver 1.1.1.1\n";
905 assert_eq!(parse_domain_from_resolv_conf(s), None);
906 }
907
908 #[test]
909 fn test_parse_search_from_resolv_conf() {
910 let s = "search home.local corp.example.com\nnameserver 1.1.1.1\n";
911 assert_eq!(
912 parse_search_from_resolv_conf(s),
913 vec!["home.local", "corp.example.com"]
914 );
915 }
916
917 #[test]
918 fn test_parse_resolvectl_search_basic() {
919 let sample = "Global\n\
920 Link 2 (lo)\n\
921 Current Scopes: none\n\
922 Link 3 (wlan0)\n\
923 Current Scopes: DNS\n\
924 DNS Domain: home.local\n\
925 Link 4 (eth0)\n\
926 Current Scopes: DNS\n\
927 DNS Search Domains: corp.example.com internal.net\n";
928 let result = parse_resolvectl_search(sample);
929 assert_eq!(
930 result,
931 vec!["wlan0: home.local", "eth0: corp.example.com, internal.net"]
932 );
933 }
934
935 #[test]
936 fn test_parse_resolvectl_search_skips_routing_domain() {
937 let sample = "Link 2 (wlan0)\n DNS Domain: ~.\nLink 3 (eth0)\n DNS Domain: corp.net\n";
938 let result = parse_resolvectl_search(sample);
939 assert_eq!(result, vec!["eth0: corp.net"]);
940 }
941
942 #[test]
943 fn test_parse_resolvectl_search_empty() {
944 let sample = "Global\n DNS Servers: 1.1.1.1\n";
945 assert!(parse_resolvectl_search(sample).is_empty());
946 }
947}