mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
72 lines
1.5 KiB
Rust
72 lines
1.5 KiB
Rust
use crate::common::util::*;
|
|
|
|
#[test]
|
|
fn test_bsd_single_file() {
|
|
new_ucmd!()
|
|
.arg("lorem_ipsum.txt")
|
|
.succeeds()
|
|
.stdout_only_fixture("bsd_single_file.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_bsd_multiple_files() {
|
|
new_ucmd!()
|
|
.arg("lorem_ipsum.txt")
|
|
.arg("alice_in_wonderland.txt")
|
|
.succeeds()
|
|
.stdout_only_fixture("bsd_multiple_files.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_bsd_stdin() {
|
|
new_ucmd!()
|
|
.pipe_in_fixture("lorem_ipsum.txt")
|
|
.succeeds()
|
|
.stdout_only_fixture("bsd_stdin.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_sysv_single_file() {
|
|
new_ucmd!()
|
|
.arg("-s")
|
|
.arg("lorem_ipsum.txt")
|
|
.succeeds()
|
|
.stdout_only_fixture("sysv_single_file.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_sysv_multiple_files() {
|
|
new_ucmd!()
|
|
.arg("-s")
|
|
.arg("lorem_ipsum.txt")
|
|
.arg("alice_in_wonderland.txt")
|
|
.succeeds()
|
|
.stdout_only_fixture("sysv_multiple_files.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_sysv_stdin() {
|
|
new_ucmd!()
|
|
.arg("-s")
|
|
.pipe_in_fixture("lorem_ipsum.txt")
|
|
.succeeds()
|
|
.stdout_only_fixture("sysv_stdin.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_invalid_file() {
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
at.mkdir("a");
|
|
|
|
ucmd.arg("a").fails().stderr_is("sum: 'a' Is a directory");
|
|
}
|
|
|
|
#[test]
|
|
fn test_invalid_metadata() {
|
|
let (_, mut ucmd) = at_and_ucmd!();
|
|
|
|
ucmd.arg("b")
|
|
.fails()
|
|
.stderr_is("sum: 'b' No such file or directory");
|
|
}
|