mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
522 lines
16 KiB
Rust
522 lines
16 KiB
Rust
// spell-checker:ignore (ToDO) Sdivide
|
|
|
|
use crate::common::util::*;
|
|
use chrono::offset::Local;
|
|
use chrono::DateTime;
|
|
use std::fs::metadata;
|
|
|
|
fn file_last_modified_time(ucmd: &UCommand, path: &str) -> String {
|
|
let tmp_dir_path = ucmd.get_full_fixture_path(path);
|
|
let file_metadata = metadata(tmp_dir_path);
|
|
file_metadata
|
|
.map(|i| {
|
|
i.modified()
|
|
.map(|x| {
|
|
let date_time: DateTime<Local> = x.into();
|
|
date_time.format("%b %d %H:%M %Y").to_string()
|
|
})
|
|
.unwrap_or_default()
|
|
})
|
|
.unwrap_or_default()
|
|
}
|
|
|
|
fn now_time() -> String {
|
|
Local::now().format("%b %d %H:%M %Y").to_string()
|
|
}
|
|
|
|
#[test]
|
|
fn test_without_any_options() {
|
|
let test_file_path = "test_one_page.log";
|
|
let expected_test_file_path = "test_one_page.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&[test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_numbering_option_with_number_width() {
|
|
let test_file_path = "test_num_page.log";
|
|
let expected_test_file_path = "test_num_page_2.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&["-n", "2", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_long_header_option() {
|
|
let test_file_path = "test_one_page.log";
|
|
let expected_test_file_path = "test_one_page_header.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
let header = "new file";
|
|
scenario
|
|
.args(&["--header=new file", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![
|
|
(&"{last_modified_time}".to_string(), &value),
|
|
(&"{header}".to_string(), &header.to_string()),
|
|
],
|
|
);
|
|
|
|
new_ucmd!()
|
|
.args(&["-h", header, test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![
|
|
(&"{last_modified_time}".to_string(), &value),
|
|
(&"{header}".to_string(), &header.to_string()),
|
|
],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_double_space_option() {
|
|
let test_file_path = "test_one_page.log";
|
|
let expected_test_file_path = "test_one_page_double_line.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&["-d", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
|
|
new_ucmd!()
|
|
.args(&["--double-space", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_first_line_number_option() {
|
|
let test_file_path = "test_one_page.log";
|
|
let expected_test_file_path = "test_one_page_first_line.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&["-N", "5", "-n", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_first_line_number_long_option() {
|
|
let test_file_path = "test_one_page.log";
|
|
let expected_test_file_path = "test_one_page_first_line.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&["--first-line-number=5", "-n", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_number_option_with_custom_separator_char() {
|
|
let test_file_path = "test_num_page.log";
|
|
let expected_test_file_path = "test_num_page_char.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&["-nc", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_number_option_with_custom_separator_char_and_width() {
|
|
let test_file_path = "test_num_page.log";
|
|
let expected_test_file_path = "test_num_page_char_one.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&["-nc1", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_valid_page_ranges() {
|
|
let test_file_path = "test_num_page.log";
|
|
let mut scenario = new_ucmd!();
|
|
scenario
|
|
.args(&["--pages=20:5", test_file_path])
|
|
.fails()
|
|
.stderr_is("pr: invalid --pages argument '20:5'")
|
|
.stdout_is("");
|
|
new_ucmd!()
|
|
.args(&["--pages=1:5", test_file_path])
|
|
.succeeds();
|
|
new_ucmd!().args(&["--pages=1", test_file_path]).succeeds();
|
|
new_ucmd!()
|
|
.args(&["--pages=-1:5", test_file_path])
|
|
.fails()
|
|
.stderr_is("pr: invalid --pages argument '-1:5'")
|
|
.stdout_is("");
|
|
new_ucmd!()
|
|
.args(&["--pages=1:-5", test_file_path])
|
|
.fails()
|
|
.stderr_is("pr: invalid --pages argument '1:-5'")
|
|
.stdout_is("");
|
|
new_ucmd!()
|
|
.args(&["--pages=5:1", test_file_path])
|
|
.fails()
|
|
.stderr_is("pr: invalid --pages argument '5:1'")
|
|
.stdout_is("");
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_page_range() {
|
|
let test_file_path = "test.log";
|
|
let expected_test_file_path = "test_page_range_1.log.expected";
|
|
let expected_test_file_path1 = "test_page_range_2.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&["--pages=15", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
|
|
new_ucmd!()
|
|
.args(&["+15", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
|
|
new_ucmd!()
|
|
.args(&["--pages=15:17", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path1,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
|
|
new_ucmd!()
|
|
.args(&["+15:17", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path1,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_no_header_trailer_option() {
|
|
let test_file_path = "test_one_page.log";
|
|
let expected_test_file_path = "test_one_page_no_ht.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&["-t", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_page_length_option() {
|
|
let test_file_path = "test.log";
|
|
let expected_test_file_path = "test_page_length.log.expected";
|
|
let expected_test_file_path1 = "test_page_length1.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&["--pages=2:3", "-l", "100", "-n", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
|
|
new_ucmd!()
|
|
.args(&["--pages=2:3", "-l", "5", "-n", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_fixture(expected_test_file_path1);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_suppress_error_option() {
|
|
let test_file_path = "test_num_page.log";
|
|
let mut scenario = new_ucmd!();
|
|
scenario
|
|
.args(&["--pages=20:5", "-r", test_file_path])
|
|
.fails()
|
|
.stderr_is("")
|
|
.stdout_is("");
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_stdin() {
|
|
let expected_file_path = "stdin.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let now = now_time();
|
|
scenario
|
|
.pipe_in_fixture("stdin.log")
|
|
.args(&["--pages=1:2", "-n", "-"])
|
|
.run()
|
|
.stdout_is_templated_fixture(
|
|
expected_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &now)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_column() {
|
|
let test_file_path = "column.log";
|
|
let expected_test_file_path = "column.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&["--pages=3:5", "--column=3", "-n", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
|
|
new_ucmd!()
|
|
.args(&["--pages=3:5", "-3", "-n", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_column_across_option() {
|
|
let test_file_path = "column.log";
|
|
let expected_test_file_path = "column_across.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&["--pages=3:5", "--column=3", "-a", "-n", test_file_path])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_column_across_option_and_column_separator() {
|
|
let test_file_path = "column.log";
|
|
let expected_test_file_path = "column_across_sep.log.expected";
|
|
let expected_test_file_path1 = "column_across_sep1.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&[
|
|
"--pages=3:5",
|
|
"--column=3",
|
|
"-s|",
|
|
"-a",
|
|
"-n",
|
|
test_file_path,
|
|
])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
|
|
new_ucmd!()
|
|
.args(&[
|
|
"--pages=3:5",
|
|
"--column=3",
|
|
"-Sdivide",
|
|
"-a",
|
|
"-n",
|
|
test_file_path,
|
|
])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path1,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_mpr() {
|
|
let test_file_path = "column.log";
|
|
let test_file_path1 = "hosts.log";
|
|
let expected_test_file_path = "mpr.log.expected";
|
|
let expected_test_file_path1 = "mpr1.log.expected";
|
|
let expected_test_file_path2 = "mpr2.log.expected";
|
|
let now = now_time();
|
|
new_ucmd!()
|
|
.args(&["--pages=1:2", "-m", "-n", test_file_path, test_file_path1])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &now)],
|
|
);
|
|
|
|
let now = now_time();
|
|
new_ucmd!()
|
|
.args(&["--pages=2:4", "-m", "-n", test_file_path, test_file_path1])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path1,
|
|
vec![(&"{last_modified_time}".to_string(), &now)],
|
|
);
|
|
|
|
let now = now_time();
|
|
new_ucmd!()
|
|
.args(&[
|
|
"--pages=1:2",
|
|
"-l",
|
|
"100",
|
|
"-n",
|
|
"-m",
|
|
test_file_path,
|
|
test_file_path1,
|
|
test_file_path,
|
|
])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path2,
|
|
vec![(&"{last_modified_time}".to_string(), &now)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_mpr_and_column_options() {
|
|
let test_file_path = "column.log";
|
|
new_ucmd!()
|
|
.args(&["--column=2", "-m", "-n", test_file_path])
|
|
.fails()
|
|
.stderr_is("pr: cannot specify number of columns when printing in parallel")
|
|
.stdout_is("");
|
|
|
|
new_ucmd!()
|
|
.args(&["-a", "-m", "-n", test_file_path])
|
|
.fails()
|
|
.stderr_is("pr: cannot specify both printing across and printing in parallel")
|
|
.stdout_is("");
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_offset_space_option() {
|
|
let test_file_path = "column.log";
|
|
let expected_test_file_path = "column_spaces_across.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
scenario
|
|
.args(&[
|
|
"-o",
|
|
"5",
|
|
"--pages=3:5",
|
|
"--column=3",
|
|
"-a",
|
|
"-n",
|
|
test_file_path,
|
|
])
|
|
.succeeds()
|
|
.stdout_is_templated_fixture(
|
|
expected_test_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &value)],
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_pr_core_utils_tests() {
|
|
let test_cases = vec![
|
|
("", vec!["0Ft"], vec!["0F"], 0),
|
|
("", vec!["0Fnt"], vec!["0F"], 0),
|
|
("+3", vec!["0Ft"], vec!["3-0F"], 0),
|
|
("+3 -f", vec!["0Ft"], vec!["3f-0F"], 0),
|
|
("-a -3", vec!["0Ft"], vec!["a3-0F"], 0),
|
|
("-a -3 -f", vec!["0Ft"], vec!["a3f-0F"], 0),
|
|
("-a -3 -f", vec!["0Fnt"], vec!["a3f-0F"], 0),
|
|
("+3 -a -3 -f", vec!["0Ft"], vec!["3a3f-0F"], 0),
|
|
("-l 24", vec!["FnFn"], vec!["l24-FF"], 0),
|
|
("-W 20 -l24 -f", vec!["tFFt-ll"], vec!["W20l24f-ll"], 0),
|
|
];
|
|
|
|
for test_case in test_cases {
|
|
let (flags, input_file, expected_file, return_code) = test_case;
|
|
let mut scenario = new_ucmd!();
|
|
let input_file_path = input_file.get(0).unwrap();
|
|
let test_file_path = expected_file.get(0).unwrap();
|
|
let value = file_last_modified_time(&scenario, test_file_path);
|
|
let mut arguments: Vec<&str> = flags
|
|
.split(' ')
|
|
.into_iter()
|
|
.filter(|i| i.trim() != "")
|
|
.collect::<Vec<&str>>();
|
|
|
|
arguments.extend(input_file.clone());
|
|
|
|
let scenario_with_args = scenario.args(&arguments);
|
|
|
|
let scenario_with_expected_status = if return_code == 0 {
|
|
scenario_with_args.succeeds()
|
|
} else {
|
|
scenario_with_args.fails()
|
|
};
|
|
|
|
scenario_with_expected_status.stdout_is_templated_fixture(
|
|
test_file_path,
|
|
vec![
|
|
(&"{last_modified_time}".to_string(), &value),
|
|
(&"{file_name}".to_string(), &input_file_path.to_string()),
|
|
],
|
|
);
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test_with_join_lines_option() {
|
|
let test_file_1 = "hosts.log";
|
|
let test_file_2 = "test.log";
|
|
let expected_file_path = "joined.log.expected";
|
|
let mut scenario = new_ucmd!();
|
|
let now = now_time();
|
|
scenario
|
|
.args(&["+1:2", "-J", "-m", test_file_1, test_file_2])
|
|
.run()
|
|
.stdout_is_templated_fixture(
|
|
expected_file_path,
|
|
vec![(&"{last_modified_time}".to_string(), &now)],
|
|
);
|
|
}
|