2021-05-30 05:10:54 +00:00
|
|
|
// spell-checker:ignore (words) araba merci
|
|
|
|
|
2020-05-25 17:05:26 +00:00
|
|
|
use crate::common::util::*;
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_default() {
|
2021-04-17 09:22:49 +00:00
|
|
|
new_ucmd!().arg("hi").succeeds().stdout_only("hi\n");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_no_trailing_newline() {
|
2021-04-05 20:03:43 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.arg("-n")
|
|
|
|
.arg("hi")
|
|
|
|
.succeeds()
|
|
|
|
.no_stderr()
|
|
|
|
.stdout_only("hi");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2016-08-11 18:59:10 +00:00
|
|
|
fn test_escape_alert() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "\\a"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\x07\n");
|
2016-08-11 18:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_escape_backslash() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "\\\\"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\\\n");
|
2016-08-11 18:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_escape_backspace() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "\\b"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\x08\n");
|
2016-08-11 18:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_escape_carriage_return() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "\\r"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\r\n");
|
2016-08-11 18:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_escape_escape() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "\\e"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\x1B\n");
|
2016-08-11 18:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_escape_form_feed() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "\\f"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\x0C\n");
|
2016-08-11 18:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_escape_hex() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "\\x41"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("A\n");
|
2016-08-11 18:59:10 +00:00
|
|
|
}
|
|
|
|
|
2019-04-05 22:55:48 +00:00
|
|
|
#[test]
|
|
|
|
fn test_escape_short_hex() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "foo\\xa bar"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("foo\n bar\n");
|
2019-04-05 22:55:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_escape_no_hex() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "foo\\x bar"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("foo\\x bar\n");
|
2019-04-05 22:55:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_escape_one_slash() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "foo\\ bar"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("foo\\ bar\n");
|
2019-04-05 22:55:48 +00:00
|
|
|
}
|
|
|
|
|
2019-04-06 03:44:33 +00:00
|
|
|
#[test]
|
|
|
|
fn test_escape_one_slash_multi() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "foo\\", "bar"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("foo\\ bar\n");
|
2019-04-06 03:44:33 +00:00
|
|
|
}
|
|
|
|
|
2016-08-11 18:59:10 +00:00
|
|
|
#[test]
|
|
|
|
fn test_escape_newline() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "\\na"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\na\n");
|
2016-08-11 18:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_escape_no_further_output() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "a\\cb", "c"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("a\n");
|
2016-08-11 18:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_escape_octal() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "\\0100"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("@\n");
|
2016-08-11 18:59:10 +00:00
|
|
|
}
|
|
|
|
|
2019-04-05 22:55:48 +00:00
|
|
|
#[test]
|
|
|
|
fn test_escape_short_octal() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "foo\\040bar"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("foo bar\n");
|
2019-04-05 22:55:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2022-01-30 22:15:29 +00:00
|
|
|
fn test_escape_nul() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "foo\\0 bar"])
|
|
|
|
.succeeds()
|
2022-01-30 22:15:29 +00:00
|
|
|
.stdout_only("foo\0 bar\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_escape_octal_invalid_digit() {
|
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "foo\\08 bar"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("foo\u{0}8 bar\n");
|
2019-04-05 22:55:48 +00:00
|
|
|
}
|
|
|
|
|
2016-08-11 18:59:10 +00:00
|
|
|
#[test]
|
|
|
|
fn test_escape_tab() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "\\t"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\t\n");
|
2016-08-11 18:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_escape_vertical_tab() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.args(&["-e", "\\v"])
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\x0B\n");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_disable_escapes() {
|
2016-08-11 18:59:10 +00:00
|
|
|
let input_str = "\\a \\\\ \\b \\r \\e \\f \\x41 \\n a\\cb \\u0100 \\t \\v";
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-07-29 21:26:32 +00:00
|
|
|
.arg("-E")
|
2016-08-11 18:59:10 +00:00
|
|
|
.arg(input_str)
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only(format!("{}\n", input_str));
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
2021-03-23 08:40:05 +00:00
|
|
|
|
|
|
|
#[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!()
|
2021-05-30 05:10:54 +00:00
|
|
|
.arg("'\"\n'CXXFLAGS=-g -O2'\n\"'") // spell-checker:disable-line
|
2021-03-23 08:40:05 +00:00
|
|
|
.succeeds()
|
2021-05-31 03:55:28 +00:00
|
|
|
.stdout_contains("CXXFLAGS"); // spell-checker:disable-line
|
2021-03-23 08:40:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hyphen_values_at_start() {
|
2021-04-05 20:03:43 +00:00
|
|
|
new_ucmd!()
|
2021-03-23 08:40:05 +00:00
|
|
|
.arg("-E")
|
|
|
|
.arg("-test")
|
|
|
|
.arg("araba")
|
|
|
|
.arg("-merci")
|
2021-04-05 20:03:43 +00:00
|
|
|
.run()
|
|
|
|
.success()
|
|
|
|
.stdout_does_not_contain("-E")
|
|
|
|
.stdout_is("-test araba -merci\n");
|
2021-03-23 08:40:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hyphen_values_between() {
|
2021-04-05 20:03:43 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.arg("test")
|
|
|
|
.arg("-E")
|
|
|
|
.arg("araba")
|
|
|
|
.run()
|
|
|
|
.success()
|
|
|
|
.stdout_is("test -E araba\n");
|
2021-03-23 08:40:05 +00:00
|
|
|
|
2021-04-05 20:03:43 +00:00
|
|
|
new_ucmd!()
|
2021-03-23 08:40:05 +00:00
|
|
|
.arg("dumdum ")
|
|
|
|
.arg("dum dum dum")
|
|
|
|
.arg("-e")
|
|
|
|
.arg("dum")
|
2021-04-05 20:03:43 +00:00
|
|
|
.run()
|
|
|
|
.success()
|
|
|
|
.stdout_is("dumdum dum dum dum -e dum\n");
|
2021-03-23 08:40:05 +00:00
|
|
|
}
|