use crate::common::util::*; // Apparently some CI environments have configuration issues, e.g. with 'whoami' and 'id'. // If we are running inside the CI and "needle" is in "stderr" skipping this test is // considered okay. If we are not inside the CI this calls assert!(result.success). // // From the Logs: "Build (ubuntu-18.04, x86_64-unknown-linux-gnu, feat_os_unix, use-cross)" // stderr: "whoami: cannot find name for user ID 1001" // Maybe: "adduser --uid 1001 username" can put things right? // stderr = id: Could not find uid 1001: No such id: 1001 fn skipping_test_is_okay(result: &CmdResult, needle: &str) -> bool { if !result.succeeded() { println!("result.stdout = {}", result.stdout_str()); println!("result.stderr = {}", result.stderr_str()); if is_ci() && result.stderr_str().contains(needle) { println!("test skipped:"); return true; } else { result.success(); } } false } fn return_whoami_username() -> String { let scene = TestScenario::new("whoami"); let result = scene.cmd("whoami").run(); if skipping_test_is_okay(&result, "whoami: cannot find name for user ID") { println!("test skipped:"); return String::from(""); } result.stdout_str().trim().to_string() } #[test] fn test_id() { let scene = TestScenario::new(util_name!()); let result = scene.ucmd().arg("-u").succeeds(); let uid = result.stdout_str().trim(); let result = scene.ucmd().run(); if skipping_test_is_okay(&result, "Could not find uid") { return; } // Verify that the id found by --user/-u exists in the list result.stdout_contains(uid); } #[test] fn test_id_from_name() { let username = return_whoami_username(); if username.is_empty() { return; } let scene = TestScenario::new(util_name!()); let result = scene.ucmd().arg(&username).run(); if skipping_test_is_okay(&result, "Could not find uid") { return; } let uid = result.stdout_str().trim(); let result = scene.ucmd().run(); if skipping_test_is_okay(&result, "Could not find uid") { return; } result // Verify that the id found by --user/-u exists in the list .stdout_contains(uid) // Verify that the username found by whoami exists in the list .stdout_contains(username); } #[test] fn test_id_name_from_id() { let result = new_ucmd!().arg("-nu").run(); let username_id = result.stdout_str().trim(); let username_whoami = return_whoami_username(); if username_whoami.is_empty() { return; } assert_eq!(username_id, username_whoami); } #[test] fn test_id_group() { let scene = TestScenario::new(util_name!()); let mut result = scene.ucmd().arg("-g").succeeds(); let s1 = result.stdout_str().trim(); assert!(s1.parse::().is_ok()); result = scene.ucmd().arg("--group").succeeds(); let s1 = result.stdout_str().trim(); assert!(s1.parse::().is_ok()); } #[test] fn test_id_groups() { let scene = TestScenario::new(util_name!()); let result = scene.ucmd().arg("-G").succeeds(); let groups = result.stdout_str().trim().split_whitespace(); for s in groups { assert!(s.parse::().is_ok()); } let result = scene.ucmd().arg("--groups").succeeds(); let groups = result.stdout_str().trim().split_whitespace(); for s in groups { assert!(s.parse::().is_ok()); } } #[test] fn test_id_user() { let scene = TestScenario::new(util_name!()); let result = scene.ucmd().arg("-u").succeeds(); let s1 = result.stdout_str().trim(); assert!(s1.parse::().is_ok()); let result = scene.ucmd().arg("--user").succeeds(); let s1 = result.stdout_str().trim(); assert!(s1.parse::().is_ok()); } #[test] fn test_id_pretty_print() { let username = return_whoami_username(); if username.is_empty() { return; } let scene = TestScenario::new(util_name!()); let result = scene.ucmd().arg("-p").run(); if result.stdout_str().trim().is_empty() { // this fails only on: "MinRustV (ubuntu-latest, feat_os_unix)" // `rustc 1.40.0 (73528e339 2019-12-16)` // run: /home/runner/work/coreutils/coreutils/target/debug/coreutils id -p // thread 'test_id::test_id_pretty_print' panicked at 'Command was expected to succeed. // stdout = // stderr = ', tests/common/util.rs:157:13 println!("test skipped:"); return; } result.success().stdout_contains(username); } #[test] fn test_id_password_style() { let username = return_whoami_username(); if username.is_empty() { return; } let result = new_ucmd!().arg("-P").succeeds(); assert!(result.stdout_str().starts_with(&username)); }