2015-11-16 05:25:01 +00:00
|
|
|
use common::util::*;
|
|
|
|
|
|
|
|
static UTIL_NAME: &'static str = "tr";
|
2016-07-29 21:26:32 +00:00
|
|
|
fn new_ucmd() -> UCommand {
|
|
|
|
TestScenario::new(UTIL_NAME).ucmd()
|
|
|
|
}
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_toupper() {
|
2016-07-29 21:26:32 +00:00
|
|
|
let result = new_ucmd()
|
|
|
|
.args(&["a-z", "A-Z"]).run_piped_stdin("!abcd!");
|
2015-11-16 05:25:01 +00:00
|
|
|
assert_eq!(result.stdout, "!ABCD!");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_small_set2() {
|
2016-07-29 21:26:32 +00:00
|
|
|
let result = new_ucmd()
|
|
|
|
.args(&["0-9", "X"]).run_piped_stdin("@0123456789");
|
2015-11-16 05:25:01 +00:00
|
|
|
assert_eq!(result.stdout, "@XXXXXXXXXX");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unicode() {
|
2016-07-29 21:26:32 +00:00
|
|
|
let result = new_ucmd()
|
|
|
|
.args(&[", ┬─┬", "╯︵┻━┻"])
|
2015-11-16 05:25:01 +00:00
|
|
|
.run_piped_stdin("(,°□°), ┬─┬".as_bytes());
|
|
|
|
assert_eq!(result.stdout, "(╯°□°)╯︵┻━┻");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_delete() {
|
2016-07-29 21:26:32 +00:00
|
|
|
let result = new_ucmd()
|
|
|
|
.args(&["-d", "a-z"]).run_piped_stdin("aBcD");
|
2015-11-16 05:25:01 +00:00
|
|
|
assert_eq!(result.stdout, "BD");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_delete_complement() {
|
2016-07-29 21:26:32 +00:00
|
|
|
let result = new_ucmd()
|
|
|
|
.args(&["-d", "-c", "a-z"]).run_piped_stdin("aBcD");
|
2015-11-16 05:25:01 +00:00
|
|
|
assert_eq!(result.stdout, "ac");
|
|
|
|
}
|