cargo/tests/testsuite/cargo_command.rs

293 lines
7.5 KiB
Rust
Raw Normal View History

2015-02-06 07:27:53 +00:00
use std::env;
use std::fs::{self, File};
use std::io::prelude::*;
use std::path::{Path, PathBuf};
use std::str;
use cargo;
use cargotest::cargo_process;
use cargotest::support::paths::{self, CargoPathExt};
use cargotest::support::registry::Package;
2018-03-14 15:17:44 +00:00
use cargotest::support::{basic_bin_manifest, execs, project, Project};
use hamcrest::{assert_that, existing_file};
2018-03-14 15:17:44 +00:00
#[cfg_attr(windows, allow(dead_code))]
enum FakeKind<'a> {
Executable,
2018-03-14 15:17:44 +00:00
Symlink { target: &'a Path },
}
/// Add an empty file with executable flags (and platform-dependent suffix).
/// TODO: move this to `Project` if other cases using this emerge.
fn fake_file(proj: Project, dir: &Path, name: &str, kind: &FakeKind) -> Project {
2018-03-14 15:17:44 +00:00
let path = proj.root()
.join(dir)
.join(&format!("{}{}", name, env::consts::EXE_SUFFIX));
path.parent().unwrap().mkdir_p();
2017-09-24 14:26:37 +00:00
match *kind {
FakeKind::Executable => {
File::create(&path).unwrap();
make_executable(&path);
2018-03-14 15:17:44 +00:00
}
FakeKind::Symlink { target } => {
make_symlink(&path, target);
}
}
return proj;
#[cfg(unix)]
fn make_executable(p: &Path) {
use std::os::unix::prelude::*;
2016-04-19 18:59:55 +00:00
let mut perms = fs::metadata(p).unwrap().permissions();
let mode = perms.mode();
perms.set_mode(mode | 0o111);
fs::set_permissions(p, perms).unwrap();
}
#[cfg(windows)]
fn make_executable(_: &Path) {}
#[cfg(unix)]
fn make_symlink(p: &Path, t: &Path) {
2018-03-14 15:17:44 +00:00
::std::os::unix::fs::symlink(t, p).expect("Failed to create symlink");
}
#[cfg(windows)]
fn make_symlink(_: &Path, _: &Path) {
panic!("Not supported")
}
}
fn path() -> Vec<PathBuf> {
2017-09-24 14:26:37 +00:00
env::split_paths(&env::var_os("PATH").unwrap_or_default()).collect()
2014-08-12 04:22:29 +00:00
}
2015-02-06 07:27:53 +00:00
#[test]
fn list_command_looks_at_path() {
let proj = project("list-non-overlapping").build();
2018-03-14 15:17:44 +00:00
let proj = fake_file(
proj,
Path::new("path-test"),
"cargo-1",
&FakeKind::Executable,
);
let mut pr = cargo_process();
let mut path = path();
2014-08-12 04:22:29 +00:00
path.push(proj.root().join("path-test"));
2015-02-06 07:27:53 +00:00
let path = env::join_paths(path.iter()).unwrap();
2018-03-14 15:17:44 +00:00
let output = pr.arg("-v").arg("--list").env("PATH", &path);
let output = output.exec_with_output().unwrap();
let output = str::from_utf8(&output.stdout).unwrap();
2018-03-14 15:17:44 +00:00
assert!(
output.contains("\n 1 "),
"missing 1: {}",
output
);
}
// windows and symlinks don't currently agree that well
#[cfg(unix)]
#[test]
fn list_command_resolves_symlinks() {
use cargotest::support::cargo_exe;
2016-04-19 20:55:37 +00:00
let proj = project("list-non-overlapping").build();
2018-03-14 15:17:44 +00:00
let proj = fake_file(
proj,
Path::new("path-test"),
"cargo-2",
&FakeKind::Symlink {
target: &cargo_exe(),
},
);
let mut pr = cargo_process();
let mut path = path();
path.push(proj.root().join("path-test"));
let path = env::join_paths(path.iter()).unwrap();
2018-03-14 15:17:44 +00:00
let output = pr.arg("-v").arg("--list").env("PATH", &path);
let output = output.exec_with_output().unwrap();
let output = str::from_utf8(&output.stdout).unwrap();
2018-03-14 15:17:44 +00:00
assert!(
output.contains("\n 2 "),
"missing 2: {}",
output
);
}
#[test]
fn find_closest_biuld_to_build() {
2018-03-14 15:17:44 +00:00
assert_that(
cargo_process().arg("biuld"),
execs().with_status(101).with_stderr_contains(
2018-03-14 15:17:44 +00:00
"\
error: no such subcommand: `biuld`
<tab>Did you mean `build`?
2018-03-14 15:17:44 +00:00
",
),
);
// But, if we actually have `biuld`, it must work!
// https://github.com/rust-lang/cargo/issues/5201
Package::new("cargo-biuld", "1.0.0")
.file(
"src/main.rs",
r#"
fn main() {
println!("Similar, but not identical to, build");
}
"#,
)
.publish();
assert_that(
cargo_process().arg("install").arg("cargo-biuld"),
execs().with_status(0),
);
assert_that(
cargo_process().arg("biuld"),
execs()
.with_status(0)
.with_stdout("Similar, but not identical to, build\n"),
);
assert_that(
cargo_process().arg("--list"),
execs()
.with_status(0)
.with_stdout_contains(" build\n")
.with_stdout_contains(" biuld\n"),
);
}
// if a subcommand is more than 3 edit distance away, we don't make a suggestion
#[test]
fn find_closest_dont_correct_nonsense() {
let mut pr = cargo_process();
pr.arg("there-is-no-way-that-there-is-a-command-close-to-this")
2018-03-14 15:17:44 +00:00
.cwd(&paths::root());
2018-03-14 15:17:44 +00:00
assert_that(
pr,
execs().with_status(101).with_stderr(
"[ERROR] no such subcommand: \
`there-is-no-way-that-there-is-a-command-close-to-this`
2018-03-14 15:17:44 +00:00
",
),
);
}
#[test]
fn displays_subcommand_on_error() {
let mut pr = cargo_process();
pr.arg("invalid-command");
2018-03-14 15:17:44 +00:00
assert_that(
pr,
execs().with_status(101).with_stderr(
"[ERROR] no such subcommand: `invalid-command`
",
),
);
}
#[test]
fn override_cargo_home() {
let root = paths::root();
let my_home = root.join("my_home");
fs::create_dir(&my_home).unwrap();
2018-03-14 15:17:44 +00:00
File::create(&my_home.join("config"))
.unwrap()
.write_all(
br#"
[cargo-new]
name = "foo"
email = "bar"
git = false
2018-03-14 15:17:44 +00:00
"#,
)
.unwrap();
2018-03-14 15:17:44 +00:00
assert_that(
cargo_process()
.arg("new")
.arg("foo")
.env("USER", "foo")
.env("CARGO_HOME", &my_home),
execs().with_status(0),
);
let toml = paths::root().join("foo/Cargo.toml");
let mut contents = String::new();
2018-03-14 15:17:44 +00:00
File::open(&toml)
.unwrap()
.read_to_string(&mut contents)
.unwrap();
assert!(contents.contains(r#"authors = ["foo <bar>"]"#));
}
#[test]
fn cargo_subcommand_env() {
use cargotest::support::cargo_exe;
2018-03-14 15:17:44 +00:00
let src = format!(
r#"
use std::env;
fn main() {{
println!("{{}}", env::var("{}").unwrap());
}}
2018-03-14 15:17:44 +00:00
"#,
cargo::CARGO_ENV
);
let p = project("cargo-envtest")
.file("Cargo.toml", &basic_bin_manifest("cargo-envtest"))
.file("src/main.rs", &src)
.build();
let target_dir = p.target_debug_dir();
assert_that(p.cargo("build"), execs().with_status(0));
assert_that(&p.bin("cargo-envtest"), existing_file());
let mut pr = cargo_process();
let cargo = cargo_exe().canonicalize().unwrap();
let mut path = path();
path.push(target_dir);
let path = env::join_paths(path.iter()).unwrap();
2018-03-14 15:17:44 +00:00
assert_that(
pr.arg("envtest").env("PATH", &path),
execs().with_status(0).with_stdout(cargo.to_str().unwrap()),
);
}
#[test]
fn cargo_help() {
2018-03-14 15:17:44 +00:00
assert_that(cargo_process(), execs().with_status(0));
assert_that(cargo_process().arg("help"), execs().with_status(0));
assert_that(cargo_process().arg("-h"), execs().with_status(0));
assert_that(
cargo_process().arg("help").arg("build"),
execs().with_status(0),
);
assert_that(
cargo_process().arg("build").arg("-h"),
execs().with_status(0),
);
assert_that(
cargo_process().arg("help").arg("help"),
execs().with_status(0),
);
}
#[test]
fn explain() {
2018-03-14 15:17:44 +00:00
assert_that(
cargo_process().arg("--explain").arg("E0001"),
execs().with_status(0).with_stdout_contains(
2018-03-14 15:43:41 +00:00
"This error suggests that the expression arm corresponding to the noted pattern",
2018-03-14 15:17:44 +00:00
),
);
}