mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
382 lines
9.7 KiB
Rust
382 lines
9.7 KiB
Rust
//! Tests for custom cargo commands and other global command features.
|
|
|
|
use std::env;
|
|
use std::fs::{self, File};
|
|
use std::io::prelude::*;
|
|
use std::path::{Path, PathBuf};
|
|
use std::str;
|
|
|
|
use cargo;
|
|
use cargo_test_support::cargo_process;
|
|
use cargo_test_support::paths::{self, CargoPathExt};
|
|
use cargo_test_support::registry::Package;
|
|
use cargo_test_support::{basic_bin_manifest, basic_manifest, cargo_exe, project, Project};
|
|
|
|
#[cfg_attr(windows, allow(dead_code))]
|
|
enum FakeKind<'a> {
|
|
Executable,
|
|
Symlink { target: &'a Path },
|
|
}
|
|
|
|
/// Adds 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 {
|
|
let path = proj
|
|
.root()
|
|
.join(dir)
|
|
.join(&format!("{}{}", name, env::consts::EXE_SUFFIX));
|
|
path.parent().unwrap().mkdir_p();
|
|
match *kind {
|
|
FakeKind::Executable => {
|
|
File::create(&path).unwrap();
|
|
make_executable(&path);
|
|
}
|
|
FakeKind::Symlink { target } => {
|
|
make_symlink(&path, target);
|
|
}
|
|
}
|
|
return proj;
|
|
|
|
#[cfg(unix)]
|
|
fn make_executable(p: &Path) {
|
|
use std::os::unix::prelude::*;
|
|
|
|
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) {
|
|
::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> {
|
|
env::split_paths(&env::var_os("PATH").unwrap_or_default()).collect()
|
|
}
|
|
|
|
#[cargo_test]
|
|
fn list_commands_with_descriptions() {
|
|
let p = project().build();
|
|
p.cargo("--list")
|
|
.with_stdout_contains(
|
|
" build Compile a local package and all of its dependencies",
|
|
)
|
|
// Assert that `read-manifest` prints the right one-line description followed by another
|
|
// command, indented.
|
|
.with_stdout_contains(
|
|
" read-manifest Print a JSON representation of a Cargo.toml manifest.",
|
|
)
|
|
.run();
|
|
}
|
|
|
|
#[cargo_test]
|
|
fn list_command_looks_at_path() {
|
|
let proj = project().build();
|
|
let proj = fake_file(
|
|
proj,
|
|
Path::new("path-test"),
|
|
"cargo-1",
|
|
&FakeKind::Executable,
|
|
);
|
|
|
|
let mut path = path();
|
|
path.push(proj.root().join("path-test"));
|
|
let path = env::join_paths(path.iter()).unwrap();
|
|
let output = cargo_process("-v --list")
|
|
.env("PATH", &path)
|
|
.exec_with_output()
|
|
.unwrap();
|
|
let output = str::from_utf8(&output.stdout).unwrap();
|
|
assert!(
|
|
output.contains("\n 1 "),
|
|
"missing 1: {}",
|
|
output
|
|
);
|
|
}
|
|
|
|
// Windows and symlinks don't currently mix well.
|
|
#[cfg(unix)]
|
|
#[cargo_test]
|
|
fn list_command_resolves_symlinks() {
|
|
let proj = project().build();
|
|
let proj = fake_file(
|
|
proj,
|
|
Path::new("path-test"),
|
|
"cargo-2",
|
|
&FakeKind::Symlink {
|
|
target: &cargo_exe(),
|
|
},
|
|
);
|
|
|
|
let mut path = path();
|
|
path.push(proj.root().join("path-test"));
|
|
let path = env::join_paths(path.iter()).unwrap();
|
|
let output = cargo_process("-v --list")
|
|
.env("PATH", &path)
|
|
.exec_with_output()
|
|
.unwrap();
|
|
let output = str::from_utf8(&output.stdout).unwrap();
|
|
assert!(
|
|
output.contains("\n 2 "),
|
|
"missing 2: {}",
|
|
output
|
|
);
|
|
}
|
|
|
|
#[cargo_test]
|
|
fn find_closest_biuld_to_build() {
|
|
cargo_process("biuld")
|
|
.with_status(101)
|
|
.with_stderr_contains(
|
|
"\
|
|
error: no such subcommand: `biuld`
|
|
|
|
<tab>Did you mean `build`?
|
|
",
|
|
)
|
|
.run();
|
|
|
|
// 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();
|
|
|
|
cargo_process("install cargo-biuld").run();
|
|
cargo_process("biuld")
|
|
.with_stdout("Similar, but not identical to, build\n")
|
|
.run();
|
|
cargo_process("--list")
|
|
.with_stdout_contains(
|
|
" build Compile a local package and all of its dependencies\n",
|
|
)
|
|
.with_stdout_contains(" biuld\n")
|
|
.run();
|
|
}
|
|
|
|
#[cargo_test]
|
|
fn find_closest_alias() {
|
|
let root = paths::root();
|
|
let my_home = root.join("my_home");
|
|
fs::create_dir(&my_home).unwrap();
|
|
File::create(&my_home.join("config"))
|
|
.unwrap()
|
|
.write_all(
|
|
br#"
|
|
[alias]
|
|
myalias = "build"
|
|
"#,
|
|
)
|
|
.unwrap();
|
|
|
|
cargo_process("myalais")
|
|
.env("CARGO_HOME", &my_home)
|
|
.with_status(101)
|
|
.with_stderr_contains(
|
|
"\
|
|
error: no such subcommand: `myalais`
|
|
|
|
<tab>Did you mean `myalias`?
|
|
",
|
|
)
|
|
.run();
|
|
|
|
// But, if no alias is defined, it must not suggest one!
|
|
cargo_process("myalais")
|
|
.with_status(101)
|
|
.with_stderr_contains(
|
|
"\
|
|
error: no such subcommand: `myalais`
|
|
",
|
|
)
|
|
.with_stderr_does_not_contain(
|
|
"\
|
|
<tab>Did you mean `myalias`?
|
|
",
|
|
)
|
|
.run();
|
|
}
|
|
|
|
// If a subcommand is more than an edit distance of 3 away, we don't make a suggestion.
|
|
#[cargo_test]
|
|
fn find_closest_dont_correct_nonsense() {
|
|
cargo_process("there-is-no-way-that-there-is-a-command-close-to-this")
|
|
.cwd(&paths::root())
|
|
.with_status(101)
|
|
.with_stderr(
|
|
"[ERROR] no such subcommand: \
|
|
`there-is-no-way-that-there-is-a-command-close-to-this`
|
|
",
|
|
)
|
|
.run();
|
|
}
|
|
|
|
#[cargo_test]
|
|
fn displays_subcommand_on_error() {
|
|
cargo_process("invalid-command")
|
|
.with_status(101)
|
|
.with_stderr("[ERROR] no such subcommand: `invalid-command`\n")
|
|
.run();
|
|
}
|
|
|
|
#[cargo_test]
|
|
fn override_cargo_home() {
|
|
let root = paths::root();
|
|
let my_home = root.join("my_home");
|
|
fs::create_dir(&my_home).unwrap();
|
|
File::create(&my_home.join("config"))
|
|
.unwrap()
|
|
.write_all(
|
|
br#"
|
|
[cargo-new]
|
|
name = "foo"
|
|
email = "bar"
|
|
git = false
|
|
"#,
|
|
)
|
|
.unwrap();
|
|
|
|
cargo_process("new foo")
|
|
.env("USER", "foo")
|
|
.env("CARGO_HOME", &my_home)
|
|
.run();
|
|
|
|
let toml = paths::root().join("foo/Cargo.toml");
|
|
let mut contents = String::new();
|
|
File::open(&toml)
|
|
.unwrap()
|
|
.read_to_string(&mut contents)
|
|
.unwrap();
|
|
assert!(contents.contains(r#"authors = ["foo <bar>"]"#));
|
|
}
|
|
|
|
#[cargo_test]
|
|
fn cargo_subcommand_env() {
|
|
let src = format!(
|
|
r#"
|
|
use std::env;
|
|
|
|
fn main() {{
|
|
println!("{{}}", env::var("{}").unwrap());
|
|
}}
|
|
"#,
|
|
cargo::CARGO_ENV
|
|
);
|
|
|
|
let p = project()
|
|
.at("cargo-envtest")
|
|
.file("Cargo.toml", &basic_bin_manifest("cargo-envtest"))
|
|
.file("src/main.rs", &src)
|
|
.build();
|
|
|
|
let target_dir = p.target_debug_dir();
|
|
|
|
p.cargo("build").run();
|
|
assert!(p.bin("cargo-envtest").is_file());
|
|
|
|
let cargo = cargo_exe().canonicalize().unwrap();
|
|
let mut path = path();
|
|
path.push(target_dir);
|
|
let path = env::join_paths(path.iter()).unwrap();
|
|
|
|
cargo_process("envtest")
|
|
.env("PATH", &path)
|
|
.with_stdout(cargo.to_str().unwrap())
|
|
.run();
|
|
}
|
|
|
|
#[cargo_test]
|
|
fn cargo_subcommand_args() {
|
|
let p = project()
|
|
.at("cargo-foo")
|
|
.file("Cargo.toml", &basic_manifest("cargo-foo", "0.0.1"))
|
|
.file(
|
|
"src/main.rs",
|
|
r#"
|
|
fn main() {
|
|
let args: Vec<_> = ::std::env::args().collect();
|
|
println!("{:?}", args);
|
|
}
|
|
"#,
|
|
)
|
|
.build();
|
|
|
|
p.cargo("build").run();
|
|
let cargo_foo_bin = p.bin("cargo-foo");
|
|
assert!(cargo_foo_bin.is_file());
|
|
|
|
let mut path = path();
|
|
path.push(p.target_debug_dir());
|
|
let path = env::join_paths(path.iter()).unwrap();
|
|
|
|
cargo_process("foo bar -v --help")
|
|
.env("PATH", &path)
|
|
.with_stdout(
|
|
r#"["[CWD]/cargo-foo/target/debug/cargo-foo[EXE]", "foo", "bar", "-v", "--help"]"#,
|
|
)
|
|
.run();
|
|
}
|
|
|
|
#[cargo_test]
|
|
fn cargo_help() {
|
|
cargo_process("").run();
|
|
cargo_process("help").run();
|
|
cargo_process("-h").run();
|
|
cargo_process("help build").run();
|
|
cargo_process("build -h").run();
|
|
cargo_process("help help").run();
|
|
}
|
|
|
|
#[cargo_test]
|
|
fn cargo_help_external_subcommand() {
|
|
Package::new("cargo-fake-help", "1.0.0")
|
|
.file(
|
|
"src/main.rs",
|
|
r#"
|
|
fn main() {
|
|
if ::std::env::args().nth(2) == Some(String::from("--help")) {
|
|
println!("fancy help output");
|
|
}
|
|
}"#,
|
|
)
|
|
.publish();
|
|
cargo_process("install cargo-fake-help").run();
|
|
cargo_process("help fake-help")
|
|
.with_stdout("fancy help output\n")
|
|
.run();
|
|
}
|
|
|
|
#[cargo_test]
|
|
fn explain() {
|
|
cargo_process("--explain E0001")
|
|
.with_stdout_contains(
|
|
"This error suggests that the expression arm corresponding to the noted pattern",
|
|
)
|
|
.run();
|
|
}
|
|
|
|
// Test that the output of `cargo -Z help` shows a different help screen with
|
|
// all the `-Z` flags.
|
|
#[cargo_test]
|
|
fn z_flags_help() {
|
|
cargo_process("-Z help")
|
|
.with_stdout_contains(" -Z unstable-options -- Allow the usage of unstable options")
|
|
.run();
|
|
}
|