2020-05-25 17:05:26 +00:00
|
|
|
use crate::common::util::*;
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
static INPUT: &'static str = "lorem_ipsum.txt";
|
|
|
|
|
|
|
|
#[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
|
|
|
}
|
|
|
|
|
|
|
|
#[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
|
|
|
|
|
|
|
// 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");
|
|
|
|
}
|