coreutils/tests/by-util/test_logname.rs

31 lines
918 B
Rust
Raw Normal View History

2023-08-21 08:49:27 +00:00
// This file is part of the uutils coreutils package.
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
2023-03-20 13:51:19 +00:00
use crate::common::util::{is_ci, TestScenario};
2020-06-07 15:41:48 +00:00
use std::env;
#[test]
fn test_invalid_arg() {
new_ucmd!().arg("--definitely-invalid").fails().code_is(1);
}
2020-06-07 15:41:48 +00:00
#[test]
fn test_normal() {
let result = new_ucmd!().run();
2020-06-07 15:41:48 +00:00
println!("env::var(CI).is_ok() = {}", env::var("CI").is_ok());
for (key, value) in env::vars() {
println!("{key}: {value}");
2020-06-07 15:41:48 +00:00
}
if (is_ci() || uucore::os::is_wsl_1()) && result.stderr_str().contains("no login name") {
// ToDO: investigate WSL failure
2020-06-07 15:41:48 +00:00
// In the CI, some server are failing to return logname.
// As seems to be a configuration issue, ignoring it
return;
}
result.success();
assert!(!result.stdout_str().trim().is_empty());
2020-06-07 15:41:48 +00:00
}