coreutils/seq/test.rs

31 lines
1.2 KiB
Rust
Raw Normal View History

2014-02-27 03:35:50 +00:00
use std::io::process::Process;
use std::str;
2014-02-05 19:46:28 +00:00
#[test]
fn test_count_up() {
2014-05-07 06:25:49 +00:00
let p = Process::output("build/seq", ["10".to_owned()]).unwrap();
let out = str::from_utf8(p.output.as_slice().to_owned()).unwrap().into_owned();
2014-05-07 06:25:49 +00:00
assert_eq!(out, "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n".to_owned());
2014-02-05 19:46:28 +00:00
}
#[test]
fn test_count_down() {
2014-05-07 06:25:49 +00:00
let p = Process::output("build/seq", ["--".to_owned(), "5".to_owned(), "-1".to_owned(), "1".to_owned()]).unwrap();
let out = str::from_utf8(p.output.as_slice().to_owned()).unwrap().into_owned();
2014-05-07 06:25:49 +00:00
assert_eq!(out, "5\n4\n3\n2\n1\n".to_owned());
2014-02-05 19:46:28 +00:00
}
#[test]
fn test_separator_and_terminator() {
2014-05-07 06:25:49 +00:00
let p = Process::output("build/seq", ["-s".to_owned(), ",".to_owned(), "-t".to_owned(), "!".to_owned(), "2".to_owned(), "6".to_owned()]).unwrap();
let out = str::from_utf8(p.output.as_slice().to_owned()).unwrap().into_owned();
2014-05-07 06:25:49 +00:00
assert_eq!(out, "2,3,4,5,6!".to_owned());
2014-02-05 19:46:28 +00:00
}
#[test]
fn test_equalize_widths() {
2014-05-07 06:25:49 +00:00
let p = Process::output("build/seq", ["-w".to_owned(), "5".to_owned(), "10".to_owned()]).unwrap();
let out = str::from_utf8(p.output.as_slice().to_owned()).unwrap().into_owned();
2014-05-07 06:25:49 +00:00
assert_eq!(out, "05\n06\n07\n08\n09\n10\n".to_owned());
2014-02-05 19:46:28 +00:00
}