mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
5e2e2e8ab6
* fix: use settings to allow leading hyphen and trailing var arg fixes: https://github.com/uutils/coreutils/issues/1873 * test: add test cases * test: add more test cases with different order in hyphen values * chore: add comment to explain why we need TrailingVarArg
230 lines
4.4 KiB
Rust
230 lines
4.4 KiB
Rust
use crate::common::util::*;
|
|
|
|
#[test]
|
|
fn test_default() {
|
|
//CmdResult.stdout_only(...) trims trailing newlines
|
|
assert_eq!("hi\n", new_ucmd!().arg("hi").succeeds().no_stderr().stdout);
|
|
}
|
|
|
|
#[test]
|
|
fn test_no_trailing_newline() {
|
|
//CmdResult.stdout_only(...) trims trailing newlines
|
|
assert_eq!(
|
|
"hi",
|
|
new_ucmd!()
|
|
.arg("-n")
|
|
.arg("hi")
|
|
.succeeds()
|
|
.no_stderr()
|
|
.stdout
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_alert() {
|
|
new_ucmd!()
|
|
.args(&["-e", "\\a"])
|
|
.succeeds()
|
|
.stdout_only("\x07\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_backslash() {
|
|
new_ucmd!()
|
|
.args(&["-e", "\\\\"])
|
|
.succeeds()
|
|
.stdout_only("\\\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_backspace() {
|
|
new_ucmd!()
|
|
.args(&["-e", "\\b"])
|
|
.succeeds()
|
|
.stdout_only("\x08\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_carriage_return() {
|
|
new_ucmd!()
|
|
.args(&["-e", "\\r"])
|
|
.succeeds()
|
|
.stdout_only("\r\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_escape() {
|
|
new_ucmd!()
|
|
.args(&["-e", "\\e"])
|
|
.succeeds()
|
|
.stdout_only("\x1B\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_form_feed() {
|
|
new_ucmd!()
|
|
.args(&["-e", "\\f"])
|
|
.succeeds()
|
|
.stdout_only("\x0C\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_hex() {
|
|
new_ucmd!()
|
|
.args(&["-e", "\\x41"])
|
|
.succeeds()
|
|
.stdout_only("A\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_short_hex() {
|
|
new_ucmd!()
|
|
.args(&["-e", "foo\\xa bar"])
|
|
.succeeds()
|
|
.stdout_only("foo\n bar\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_no_hex() {
|
|
new_ucmd!()
|
|
.args(&["-e", "foo\\x bar"])
|
|
.succeeds()
|
|
.stdout_only("foo\\x bar\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_one_slash() {
|
|
new_ucmd!()
|
|
.args(&["-e", "foo\\ bar"])
|
|
.succeeds()
|
|
.stdout_only("foo\\ bar\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_one_slash_multi() {
|
|
new_ucmd!()
|
|
.args(&["-e", "foo\\", "bar"])
|
|
.succeeds()
|
|
.stdout_only("foo\\ bar\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_newline() {
|
|
new_ucmd!()
|
|
.args(&["-e", "\\na"])
|
|
.succeeds()
|
|
.stdout_only("\na\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_no_further_output() {
|
|
new_ucmd!()
|
|
.args(&["-e", "a\\cb", "c"])
|
|
.succeeds()
|
|
.stdout_only("a\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_octal() {
|
|
new_ucmd!()
|
|
.args(&["-e", "\\0100"])
|
|
.succeeds()
|
|
.stdout_only("@\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_short_octal() {
|
|
new_ucmd!()
|
|
.args(&["-e", "foo\\040bar"])
|
|
.succeeds()
|
|
.stdout_only("foo bar\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_no_octal() {
|
|
new_ucmd!()
|
|
.args(&["-e", "foo\\0 bar"])
|
|
.succeeds()
|
|
.stdout_only("foo\\0 bar\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_tab() {
|
|
new_ucmd!()
|
|
.args(&["-e", "\\t"])
|
|
.succeeds()
|
|
.stdout_only("\t\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_escape_vertical_tab() {
|
|
new_ucmd!()
|
|
.args(&["-e", "\\v"])
|
|
.succeeds()
|
|
.stdout_only("\x0B\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_disable_escapes() {
|
|
let input_str = "\\a \\\\ \\b \\r \\e \\f \\x41 \\n a\\cb \\u0100 \\t \\v";
|
|
new_ucmd!()
|
|
.arg("-E")
|
|
.arg(input_str)
|
|
.succeeds()
|
|
.stdout_only(format!("{}\n", input_str));
|
|
}
|
|
|
|
#[test]
|
|
fn test_hyphen_value() {
|
|
new_ucmd!().arg("-abc").succeeds().stdout_is("-abc\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_multiple_hyphen_values() {
|
|
new_ucmd!()
|
|
.args(&["-abc", "-def", "-edf"])
|
|
.succeeds()
|
|
.stdout_is("-abc -def -edf\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_hyphen_values_inside_string() {
|
|
new_ucmd!()
|
|
.arg("'\"\n'CXXFLAGS=-g -O2'\n\"'")
|
|
.succeeds()
|
|
.stdout
|
|
.contains("CXXFLAGS");
|
|
}
|
|
|
|
#[test]
|
|
fn test_hyphen_values_at_start() {
|
|
let result = new_ucmd!()
|
|
.arg("-E")
|
|
.arg("-test")
|
|
.arg("araba")
|
|
.arg("-merci")
|
|
.run();
|
|
|
|
assert!(result.success);
|
|
assert_eq!(false, result.stdout.contains("-E"));
|
|
assert_eq!(result.stdout, "-test araba -merci\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_hyphen_values_between() {
|
|
let result = new_ucmd!().arg("test").arg("-E").arg("araba").run();
|
|
|
|
assert!(result.success);
|
|
assert_eq!(result.stdout, "test -E araba\n");
|
|
|
|
let result = new_ucmd!()
|
|
.arg("dumdum ")
|
|
.arg("dum dum dum")
|
|
.arg("-e")
|
|
.arg("dum")
|
|
.run();
|
|
|
|
assert!(result.success);
|
|
assert_eq!(result.stdout, "dumdum dum dum dum -e dum\n");
|
|
assert_eq!(true, result.stdout.contains("-e"));
|
|
}
|