2015-11-16 05:25:01 +00:00
|
|
|
use common::util::*;
|
|
|
|
|
|
|
|
static UTIL_NAME: &'static str = "cat";
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_output_multi_files_print_all_chars() {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
2016-07-17 17:39:57 +00:00
|
|
|
ucmd.args(&["alpha.txt", "256.txt", "-A", "-n"])
|
2016-02-17 00:43:25 +00:00
|
|
|
.succeeds()
|
|
|
|
.stdout_only(" 1\tabcde$\n 2\tfghij$\n 3\tklmno$\n 4\tpqrst$\n \
|
2015-11-16 05:25:01 +00:00
|
|
|
5\tuvwxyz$\n 6\t^@^A^B^C^D^E^F^G^H^I$\n \
|
|
|
|
7\t^K^L^M^N^O^P^Q^R^S^T^U^V^W^X^Y^Z^[^\\^]^^^_ \
|
|
|
|
!\"#$%&\'()*+,-./0123456789:;\
|
|
|
|
<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~^?M-^@M-^AM-^\
|
|
|
|
BM-^CM-^DM-^EM-^FM-^GM-^HM-^IM-^JM-^KM-^LM-^MM-^NM-^OM-^PM-^QM-^RM-^SM-^TM-^UM-^V\
|
|
|
|
M-^WM-^XM-^YM-^ZM-^[M-^\\M-^]M-^^M-^_M- \
|
|
|
|
M-!M-\"M-#M-$M-%M-&M-\'M-(M-)M-*M-+M-,M--M-.M-/M-0M-1M-2M-3M-4M-5M-6M-7M-8M-9M-:\
|
|
|
|
M-;M-<M-=M->M-?M-@M-AM-BM-CM-DM-EM-FM-GM-HM-IM-JM-KM-LM-MM-NM-OM-PM-QM-RM-SM-TM-U\
|
|
|
|
M-VM-WM-XM-YM-ZM-[M-\\M-]M-^M-_M-`M-aM-bM-cM-dM-eM-fM-gM-hM-iM-jM-kM-lM-mM-nM-oM-\
|
|
|
|
pM-qM-rM-sM-tM-uM-vM-wM-xM-yM-zM-{M-|M-}M-~M-^?");
|
|
|
|
}
|
|
|
|
|
2016-02-17 00:43:25 +00:00
|
|
|
#[test]
|
|
|
|
fn test_stdin_show_nonprinting() {
|
|
|
|
for same_param in vec!["-v", "--show-nonprinting"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
|
|
|
ucmd.args(&vec![same_param])
|
|
|
|
.pipe_in("\t\0\n")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\t^@");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_stdin_show_tabs() {
|
|
|
|
for same_param in vec!["-T", "--show-tabs"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
2016-07-17 17:39:57 +00:00
|
|
|
ucmd.args(&[same_param])
|
2016-02-17 00:43:25 +00:00
|
|
|
.pipe_in("\t\0\n")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("^I\0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_stdin_show_ends() {
|
|
|
|
for same_param in vec!["-E", "--show-ends"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
2016-07-17 17:39:57 +00:00
|
|
|
ucmd.args(&[same_param,"-"])
|
2016-02-17 00:43:25 +00:00
|
|
|
.pipe_in("\t\0\n")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\t\0$");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-16 05:25:01 +00:00
|
|
|
#[test]
|
2016-02-17 07:06:28 +00:00
|
|
|
fn test_stdin_show_all() {
|
2016-02-17 00:43:25 +00:00
|
|
|
for same_param in vec!["-A", "--show-all"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
2016-07-17 17:39:57 +00:00
|
|
|
ucmd.args(&[same_param])
|
2016-02-17 00:43:25 +00:00
|
|
|
.pipe_in("\t\0\n")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("^I^@$");
|
|
|
|
}
|
|
|
|
}
|
2015-11-16 05:25:01 +00:00
|
|
|
|
2016-02-17 00:43:25 +00:00
|
|
|
#[test]
|
|
|
|
fn test_stdin_nonprinting_and_endofline() {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
2016-07-17 17:39:57 +00:00
|
|
|
ucmd.args(&["-e"])
|
2016-02-17 00:43:25 +00:00
|
|
|
.pipe_in("\t\0\n")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\t^@$\n");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
2016-02-17 07:06:28 +00:00
|
|
|
#[test]
|
2016-02-17 00:43:25 +00:00
|
|
|
fn test_stdin_nonprinting_and_tabs() {
|
2016-02-17 07:06:28 +00:00
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
2016-07-17 17:39:57 +00:00
|
|
|
ucmd.args(&["-t"])
|
2016-02-17 00:43:25 +00:00
|
|
|
.pipe_in("\t\0\n")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only("^I^@\n");
|
|
|
|
}
|
2016-02-17 07:06:28 +00:00
|
|
|
|
2016-02-17 00:43:25 +00:00
|
|
|
#[test]
|
|
|
|
fn test_stdin_squeeze_blank() {
|
|
|
|
for same_param in vec!["-s", "--squeeze-blank"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
|
|
|
ucmd.arg(same_param)
|
2016-07-17 17:39:57 +00:00
|
|
|
.pipe_in("\n\na\n\n\n\n\nb\n\n\n")
|
2016-02-17 00:43:25 +00:00
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\na\n\nb\n\n");
|
|
|
|
}
|
2016-02-17 07:06:28 +00:00
|
|
|
}
|
|
|
|
|
2015-11-16 05:25:01 +00:00
|
|
|
#[test]
|
|
|
|
fn test_stdin_number_non_blank() {
|
2016-02-17 00:43:25 +00:00
|
|
|
for same_param in vec!["-b", "--number-nonblank"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
|
|
|
ucmd.arg(same_param)
|
|
|
|
.arg("-")
|
2016-07-17 17:39:57 +00:00
|
|
|
.pipe_in("\na\nb\n\n\nc")
|
2016-02-17 00:43:25 +00:00
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\n 1\ta\n 2\tb\n\n\n 3\tc");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_non_blank_overrides_number() {
|
|
|
|
for same_param in vec!["-b", "--number-nonblank"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
2016-07-17 17:39:57 +00:00
|
|
|
ucmd.args(&[same_param, "-"])
|
|
|
|
.pipe_in("\na\nb\n\n\nc")
|
2016-02-17 00:43:25 +00:00
|
|
|
.succeeds()
|
|
|
|
.stdout_only("\n 1\ta\n 2\tb\n\n\n 3\tc");
|
|
|
|
}
|
|
|
|
}
|
2015-11-16 05:25:01 +00:00
|
|
|
|
2016-02-17 00:43:25 +00:00
|
|
|
#[test]
|
|
|
|
fn test_squeeze_blank_before_numbering() {
|
|
|
|
for same_param in vec!["-s", "--squeeze-blank"] {
|
|
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
2016-07-17 17:39:57 +00:00
|
|
|
ucmd.args(&[same_param, "-n", "-"])
|
2016-02-17 00:43:25 +00:00
|
|
|
.pipe_in("a\n\n\nb")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_only(" 1\ta\n 2\t\n 3\tb");
|
|
|
|
}
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|