extern crate subprocess;
use std::io::Read;
use std::path::PathBuf;
use subprocess::{Exec, Redirection};
fn just_echo_path() -> String {
let prog = PathBuf::from(&::std::env::args().next().unwrap());
prog.parent()
.unwrap()
.join("../just-echo")
.to_str()
.unwrap()
.to_owned()
}
#[test]
fn escape_args() {
for &arg in &[
"x", "", " ", " ", r" \ ", r" \\ ", r" \\\ ", r#"""#, r#""""#, r#"\"\\""#, "æ÷", "šđ",
"本", "❤", "☃",
] {
let mut handle = Exec::cmd(just_echo_path())
.arg(arg)
.stdout(Redirection::Pipe)
.start()
.unwrap();
let mut output = handle.stdout.take().unwrap();
let mut output_str = String::new();
output.read_to_string(&mut output_str).unwrap();
assert_eq!(output_str, arg);
}
}