mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
75 lines
1.9 KiB
Rust
75 lines
1.9 KiB
Rust
use std::fs::File;
|
|
|
|
use crate::common::util::*;
|
|
|
|
#[test]
|
|
#[cfg(not(windows))]
|
|
fn test_dev_null() {
|
|
new_ucmd!()
|
|
.set_stdin(File::open("/dev/null").unwrap())
|
|
.fails()
|
|
.code_is(1)
|
|
.stdout_is("not a tty\n");
|
|
}
|
|
|
|
#[test]
|
|
#[cfg(not(windows))]
|
|
fn test_dev_null_silent() {
|
|
new_ucmd!()
|
|
.args(&["-s"])
|
|
.set_stdin(File::open("/dev/null").unwrap())
|
|
.fails()
|
|
.code_is(1)
|
|
.stdout_is("");
|
|
}
|
|
|
|
#[test]
|
|
fn test_close_stdin() {
|
|
let mut child = new_ucmd!().run_no_wait();
|
|
drop(child.stdin.take());
|
|
let output = child.wait_with_output().unwrap();
|
|
assert_eq!(output.status.code(), Some(1));
|
|
assert_eq!(std::str::from_utf8(&output.stdout), Ok("not a tty\n"));
|
|
}
|
|
|
|
#[test]
|
|
fn test_close_stdin_silent() {
|
|
let mut child = new_ucmd!().arg("-s").run_no_wait();
|
|
drop(child.stdin.take());
|
|
let output = child.wait_with_output().unwrap();
|
|
assert_eq!(output.status.code(), Some(1));
|
|
assert!(output.stdout.is_empty());
|
|
}
|
|
|
|
#[test]
|
|
fn test_close_stdin_silent_long() {
|
|
let mut child = new_ucmd!().arg("--silent").run_no_wait();
|
|
drop(child.stdin.take());
|
|
let output = child.wait_with_output().unwrap();
|
|
assert_eq!(output.status.code(), Some(1));
|
|
assert!(output.stdout.is_empty());
|
|
}
|
|
|
|
#[test]
|
|
fn test_close_stdin_silent_alias() {
|
|
let mut child = new_ucmd!().arg("--quiet").run_no_wait();
|
|
drop(child.stdin.take());
|
|
let output = child.wait_with_output().unwrap();
|
|
assert_eq!(output.status.code(), Some(1));
|
|
assert!(output.stdout.is_empty());
|
|
}
|
|
|
|
#[test]
|
|
fn test_wrong_argument() {
|
|
new_ucmd!().args(&["a"]).fails().code_is(2);
|
|
}
|
|
|
|
#[test]
|
|
// FixME: freebsd panic
|
|
#[cfg(not(any(windows, target_os = "freebsd")))]
|
|
fn test_stdout_fail() {
|
|
let mut child = new_ucmd!().run_no_wait();
|
|
drop(child.stdout.take());
|
|
let status = child.wait().unwrap();
|
|
assert_eq!(status.code(), Some(3));
|
|
}
|