74 lines
2.2 KiB
Rust
74 lines
2.2 KiB
Rust
// Integration tests for cargo-fmt.
|
|
|
|
use std::env;
|
|
use std::process::Command;
|
|
|
|
/// Run the cargo-fmt executable and return its output.
|
|
fn cargo_fmt(args: &[&str]) -> (String, String) {
|
|
let mut bin_dir = env::current_exe().unwrap();
|
|
bin_dir.pop(); // chop off test exe name
|
|
if bin_dir.ends_with("deps") {
|
|
bin_dir.pop();
|
|
}
|
|
let cmd = bin_dir.join(format!("cargo-fmt{}", env::consts::EXE_SUFFIX));
|
|
|
|
// Ensure cargo-fmt runs the rustfmt binary from the local target dir.
|
|
let path = env::var_os("PATH").unwrap_or_default();
|
|
let mut paths = env::split_paths(&path).collect::<Vec<_>>();
|
|
paths.insert(0, bin_dir);
|
|
let new_path = env::join_paths(paths).unwrap();
|
|
|
|
match Command::new(&cmd).args(args).env("PATH", new_path).output() {
|
|
Ok(output) => (
|
|
String::from_utf8(output.stdout).expect("utf-8"),
|
|
String::from_utf8(output.stderr).expect("utf-8"),
|
|
),
|
|
Err(e) => panic!("failed to run `{:?} {:?}`: {}", cmd, args, e),
|
|
}
|
|
}
|
|
|
|
macro_rules! assert_that {
|
|
($args:expr, $check:ident $check_args:tt) => {
|
|
let (stdout, stderr) = cargo_fmt($args);
|
|
if !stdout.$check$check_args {
|
|
panic!(
|
|
"Output not expected for cargo-fmt {:?}\n\
|
|
expected: {}{}\n\
|
|
actual stdout:\n{}\n\
|
|
actual stderr:\n{}",
|
|
$args,
|
|
stringify!($check),
|
|
stringify!($check_args),
|
|
stdout,
|
|
stderr
|
|
);
|
|
}
|
|
};
|
|
}
|
|
|
|
#[ignore]
|
|
#[test]
|
|
fn version() {
|
|
assert_that!(&["--version"], starts_with("rustfmt "));
|
|
assert_that!(&["--version"], starts_with("rustfmt "));
|
|
assert_that!(&["--", "-V"], starts_with("rustfmt "));
|
|
assert_that!(&["--", "--version"], starts_with("rustfmt "));
|
|
}
|
|
|
|
#[ignore]
|
|
#[test]
|
|
fn print_config() {
|
|
assert_that!(
|
|
&["--", "--print-config", "current", "."],
|
|
contains("max_width = ")
|
|
);
|
|
}
|
|
|
|
#[ignore]
|
|
#[test]
|
|
fn rustfmt_help() {
|
|
assert_that!(&["--", "--help"], contains("Format Rust code"));
|
|
assert_that!(&["--", "-h"], contains("Format Rust code"));
|
|
assert_that!(&["--", "--help=config"], contains("Configuration Options:"));
|
|
}
|