2021-05-30 05:10:54 +00:00
|
|
|
// spell-checker:ignore (words) bogusfile emptyfile
|
|
|
|
|
2020-05-25 17:05:26 +00:00
|
|
|
use crate::common::util::*;
|
2015-11-16 05:25:01 +00:00
|
|
|
|
2021-05-29 12:32:35 +00:00
|
|
|
static INPUT: &str = "lorem_ipsum.txt";
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_stdin_default() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
.pipe_in_fixture(INPUT)
|
2020-04-13 18:36:03 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("lorem_ipsum_default.expected");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_stdin_1_line_obsolete() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
.args(&["-1"])
|
|
|
|
.pipe_in_fixture(INPUT)
|
2020-04-13 18:36:03 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("lorem_ipsum_1_line.expected");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_stdin_1_line() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
.args(&["-n", "1"])
|
|
|
|
.pipe_in_fixture(INPUT)
|
2020-04-13 18:36:03 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("lorem_ipsum_1_line.expected");
|
2020-05-10 19:31:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_stdin_negative_23_line() {
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-n", "-23"])
|
|
|
|
.pipe_in_fixture(INPUT)
|
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("lorem_ipsum_1_line.expected");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_stdin_5_chars() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
.args(&["-c", "5"])
|
|
|
|
.pipe_in_fixture(INPUT)
|
2020-04-13 18:36:03 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("lorem_ipsum_5_chars.expected");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_single_default() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
.arg(INPUT)
|
2020-04-13 18:36:03 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("lorem_ipsum_default.expected");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_single_1_line_obsolete() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
.args(&["-1", INPUT])
|
2020-04-13 18:36:03 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("lorem_ipsum_1_line.expected");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_single_1_line() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
.args(&["-n", "1", INPUT])
|
2020-04-13 18:36:03 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("lorem_ipsum_1_line.expected");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_single_5_chars() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
.args(&["-c", "5", INPUT])
|
2020-04-13 18:36:03 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("lorem_ipsum_5_chars.expected");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_verbose() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
.args(&["-v", INPUT])
|
2020-04-13 18:36:03 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("lorem_ipsum_verbose.expected");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
2020-08-04 21:35:35 +00:00
|
|
|
|
|
|
|
#[test]
|
2020-08-09 16:51:04 +00:00
|
|
|
#[ignore]
|
2020-08-04 21:35:35 +00:00
|
|
|
fn test_spams_newline() {
|
2021-03-29 11:08:48 +00:00
|
|
|
//this test is does not mirror what GNU does
|
2020-08-09 04:04:29 +00:00
|
|
|
new_ucmd!().pipe_in("a").succeeds().stdout_is("a\n");
|
2020-08-04 21:35:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-03-29 11:08:48 +00:00
|
|
|
fn test_byte_syntax() {
|
2020-08-04 21:35:35 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-1c"])
|
|
|
|
.pipe_in("abc")
|
2021-03-29 11:08:48 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is("a");
|
2020-08-04 21:35:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-03-29 11:08:48 +00:00
|
|
|
fn test_line_syntax() {
|
2020-08-04 21:35:35 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-n", "2048m"])
|
|
|
|
.pipe_in("a\n")
|
2021-03-29 11:08:48 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is("a\n");
|
2020-08-04 21:35:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-03-29 11:08:48 +00:00
|
|
|
fn test_zero_terminated_syntax() {
|
2020-08-04 21:35:35 +00:00
|
|
|
new_ucmd!()
|
2021-03-29 11:08:48 +00:00
|
|
|
.args(&["-z", "-n", "1"])
|
2020-08-04 21:35:35 +00:00
|
|
|
.pipe_in("x\0y")
|
2021-03-29 11:08:48 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is("x\0");
|
2020-08-04 21:35:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-03-29 11:08:48 +00:00
|
|
|
fn test_zero_terminated_syntax_2() {
|
2020-08-04 21:35:35 +00:00
|
|
|
new_ucmd!()
|
2021-03-29 11:08:48 +00:00
|
|
|
.args(&["-z", "-n", "2"])
|
2020-08-04 21:35:35 +00:00
|
|
|
.pipe_in("x\0y")
|
2021-03-29 11:08:48 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is("x\0y");
|
2020-08-04 21:35:35 +00:00
|
|
|
}
|
|
|
|
|
2021-05-12 03:48:06 +00:00
|
|
|
#[test]
|
|
|
|
fn test_zero_terminated_negative_lines() {
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-z", "-n", "-1"])
|
|
|
|
.pipe_in("x\0y\0z\0")
|
|
|
|
.run()
|
|
|
|
.stdout_is("x\0y\0");
|
|
|
|
}
|
|
|
|
|
2020-08-04 21:35:35 +00:00
|
|
|
#[test]
|
2021-03-29 11:08:48 +00:00
|
|
|
fn test_negative_byte_syntax() {
|
2020-08-04 21:35:35 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["--bytes=-2"])
|
|
|
|
.pipe_in("a\n")
|
2021-03-29 11:08:48 +00:00
|
|
|
.run()
|
|
|
|
.stdout_is("");
|
2020-08-04 21:35:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-03-29 11:08:48 +00:00
|
|
|
fn test_negative_zero_lines() {
|
2020-08-04 21:35:35 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["--lines=-0"])
|
|
|
|
.pipe_in("a\nb\n")
|
|
|
|
.succeeds()
|
2021-03-29 11:08:48 +00:00
|
|
|
.stdout_is("a\nb\n");
|
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn test_negative_zero_bytes() {
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["--bytes=-0"])
|
|
|
|
.pipe_in("qwerty")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_is("qwerty");
|
2020-08-04 21:35:35 +00:00
|
|
|
}
|
2021-03-21 20:27:44 +00:00
|
|
|
#[test]
|
|
|
|
fn test_no_such_file_or_directory() {
|
2021-04-22 20:37:44 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.arg("no_such_file.toml")
|
|
|
|
.fails()
|
|
|
|
.stderr_contains("cannot open 'no_such_file.toml' for reading: No such file or directory");
|
2021-03-21 20:27:44 +00:00
|
|
|
}
|
2021-03-29 11:08:48 +00:00
|
|
|
|
2021-05-17 01:21:20 +00:00
|
|
|
/// Test that each non-existent files gets its own error message printed.
|
|
|
|
#[test]
|
|
|
|
fn test_multiple_nonexistent_files() {
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["bogusfile1", "bogusfile2"])
|
|
|
|
.fails()
|
|
|
|
.stdout_does_not_contain("==> bogusfile1 <==")
|
|
|
|
.stderr_contains("cannot open 'bogusfile1' for reading: No such file or directory")
|
|
|
|
.stdout_does_not_contain("==> bogusfile2 <==")
|
|
|
|
.stderr_contains("cannot open 'bogusfile2' for reading: No such file or directory");
|
|
|
|
}
|
|
|
|
|
2021-03-29 11:08:48 +00:00
|
|
|
// there was a bug not caught by previous tests
|
|
|
|
// where for negative n > 3, the total amount of lines
|
|
|
|
// was correct, but it would eat from the second line
|
|
|
|
#[test]
|
|
|
|
fn test_sequence_fixture() {
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-n", "-10", "sequence"])
|
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("sequence.expected");
|
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn test_file_backwards() {
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-c", "-10", "lorem_ipsum.txt"])
|
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("lorem_ipsum_backwards_file.expected");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_zero_terminated() {
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-z", "zero_terminated.txt"])
|
|
|
|
.run()
|
|
|
|
.stdout_is_fixture("zero_terminated.expected");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_obsolete_extras() {
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-5zv"])
|
|
|
|
.pipe_in("1\02\03\04\05\06")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_is("==> standard input <==\n1\02\03\04\05\0");
|
|
|
|
}
|
2021-05-16 15:30:10 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_multiple_files() {
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["emptyfile.txt", "emptyfile.txt"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_is("==> emptyfile.txt <==\n\n==> emptyfile.txt <==\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_multiple_files_with_stdin() {
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["emptyfile.txt", "-", "emptyfile.txt"])
|
|
|
|
.pipe_in("hello\n")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_is(
|
|
|
|
"==> emptyfile.txt <==
|
|
|
|
|
|
|
|
==> standard input <==
|
|
|
|
hello
|
|
|
|
|
|
|
|
==> emptyfile.txt <==
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|