cargo/tests/testsuite/install.rs

1500 lines
39 KiB
Rust
Raw Normal View History

2019-11-25 02:42:45 +00:00
//! Tests for the `cargo install` command.
use std::fs::{self, OpenOptions};
use std::io::prelude::*;
use cargo_test_support::cross_compile;
use cargo_test_support::git;
2019-09-12 19:52:46 +00:00
use cargo_test_support::install::{
assert_has_installed_exe, assert_has_not_installed_exe, cargo_home,
};
use cargo_test_support::paths;
use cargo_test_support::registry::Package;
use cargo_test_support::{
basic_manifest, cargo_process, project, symlink_supported, t, NO_SUCH_FILE_ERR_MSG,
};
fn pkg(name: &str, vers: &str) {
Package::new(name, vers)
.file("src/lib.rs", "")
.file(
"src/main.rs",
&format!("extern crate {}; fn main() {{}}", name),
2018-12-08 11:19:47 +00:00
)
.publish();
}
#[cargo_test]
fn simple() {
pkg("foo", "0.0.1");
cargo_process("install foo")
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[UPDATING] `[..]` index
2018-09-14 20:33:18 +00:00
[DOWNLOADING] crates ...
[DOWNLOADED] foo v0.0.1 (registry [..])
[INSTALLING] foo v0.0.1
Implement source redirection This commit implements a scheme for .cargo/config files where sources can be redirected to other sources. The purpose of this will be to override crates.io for a few use cases: * Replace it with a mirror site that is sync'd to crates.io * Replace it with a "directory source" or some other local source This major feature of this redirection, however, is that none of it is encoded into the lock file. If one source is redirected to another then it is assumed that packages from both are exactly the same (e.g. `foo v0.0.1` is the same in both location). The lock file simply encodes the canonical soure (e.g. crates.io) rather than the replacement source. In the end this means that Cargo.lock files can be generated from any replacement source and shipped to other locations without the lockfile oscillating about where packages came from. Eventually this support will be extended to `Cargo.toml` itself (which will be encoded into the lock file), but that support is not implemented today. The syntax for what was implemented today looks like: # .cargo/config [source.my-awesome-registry] registry = 'https://example.com/path/to/index' [source.crates-io] replace-with = 'my-awesome-registry' Each source will have a canonical name and will be configured with the various keys underneath it (today just 'registry' and 'directory' will be accepted). The global `crates-io` source represents crates from the standard registry, and this can be replaced with other mirror sources. All tests have been modified to use this new infrastructure instead of the old `registry.index` configuration. This configuration is now also deprecated and will emit an unconditional warning about how it will no longer be used in the future. Finally, all subcommands now use this "source map" except for `cargo publish`, which will always publish to the default registry (in this case crates.io).
2016-02-03 18:54:07 +00:00
[COMPILING] foo v0.0.1
[FINISHED] release [optimized] target(s) in [..]
[INSTALLING] [CWD]/home/.cargo/bin/foo[EXE]
2019-03-31 00:33:35 +00:00
[INSTALLED] package `foo v0.0.1` (executable `foo[EXE]`)
[WARNING] be sure to add `[..]` to your PATH to be able to run the installed binaries
",
2018-12-08 11:19:47 +00:00
)
.run();
assert_has_installed_exe(cargo_home(), "foo");
cargo_process("uninstall foo")
.with_stderr("[REMOVING] [CWD]/home/.cargo/bin/foo[EXE]")
.run();
assert_has_not_installed_exe(cargo_home(), "foo");
}
#[cargo_test]
2017-06-23 23:30:05 +00:00
fn multiple_pkgs() {
pkg("foo", "0.0.1");
2017-07-12 20:28:33 +00:00
pkg("bar", "0.0.2");
cargo_process("install foo bar baz")
.with_status(101)
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[UPDATING] `[..]` index
2018-09-14 20:33:18 +00:00
[DOWNLOADING] crates ...
[DOWNLOADED] foo v0.0.1 (registry `[CWD]/registry`)
2017-06-23 23:30:05 +00:00
[INSTALLING] foo v0.0.1
[COMPILING] foo v0.0.1
[FINISHED] release [optimized] target(s) in [..]
[INSTALLING] [CWD]/home/.cargo/bin/foo[EXE]
2019-03-31 00:33:35 +00:00
[INSTALLED] package `foo v0.0.1` (executable `foo[EXE]`)
2018-09-14 20:33:18 +00:00
[DOWNLOADING] crates ...
[DOWNLOADED] bar v0.0.2 (registry `[CWD]/registry`)
2017-07-12 20:28:33 +00:00
[INSTALLING] bar v0.0.2
[COMPILING] bar v0.0.2
2017-06-23 23:30:05 +00:00
[FINISHED] release [optimized] target(s) in [..]
[INSTALLING] [CWD]/home/.cargo/bin/bar[EXE]
2019-03-31 00:33:35 +00:00
[INSTALLED] package `bar v0.0.2` (executable `bar[EXE]`)
[ERROR] could not find `baz` in registry `[..]` with version `*`
[SUMMARY] Successfully installed foo, bar! Failed to install baz (see error(s) above).
2019-03-31 00:33:35 +00:00
[WARNING] be sure to add `[..]` to your PATH to be able to run the installed binaries
[ERROR] some crates failed to install
",
2018-12-08 11:19:47 +00:00
)
.run();
assert_has_installed_exe(cargo_home(), "foo");
assert_has_installed_exe(cargo_home(), "bar");
cargo_process("uninstall foo bar")
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[REMOVING] [CWD]/home/.cargo/bin/foo[EXE]
[REMOVING] [CWD]/home/.cargo/bin/bar[EXE]
[SUMMARY] Successfully uninstalled foo, bar!
",
2018-12-08 11:19:47 +00:00
)
.run();
assert_has_not_installed_exe(cargo_home(), "foo");
assert_has_not_installed_exe(cargo_home(), "bar");
2017-06-23 23:30:05 +00:00
}
#[cargo_test]
2017-06-23 23:30:05 +00:00
fn pick_max_version() {
2018-05-02 22:26:48 +00:00
pkg("foo", "0.1.0");
pkg("foo", "0.2.0");
pkg("foo", "0.2.1");
pkg("foo", "0.2.1-pre.1");
pkg("foo", "0.3.0-pre.2");
cargo_process("install foo")
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[UPDATING] `[..]` index
2018-09-14 20:33:18 +00:00
[DOWNLOADING] crates ...
[DOWNLOADED] foo v0.2.1 (registry [..])
2018-05-02 22:26:48 +00:00
[INSTALLING] foo v0.2.1
[COMPILING] foo v0.2.1
[FINISHED] release [optimized] target(s) in [..]
[INSTALLING] [CWD]/home/.cargo/bin/foo[EXE]
2019-03-31 00:33:35 +00:00
[INSTALLED] package `foo v0.2.1` (executable `foo[EXE]`)
[WARNING] be sure to add `[..]` to your PATH to be able to run the installed binaries
",
2018-12-08 11:19:47 +00:00
)
.run();
assert_has_installed_exe(cargo_home(), "foo");
}
#[cargo_test]
fn installs_beta_version_by_explicit_name_from_git() {
let p = git::repo(&paths::root().join("foo"))
2018-07-24 22:35:01 +00:00
.file("Cargo.toml", &basic_manifest("foo", "0.3.0-beta.1"))
.file("src/main.rs", "fn main() {}")
.build();
cargo_process("install --git")
.arg(p.url().to_string())
.arg("foo")
.run();
assert_has_installed_exe(cargo_home(), "foo");
}
#[cargo_test]
fn missing() {
pkg("foo", "0.0.1");
cargo_process("install bar")
.with_status(101)
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[UPDATING] [..] index
[ERROR] could not find `bar` in registry `[..]` with version `*`
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn missing_current_working_directory() {
cargo_process("install .")
.with_status(101)
.with_stderr(
"\
error: To install the binaries for the package in current working \
directory use `cargo install --path .`. Use `cargo build` if you \
want to simply build the package.
",
)
.run();
}
#[cargo_test]
fn bad_version() {
pkg("foo", "0.0.1");
cargo_process("install foo --vers=0.2.0")
.with_status(101)
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[UPDATING] [..] index
[ERROR] could not find `foo` in registry `[..]` with version `= 0.2.0`
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn bad_paths() {
cargo_process("install")
.with_status(101)
.with_stderr("[ERROR] `[CWD]` is not a crate root; specify a crate to install [..]")
.run();
cargo_process("install --path .")
.with_status(101)
.with_stderr("[ERROR] `[CWD]` does not contain a Cargo.toml file[..]")
.run();
let toml = paths::root().join("Cargo.toml");
fs::write(toml, "").unwrap();
cargo_process("install --path Cargo.toml")
.with_status(101)
.with_stderr("[ERROR] `[CWD]/Cargo.toml` is not a directory[..]")
.run();
cargo_process("install --path .")
.with_status(101)
.with_stderr_contains("[ERROR] failed to parse manifest at `[CWD]/Cargo.toml`")
2018-12-08 11:19:47 +00:00
.run();
}
#[cargo_test]
fn install_location_precedence() {
pkg("foo", "0.0.1");
let root = paths::root();
let t1 = root.join("t1");
let t2 = root.join("t2");
let t3 = root.join("t3");
let t4 = cargo_home();
fs::create_dir(root.join(".cargo")).unwrap();
fs::write(
root.join(".cargo/config"),
&format!(
"[install]
root = '{}'
",
t3.display()
),
)
.unwrap();
println!("install --root");
cargo_process("install foo --root")
.arg(&t1)
.env("CARGO_INSTALL_ROOT", &t2)
.run();
assert_has_installed_exe(&t1, "foo");
assert_has_not_installed_exe(&t2, "foo");
println!("install CARGO_INSTALL_ROOT");
cargo_process("install foo")
.env("CARGO_INSTALL_ROOT", &t2)
.run();
assert_has_installed_exe(&t2, "foo");
assert_has_not_installed_exe(&t3, "foo");
println!("install install.root");
cargo_process("install foo").run();
assert_has_installed_exe(&t3, "foo");
assert_has_not_installed_exe(&t4, "foo");
fs::remove_file(root.join(".cargo/config")).unwrap();
println!("install cargo home");
cargo_process("install foo").run();
assert_has_installed_exe(&t4, "foo");
}
#[cargo_test]
fn install_path() {
let p = project().file("src/main.rs", "fn main() {}").build();
cargo_process("install --path").arg(p.root()).run();
assert_has_installed_exe(cargo_home(), "foo");
2019-11-04 20:00:41 +00:00
// path-style installs force a reinstall
p.cargo("install --path .")
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
2019-11-04 20:00:41 +00:00
[INSTALLING] foo v0.0.1 [..]
[FINISHED] release [..]
[REPLACING] [..]/.cargo/bin/foo[EXE]
[REPLACED] package `foo v0.0.1 [..]` with `foo v0.0.1 [..]` (executable `foo[EXE]`)
[WARNING] be sure to add [..]
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn multiple_crates_error() {
let p = git::repo(&paths::root().join("foo"))
2018-07-24 22:35:01 +00:00
.file("Cargo.toml", &basic_manifest("foo", "0.1.0"))
.file("src/main.rs", "fn main() {}")
2018-07-24 22:35:01 +00:00
.file("a/Cargo.toml", &basic_manifest("bar", "0.1.0"))
.file("a/src/main.rs", "fn main() {}")
.build();
cargo_process("install --git")
.arg(p.url().to_string())
.with_status(101)
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
2016-05-15 22:16:54 +00:00
[UPDATING] git repository [..]
[ERROR] multiple packages with binaries found: bar, foo
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn multiple_crates_select() {
let p = git::repo(&paths::root().join("foo"))
2018-07-24 22:35:01 +00:00
.file("Cargo.toml", &basic_manifest("foo", "0.1.0"))
.file("src/main.rs", "fn main() {}")
2018-07-24 22:35:01 +00:00
.file("a/Cargo.toml", &basic_manifest("bar", "0.1.0"))
.file("a/src/main.rs", "fn main() {}")
.build();
cargo_process("install --git")
.arg(p.url().to_string())
.arg("foo")
.run();
assert_has_installed_exe(cargo_home(), "foo");
assert_has_not_installed_exe(cargo_home(), "bar");
cargo_process("install --git")
.arg(p.url().to_string())
.arg("bar")
.run();
assert_has_installed_exe(cargo_home(), "bar");
}
#[cargo_test]
fn multiple_crates_git_all() {
let p = git::repo(&paths::root().join("foo"))
2018-12-08 11:19:47 +00:00
.file(
"Cargo.toml",
2020-01-06 21:02:26 +00:00
r#"
[workspace]
members = ["bin1", "bin2"]
"#,
2018-12-08 11:19:47 +00:00
)
.file("bin1/Cargo.toml", &basic_manifest("bin1", "0.1.0"))
.file("bin2/Cargo.toml", &basic_manifest("bin2", "0.1.0"))
2018-12-08 11:19:47 +00:00
.file(
"bin1/src/main.rs",
r#"fn main() { println!("Hello, world!"); }"#,
)
.file(
"bin2/src/main.rs",
r#"fn main() { println!("Hello, world!"); }"#,
)
.build();
cargo_process(&format!("install --git {} bin1 bin2", p.url().to_string())).run();
}
#[cargo_test]
fn multiple_crates_auto_binaries() {
let p = project()
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.1.0"
authors = []
[dependencies]
bar = { path = "a" }
2018-03-14 15:17:44 +00:00
"#,
2018-12-08 11:19:47 +00:00
)
.file("src/main.rs", "extern crate bar; fn main() {}")
2018-07-24 22:35:01 +00:00
.file("a/Cargo.toml", &basic_manifest("bar", "0.1.0"))
.file("a/src/lib.rs", "")
.build();
cargo_process("install --path").arg(p.root()).run();
assert_has_installed_exe(cargo_home(), "foo");
}
#[cargo_test]
fn multiple_crates_auto_examples() {
let p = project()
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.1.0"
authors = []
[dependencies]
bar = { path = "a" }
2018-03-14 15:17:44 +00:00
"#,
2018-12-08 11:19:47 +00:00
)
.file("src/lib.rs", "extern crate bar;")
2018-03-14 15:17:44 +00:00
.file(
"examples/foo.rs",
"
extern crate bar;
extern crate foo;
fn main() {}
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.file("a/Cargo.toml", &basic_manifest("bar", "0.1.0"))
.file("a/src/lib.rs", "")
.build();
cargo_process("install --path")
.arg(p.root())
.arg("--example=foo")
.run();
assert_has_installed_exe(cargo_home(), "foo");
}
#[cargo_test]
fn no_binaries_or_examples() {
let p = project()
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.1.0"
authors = []
[dependencies]
bar = { path = "a" }
2018-03-14 15:17:44 +00:00
"#,
2018-12-08 11:19:47 +00:00
)
.file("src/lib.rs", "")
2018-07-24 22:35:01 +00:00
.file("a/Cargo.toml", &basic_manifest("bar", "0.1.0"))
.file("a/src/lib.rs", "")
.build();
cargo_process("install --path")
.arg(p.root())
.with_status(101)
.with_stderr("[ERROR] no packages found with binaries or examples")
.run();
}
#[cargo_test]
fn no_binaries() {
let p = project()
.file("src/lib.rs", "")
.file("examples/foo.rs", "fn main() {}")
.build();
cargo_process("install --path")
.arg(p.root())
.arg("foo")
.with_status(101)
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
2019-03-31 00:33:35 +00:00
[ERROR] specified package `foo v0.0.1 ([..])` has no binaries
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn examples() {
let p = project()
.file("src/lib.rs", "")
.file("examples/foo.rs", "extern crate foo; fn main() {}")
.build();
cargo_process("install --path")
.arg(p.root())
.arg("--example=foo")
.run();
assert_has_installed_exe(cargo_home(), "foo");
}
#[cargo_test]
fn install_force() {
let p = project().file("src/main.rs", "fn main() {}").build();
cargo_process("install --path").arg(p.root()).run();
let p = project()
.at("foo2")
2018-07-24 22:35:01 +00:00
.file("Cargo.toml", &basic_manifest("foo", "0.2.0"))
.file("src/main.rs", "fn main() {}")
.build();
cargo_process("install --force --path")
.arg(p.root())
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[INSTALLING] foo v0.2.0 ([..])
[COMPILING] foo v0.2.0 ([..])
[FINISHED] release [optimized] target(s) in [..]
[REPLACING] [CWD]/home/.cargo/bin/foo[EXE]
2019-03-31 00:33:35 +00:00
[REPLACED] package `foo v0.0.1 ([..]/foo)` with `foo v0.2.0 ([..]/foo2)` (executable `foo[EXE]`)
[WARNING] be sure to add `[..]` to your PATH to be able to run the installed binaries
",
2018-12-08 11:19:47 +00:00
)
.run();
2018-03-14 15:17:44 +00:00
cargo_process("install --list")
.with_stdout(
2018-03-14 15:17:44 +00:00
"\
foo v0.2.0 ([..]):
foo[..]
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn install_force_partial_overlap() {
let p = project()
.file("src/bin/foo-bin1.rs", "fn main() {}")
.file("src/bin/foo-bin2.rs", "fn main() {}")
.build();
cargo_process("install --path").arg(p.root()).run();
let p = project()
.at("foo2")
2018-07-24 22:35:01 +00:00
.file("Cargo.toml", &basic_manifest("foo", "0.2.0"))
.file("src/bin/foo-bin2.rs", "fn main() {}")
.file("src/bin/foo-bin3.rs", "fn main() {}")
.build();
cargo_process("install --force --path")
.arg(p.root())
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[INSTALLING] foo v0.2.0 ([..])
[COMPILING] foo v0.2.0 ([..])
[FINISHED] release [optimized] target(s) in [..]
[INSTALLING] [CWD]/home/.cargo/bin/foo-bin3[EXE]
[REPLACING] [CWD]/home/.cargo/bin/foo-bin2[EXE]
[REMOVING] executable `[..]/bin/foo-bin1[EXE]` from previous version foo v0.0.1 [..]
2019-03-31 00:33:35 +00:00
[INSTALLED] package `foo v0.2.0 ([..]/foo2)` (executable `foo-bin3[EXE]`)
[REPLACED] package `foo v0.0.1 ([..]/foo)` with `foo v0.2.0 ([..]/foo2)` (executable `foo-bin2[EXE]`)
[WARNING] be sure to add `[..]` to your PATH to be able to run the installed binaries
",
2018-12-08 11:19:47 +00:00
)
.run();
2018-03-14 15:17:44 +00:00
cargo_process("install --list")
.with_stdout(
2018-03-14 15:17:44 +00:00
"\
foo v0.2.0 ([..]):
foo-bin2[..]
foo-bin3[..]
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn install_force_bin() {
let p = project()
.file("src/bin/foo-bin1.rs", "fn main() {}")
.file("src/bin/foo-bin2.rs", "fn main() {}")
.build();
cargo_process("install --path").arg(p.root()).run();
let p = project()
.at("foo2")
2018-07-24 22:35:01 +00:00
.file("Cargo.toml", &basic_manifest("foo", "0.2.0"))
.file("src/bin/foo-bin1.rs", "fn main() {}")
.file("src/bin/foo-bin2.rs", "fn main() {}")
.build();
cargo_process("install --force --bin foo-bin2 --path")
.arg(p.root())
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[INSTALLING] foo v0.2.0 ([..])
[COMPILING] foo v0.2.0 ([..])
[FINISHED] release [optimized] target(s) in [..]
[REPLACING] [CWD]/home/.cargo/bin/foo-bin2[EXE]
2019-03-31 00:33:35 +00:00
[REPLACED] package `foo v0.0.1 ([..]/foo)` with `foo v0.2.0 ([..]/foo2)` (executable `foo-bin2[EXE]`)
[WARNING] be sure to add `[..]` to your PATH to be able to run the installed binaries
",
2018-12-08 11:19:47 +00:00
)
.run();
2018-03-14 15:17:44 +00:00
cargo_process("install --list")
.with_stdout(
2018-03-14 15:17:44 +00:00
"\
2018-07-24 13:01:56 +00:00
foo v0.0.1 ([..]):
foo-bin1[..]
foo v0.2.0 ([..]):
foo-bin2[..]
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn compile_failure() {
let p = project().file("src/main.rs", "").build();
cargo_process("install --path")
.arg(p.root())
.with_status(101)
.with_stderr_contains(
2018-03-14 15:17:44 +00:00
"\
2018-07-24 13:01:56 +00:00
[ERROR] failed to compile `foo v0.0.1 ([..])`, intermediate artifacts can be \
found at `[..]target`
Caused by:
could not compile `foo`.
To learn more, run the command again with --verbose.
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn git_repo() {
let p = git::repo(&paths::root().join("foo"))
2018-07-24 22:35:01 +00:00
.file("Cargo.toml", &basic_manifest("foo", "0.1.0"))
.file("src/main.rs", "fn main() {}")
.build();
2019-02-03 04:01:23 +00:00
// Use `--locked` to test that we don't even try to write a lock file.
cargo_process("install --locked --git")
.arg(p.url().to_string())
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[UPDATING] git repository `[..]`
[INSTALLING] foo v0.1.0 ([..])
[COMPILING] foo v0.1.0 ([..])
[FINISHED] release [optimized] target(s) in [..]
[INSTALLING] [CWD]/home/.cargo/bin/foo[EXE]
2019-03-31 00:33:35 +00:00
[INSTALLED] package `foo v0.1.0 ([..]/foo#[..])` (executable `foo[EXE]`)
[WARNING] be sure to add `[..]` to your PATH to be able to run the installed binaries
",
2018-12-08 11:19:47 +00:00
)
.run();
assert_has_installed_exe(cargo_home(), "foo");
assert_has_installed_exe(cargo_home(), "foo");
}
#[cargo_test]
fn list() {
pkg("foo", "0.0.1");
pkg("bar", "0.2.1");
pkg("bar", "0.2.2");
cargo_process("install --list").with_stdout("").run();
2018-03-14 15:17:44 +00:00
cargo_process("install bar --vers =0.2.1").run();
cargo_process("install foo").run();
cargo_process("install --list")
.with_stdout(
2018-03-14 15:17:44 +00:00
"\
Implement source redirection This commit implements a scheme for .cargo/config files where sources can be redirected to other sources. The purpose of this will be to override crates.io for a few use cases: * Replace it with a mirror site that is sync'd to crates.io * Replace it with a "directory source" or some other local source This major feature of this redirection, however, is that none of it is encoded into the lock file. If one source is redirected to another then it is assumed that packages from both are exactly the same (e.g. `foo v0.0.1` is the same in both location). The lock file simply encodes the canonical soure (e.g. crates.io) rather than the replacement source. In the end this means that Cargo.lock files can be generated from any replacement source and shipped to other locations without the lockfile oscillating about where packages came from. Eventually this support will be extended to `Cargo.toml` itself (which will be encoded into the lock file), but that support is not implemented today. The syntax for what was implemented today looks like: # .cargo/config [source.my-awesome-registry] registry = 'https://example.com/path/to/index' [source.crates-io] replace-with = 'my-awesome-registry' Each source will have a canonical name and will be configured with the various keys underneath it (today just 'registry' and 'directory' will be accepted). The global `crates-io` source represents crates from the standard registry, and this can be replaced with other mirror sources. All tests have been modified to use this new infrastructure instead of the old `registry.index` configuration. This configuration is now also deprecated and will emit an unconditional warning about how it will no longer be used in the future. Finally, all subcommands now use this "source map" except for `cargo publish`, which will always publish to the default registry (in this case crates.io).
2016-02-03 18:54:07 +00:00
bar v0.2.1:
bar[..]
Implement source redirection This commit implements a scheme for .cargo/config files where sources can be redirected to other sources. The purpose of this will be to override crates.io for a few use cases: * Replace it with a mirror site that is sync'd to crates.io * Replace it with a "directory source" or some other local source This major feature of this redirection, however, is that none of it is encoded into the lock file. If one source is redirected to another then it is assumed that packages from both are exactly the same (e.g. `foo v0.0.1` is the same in both location). The lock file simply encodes the canonical soure (e.g. crates.io) rather than the replacement source. In the end this means that Cargo.lock files can be generated from any replacement source and shipped to other locations without the lockfile oscillating about where packages came from. Eventually this support will be extended to `Cargo.toml` itself (which will be encoded into the lock file), but that support is not implemented today. The syntax for what was implemented today looks like: # .cargo/config [source.my-awesome-registry] registry = 'https://example.com/path/to/index' [source.crates-io] replace-with = 'my-awesome-registry' Each source will have a canonical name and will be configured with the various keys underneath it (today just 'registry' and 'directory' will be accepted). The global `crates-io` source represents crates from the standard registry, and this can be replaced with other mirror sources. All tests have been modified to use this new infrastructure instead of the old `registry.index` configuration. This configuration is now also deprecated and will emit an unconditional warning about how it will no longer be used in the future. Finally, all subcommands now use this "source map" except for `cargo publish`, which will always publish to the default registry (in this case crates.io).
2016-02-03 18:54:07 +00:00
foo v0.0.1:
foo[..]
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn list_error() {
pkg("foo", "0.0.1");
cargo_process("install foo").run();
cargo_process("install --list")
.with_stdout(
2018-03-14 15:17:44 +00:00
"\
foo v0.0.1:
foo[..]
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
let mut worldfile_path = cargo_home();
worldfile_path.push(".crates.toml");
let mut worldfile = OpenOptions::new()
2018-03-14 15:17:44 +00:00
.write(true)
.open(worldfile_path)
.expect(".crates.toml should be there");
worldfile.write_all(b"\x00").unwrap();
drop(worldfile);
cargo_process("install --list --verbose")
.with_status(101)
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[ERROR] failed to parse crate metadata at `[..]`
Caused by:
invalid TOML found for metadata
Caused by:
unexpected character[..]
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn uninstall_pkg_does_not_exist() {
cargo_process("uninstall foo")
.with_status(101)
2019-02-03 04:01:23 +00:00
.with_stderr("[ERROR] package ID specification `foo` matched no packages")
.run();
}
#[cargo_test]
fn uninstall_bin_does_not_exist() {
pkg("foo", "0.0.1");
cargo_process("install foo").run();
cargo_process("uninstall foo --bin=bar")
.with_status(101)
.with_stderr("[ERROR] binary `bar[..]` not installed as part of `foo v0.0.1`")
.run();
}
#[cargo_test]
fn uninstall_piecemeal() {
let p = project()
.file("src/bin/foo.rs", "fn main() {}")
.file("src/bin/bar.rs", "fn main() {}")
.build();
cargo_process("install --path").arg(p.root()).run();
assert_has_installed_exe(cargo_home(), "foo");
assert_has_installed_exe(cargo_home(), "bar");
cargo_process("uninstall foo --bin=bar")
.with_stderr("[REMOVING] [..]bar[..]")
.run();
assert_has_installed_exe(cargo_home(), "foo");
assert_has_not_installed_exe(cargo_home(), "bar");
cargo_process("uninstall foo --bin=foo")
.with_stderr("[REMOVING] [..]foo[..]")
.run();
assert_has_not_installed_exe(cargo_home(), "foo");
cargo_process("uninstall foo")
.with_status(101)
2019-02-03 04:01:23 +00:00
.with_stderr("[ERROR] package ID specification `foo` matched no packages")
.run();
}
#[cargo_test]
fn subcommand_works_out_of_the_box() {
Package::new("cargo-foo", "1.0.0")
.file("src/main.rs", r#"fn main() { println!("bar"); }"#)
.publish();
cargo_process("install cargo-foo").run();
cargo_process("foo").with_stdout("bar\n").run();
cargo_process("--list")
.with_stdout_contains(" foo\n")
.run();
}
#[cargo_test]
fn installs_from_cwd_by_default() {
let p = project().file("src/main.rs", "fn main() {}").build();
p.cargo("install")
.with_stderr_contains(
"warning: Using `cargo install` to install the binaries for the \
package in current working directory is deprecated, \
use `cargo install --path .` instead. \
Use `cargo build` if you want to simply build the package.",
2018-12-08 11:19:47 +00:00
)
.run();
assert_has_installed_exe(cargo_home(), "foo");
}
#[cargo_test]
fn installs_from_cwd_with_2018_warnings() {
let p = project()
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.1.0"
authors = []
edition = "2018"
"#,
2018-12-08 11:19:47 +00:00
)
.file("src/main.rs", "fn main() {}")
.build();
p.cargo("install")
.with_status(101)
.with_stderr_contains(
"error: Using `cargo install` to install the binaries for the \
package in current working directory is no longer supported, \
use `cargo install --path .` instead. \
Use `cargo build` if you want to simply build the package.",
2018-12-08 11:19:47 +00:00
)
.run();
assert_has_not_installed_exe(cargo_home(), "foo");
}
#[cargo_test]
fn uninstall_cwd() {
let p = project().file("src/main.rs", "fn main() {}").build();
p.cargo("install --path .")
.with_stderr(&format!(
"\
[INSTALLING] foo v0.0.1 ([CWD])
[COMPILING] foo v0.0.1 ([CWD])
[FINISHED] release [optimized] target(s) in [..]
[INSTALLING] {home}/bin/foo[EXE]
2019-03-31 00:33:35 +00:00
[INSTALLED] package `foo v0.0.1 ([..]/foo)` (executable `foo[EXE]`)
[WARNING] be sure to add `{home}/bin` to your PATH to be able to run the installed binaries",
home = cargo_home().display(),
2018-12-08 11:19:47 +00:00
))
.run();
assert_has_installed_exe(cargo_home(), "foo");
p.cargo("uninstall")
.with_stdout("")
.with_stderr(&format!(
2019-07-13 23:00:47 +00:00
"[REMOVING] {home}/bin/foo[EXE]",
home = cargo_home().display()
2018-12-08 11:19:47 +00:00
))
.run();
assert_has_not_installed_exe(cargo_home(), "foo");
}
#[cargo_test]
fn uninstall_cwd_not_installed() {
let p = project().file("src/main.rs", "fn main() {}").build();
p.cargo("uninstall")
.with_status(101)
.with_stdout("")
2019-07-13 23:00:47 +00:00
.with_stderr("error: package `foo v0.0.1 ([CWD])` is not installed")
2018-12-08 11:19:47 +00:00
.run();
}
#[cargo_test]
fn uninstall_cwd_no_project() {
cargo_process("uninstall")
.with_status(101)
.with_stdout("")
.with_stderr(format!(
"\
[ERROR] failed to read `[CWD]/Cargo.toml`
Caused by:
2019-12-01 20:47:13 +00:00
{err_msg}",
err_msg = NO_SUCH_FILE_ERR_MSG,
2018-12-08 11:19:47 +00:00
))
.run();
}
#[cargo_test]
fn do_not_rebuilds_on_local_install() {
let p = project().file("src/main.rs", "fn main() {}").build();
p.cargo("build --release").run();
cargo_process("install --path")
.arg(p.root())
.with_stderr(
2019-03-31 00:33:35 +00:00
"\
[INSTALLING] [..]
[FINISHED] release [optimized] target(s) in [..]
[INSTALLING] [..]
2019-03-31 00:33:35 +00:00
[INSTALLED] package `foo v0.0.1 ([..]/foo)` (executable `foo[EXE]`)
[WARNING] be sure to add `[..]` to your PATH to be able to run the installed binaries
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
assert!(p.build_dir().exists());
assert!(p.release_bin("foo").exists());
assert_has_installed_exe(cargo_home(), "foo");
}
#[cargo_test]
fn reports_unsuccessful_subcommand_result() {
Package::new("cargo-fail", "1.0.0")
.file("src/main.rs", "fn main() { panic!(); }")
.publish();
cargo_process("install cargo-fail").run();
cargo_process("--list")
.with_stdout_contains(" fail\n")
.run();
cargo_process("fail")
.with_status(101)
.with_stderr_contains("thread '[..]' panicked at 'explicit panic', [..]")
.run();
}
#[cargo_test]
fn git_with_lockfile() {
let p = git::repo(&paths::root().join("foo"))
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.1.0"
authors = []
[dependencies]
bar = { path = "bar" }
2018-03-14 15:17:44 +00:00
"#,
2018-12-08 11:19:47 +00:00
)
.file("src/main.rs", "fn main() {}")
2018-07-24 22:35:01 +00:00
.file("bar/Cargo.toml", &basic_manifest("bar", "0.1.0"))
.file("bar/src/lib.rs", "fn main() {}")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.lock",
r#"
[[package]]
name = "foo"
version = "0.1.0"
dependencies = [ "bar 0.1.0" ]
[[package]]
name = "bar"
version = "0.1.0"
2018-03-14 15:17:44 +00:00
"#,
2018-12-08 11:19:47 +00:00
)
.build();
cargo_process("install --git")
.arg(p.url().to_string())
.run();
}
#[cargo_test]
fn q_silences_warnings() {
let p = project().file("src/main.rs", "fn main() {}").build();
cargo_process("install -q --path")
.arg(p.root())
.with_stderr("")
.run();
}
2016-04-23 03:33:58 +00:00
#[cargo_test]
fn readonly_dir() {
2016-04-23 03:33:58 +00:00
pkg("foo", "0.0.1");
let root = paths::root();
let dir = &root.join("readonly");
fs::create_dir(root.join("readonly")).unwrap();
let mut perms = fs::metadata(dir).unwrap().permissions();
perms.set_readonly(true);
fs::set_permissions(dir, perms).unwrap();
cargo_process("install foo").cwd(dir).run();
assert_has_installed_exe(cargo_home(), "foo");
}
#[cargo_test]
fn use_path_workspace() {
Package::new("foo", "1.0.0").publish();
let p = project()
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[package]
name = "bar"
version = "0.1.0"
authors = []
[workspace]
members = ["baz"]
2018-03-14 15:17:44 +00:00
"#,
2018-12-08 11:19:47 +00:00
)
.file("src/main.rs", "fn main() {}")
2018-03-14 15:17:44 +00:00
.file(
"baz/Cargo.toml",
r#"
[package]
name = "baz"
version = "0.1.0"
authors = []
[dependencies]
foo = "1"
2018-03-14 15:17:44 +00:00
"#,
2018-12-08 11:19:47 +00:00
)
.file("baz/src/lib.rs", "")
.build();
p.cargo("build").run();
let lock = p.read_lockfile();
p.cargo("install").run();
let lock2 = p.read_lockfile();
assert_eq!(lock, lock2, "different lockfiles");
}
#[cargo_test]
fn dev_dependencies_no_check() {
Package::new("foo", "1.0.0").publish();
let p = project()
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[package]
name = "bar"
version = "0.1.0"
authors = []
[dev-dependencies]
baz = "1.0.0"
2018-03-14 15:17:44 +00:00
"#,
2018-12-08 11:19:47 +00:00
)
.file("src/main.rs", "fn main() {}")
.build();
p.cargo("build")
.with_status(101)
.with_stderr_contains("[..] no matching package named `baz` found")
.run();
p.cargo("install").run();
}
#[cargo_test]
fn dev_dependencies_lock_file_untouched() {
Package::new("foo", "1.0.0").publish();
let p = project()
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.1.0"
authors = []
[dev-dependencies]
bar = { path = "a" }
2018-03-14 15:17:44 +00:00
"#,
2018-12-08 11:19:47 +00:00
)
.file("src/main.rs", "fn main() {}")
2018-07-24 22:35:01 +00:00
.file("a/Cargo.toml", &basic_manifest("bar", "0.1.0"))
.file("a/src/lib.rs", "")
.build();
p.cargo("build").run();
let lock = p.read_lockfile();
p.cargo("install").run();
let lock2 = p.read_lockfile();
assert!(lock == lock2, "different lockfiles");
}
#[cargo_test]
2018-06-29 01:57:24 +00:00
fn install_target_native() {
pkg("foo", "0.1.0");
cargo_process("install foo --target")
.arg(cargo_test_support::rustc_host())
.run();
assert_has_installed_exe(cargo_home(), "foo");
2018-06-29 01:57:24 +00:00
}
#[cargo_test]
2018-06-29 01:57:24 +00:00
fn install_target_foreign() {
if cross_compile::disabled() {
return;
}
pkg("foo", "0.1.0");
cargo_process("install foo --target")
.arg(cross_compile::alternate())
.run();
assert_has_installed_exe(cargo_home(), "foo");
2018-06-29 01:57:24 +00:00
}
#[cargo_test]
fn vers_precise() {
pkg("foo", "0.1.1");
pkg("foo", "0.1.2");
cargo_process("install foo --vers 0.1.1")
2018-09-14 20:33:18 +00:00
.with_stderr_contains("[DOWNLOADED] foo v0.1.1 (registry [..])")
.run();
}
#[cargo_test]
2017-10-18 06:18:42 +00:00
fn version_too() {
pkg("foo", "0.1.1");
pkg("foo", "0.1.2");
cargo_process("install foo --version 0.1.1")
2018-09-14 20:33:18 +00:00
.with_stderr_contains("[DOWNLOADED] foo v0.1.1 (registry [..])")
.run();
2017-10-18 06:18:42 +00:00
}
#[cargo_test]
2017-10-18 06:39:11 +00:00
fn not_both_vers_and_version() {
2017-10-18 06:18:42 +00:00
pkg("foo", "0.1.1");
pkg("foo", "0.1.2");
cargo_process("install foo --version 0.1.1 --vers 0.1.2")
.with_status(1)
.with_stderr_contains(
2018-03-14 15:17:44 +00:00
"\
error: The argument '--version <VERSION>' was provided more than once, \
but cannot be used multiple times
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
2017-10-18 06:18:42 +00:00
}
#[cargo_test]
fn test_install_git_cannot_be_a_base_url() {
cargo_process("install --git github.com:rust-lang-nursery/rustfmt.git")
.with_status(101)
.with_stderr("\
[ERROR] invalid url `github.com:rust-lang-nursery/rustfmt.git`: cannot-be-a-base-URLs are not supported")
.run();
}
#[cargo_test]
fn uninstall_multiple_and_specifying_bin() {
cargo_process("uninstall foo bar --bin baz")
.with_status(101)
.with_stderr("\
[ERROR] A binary can only be associated with a single installed package, specifying multiple specs with --bin is redundant.")
.run();
}
#[cargo_test]
fn uninstall_multiple_and_some_pkg_does_not_exist() {
pkg("foo", "0.0.1");
cargo_process("install foo").run();
cargo_process("uninstall foo bar")
.with_status(101)
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[REMOVING] [CWD]/home/.cargo/bin/foo[EXE]
2019-02-03 04:01:23 +00:00
error: package ID specification `bar` matched no packages
[SUMMARY] Successfully uninstalled foo! Failed to uninstall bar (see error(s) above).
error: some packages failed to uninstall
",
2018-12-08 11:19:47 +00:00
)
.run();
assert_has_not_installed_exe(cargo_home(), "foo");
assert_has_not_installed_exe(cargo_home(), "bar");
}
#[cargo_test]
fn custom_target_dir_for_git_source() {
let p = git::repo(&paths::root().join("foo"))
2018-07-24 22:35:01 +00:00
.file("Cargo.toml", &basic_manifest("foo", "0.1.0"))
.file("src/main.rs", "fn main() {}")
.build();
cargo_process("install --git")
.arg(p.url().to_string())
.run();
2018-08-29 05:53:01 +00:00
assert!(!paths::root().join("target/release").is_dir());
2018-03-14 15:17:44 +00:00
cargo_process("install --force --git")
.arg(p.url().to_string())
.env("CARGO_TARGET_DIR", "target")
.run();
2018-08-29 05:53:01 +00:00
assert!(paths::root().join("target/release").is_dir());
}
#[cargo_test]
fn install_respects_lock_file() {
// `cargo install` now requires --locked to use a Cargo.lock.
Package::new("bar", "0.1.0").publish();
Package::new("bar", "0.1.1")
.file("src/lib.rs", "not rust")
.publish();
Package::new("foo", "0.1.0")
.dep("bar", "0.1")
.file("src/lib.rs", "")
2018-03-14 15:17:44 +00:00
.file(
"src/main.rs",
"extern crate foo; extern crate bar; fn main() {}",
2018-12-08 11:19:47 +00:00
)
.file(
2018-03-14 15:17:44 +00:00
"Cargo.lock",
r#"
[[package]]
name = "bar"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "foo"
version = "0.1.0"
dependencies = [
"bar 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
2018-03-14 15:17:44 +00:00
"#,
2018-12-08 11:19:47 +00:00
)
.publish();
cargo_process("install foo")
.with_stderr_contains("[..]not rust[..]")
.with_status(101)
.run();
cargo_process("install --locked foo").run();
}
#[cargo_test]
fn install_path_respects_lock_file() {
// --path version of install_path_respects_lock_file, --locked is required
// to use Cargo.lock.
Package::new("bar", "0.1.0").publish();
Package::new("bar", "0.1.1")
.file("src/lib.rs", "not rust")
.publish();
let p = project()
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.1.0"
[dependencies]
bar = "0.1"
"#,
)
.file("src/main.rs", "extern crate bar; fn main() {}")
.file(
"Cargo.lock",
r#"
[[package]]
name = "bar"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "foo"
version = "0.1.0"
dependencies = [
"bar 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
"#,
)
.build();
p.cargo("install --path .")
.with_stderr_contains("[..]not rust[..]")
.with_status(101)
.run();
p.cargo("install --path . --locked").run();
}
#[cargo_test]
fn lock_file_path_deps_ok() {
Package::new("bar", "0.1.0").publish();
Package::new("foo", "0.1.0")
.dep("bar", "0.1")
.file("src/lib.rs", "")
2018-03-14 15:17:44 +00:00
.file(
"src/main.rs",
"extern crate foo; extern crate bar; fn main() {}",
2018-12-08 11:19:47 +00:00
)
.file(
2018-03-14 15:17:44 +00:00
"Cargo.lock",
r#"
[[package]]
name = "bar"
version = "0.1.0"
[[package]]
name = "foo"
version = "0.1.0"
dependencies = [
"bar 0.1.0",
]
2018-03-14 15:17:44 +00:00
"#,
2018-12-08 11:19:47 +00:00
)
.publish();
cargo_process("install foo").run();
}
#[cargo_test]
fn install_empty_argument() {
// Bug 5229
cargo_process("install")
.arg("")
.with_status(1)
.with_stderr_contains(
"[ERROR] The argument '<crate>...' requires a value but none was supplied",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn git_repo_replace() {
let p = git::repo(&paths::root().join("foo"))
2018-07-24 22:35:01 +00:00
.file("Cargo.toml", &basic_manifest("foo", "0.1.0"))
.file("src/main.rs", "fn main() {}")
.build();
let repo = git2::Repository::open(&p.root()).unwrap();
let old_rev = repo.revparse_single("HEAD").unwrap().id();
cargo_process("install --git")
.arg(p.url().to_string())
.run();
git::commit(&repo);
let new_rev = repo.revparse_single("HEAD").unwrap().id();
let mut path = paths::home();
path.push(".cargo/.crates.toml");
assert_ne!(old_rev, new_rev);
2018-12-08 11:19:47 +00:00
assert!(fs::read_to_string(path.clone())
.unwrap()
.contains(&format!("{}", old_rev)));
cargo_process("install --force --git")
.arg(p.url().to_string())
.run();
2018-12-08 11:19:47 +00:00
assert!(fs::read_to_string(path)
.unwrap()
.contains(&format!("{}", new_rev)));
}
#[cargo_test]
fn workspace_uses_workspace_target_dir() {
let p = project()
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.1.0"
authors = []
[workspace]
[dependencies]
bar = { path = 'bar' }
"#,
2018-12-08 11:19:47 +00:00
)
.file("src/main.rs", "fn main() {}")
2018-07-24 22:35:01 +00:00
.file("bar/Cargo.toml", &basic_manifest("bar", "0.1.0"))
.file("bar/src/main.rs", "fn main() {}")
.build();
p.cargo("build --release").cwd("bar").run();
cargo_process("install --path")
.arg(p.root().join("bar"))
.with_stderr(
"[INSTALLING] [..]
[FINISHED] release [optimized] target(s) in [..]
[INSTALLING] [..]
2019-03-31 00:33:35 +00:00
[INSTALLED] package `bar v0.1.0 ([..]/bar)` (executable `bar[EXE]`)
[WARNING] be sure to add `[..]` to your PATH to be able to run the installed binaries
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn install_ignores_local_cargo_config() {
pkg("bar", "0.0.1");
2018-08-09 18:26:11 +00:00
let p = project()
.file(
".cargo/config",
r#"
[build]
target = "non-existing-target"
"#,
)
.file("src/main.rs", "fn main() {}")
.build();
p.cargo("install bar").run();
2018-09-01 16:16:49 +00:00
assert_has_installed_exe(cargo_home(), "bar");
}
#[cargo_test]
fn install_global_cargo_config() {
pkg("bar", "0.0.1");
let config = cargo_home().join("config");
2019-03-27 02:06:08 +00:00
let mut toml = fs::read_to_string(&config).unwrap_or_default();
2018-12-08 11:19:47 +00:00
toml.push_str(
r#"
[build]
target = 'nonexistent'
2018-12-08 11:19:47 +00:00
"#,
);
fs::write(&config, toml).unwrap();
cargo_process("install bar")
.with_status(101)
.with_stderr_contains("[..]--target nonexistent[..]")
.run();
}
#[cargo_test]
fn install_path_config() {
project()
.file(
".cargo/config",
r#"
[build]
target = 'nonexistent'
"#,
)
.file("src/main.rs", "fn main() {}")
.build();
cargo_process("install --path foo")
.with_status(101)
.with_stderr_contains("[..]--target nonexistent[..]")
.run();
}
2019-03-31 00:33:35 +00:00
#[cargo_test]
2019-03-31 00:33:35 +00:00
fn install_version_req() {
// Try using a few versionreq styles.
pkg("foo", "0.0.3");
pkg("foo", "1.0.4");
pkg("foo", "1.0.5");
cargo_process("install foo --version=*")
.with_stderr_does_not_contain("[WARNING][..]is not a valid semver[..]")
.with_stderr_contains("[INSTALLING] foo v1.0.5")
.run();
cargo_process("uninstall foo").run();
cargo_process("install foo --version=^1.0")
.with_stderr_does_not_contain("[WARNING][..]is not a valid semver[..]")
.with_stderr_contains("[INSTALLING] foo v1.0.5")
.run();
cargo_process("uninstall foo").run();
cargo_process("install foo --version=0.0.*")
.with_stderr_does_not_contain("[WARNING][..]is not a valid semver[..]")
.with_stderr_contains("[INSTALLING] foo v0.0.3")
.run();
}
#[cargo_test]
fn git_install_reads_workspace_manifest() {
let p = git::repo(&paths::root().join("foo"))
.file(
"Cargo.toml",
r#"
[workspace]
members = ["bin1"]
[profile.release]
incremental = 3
"#,
)
.file("bin1/Cargo.toml", &basic_manifest("bin1", "0.1.0"))
.file(
"bin1/src/main.rs",
r#"fn main() { println!("Hello, world!"); }"#,
)
.build();
cargo_process(&format!("install --git {}", p.url().to_string()))
.with_status(101)
.with_stderr_contains(" invalid type: integer `3`[..]")
.run();
}
#[cargo_test]
fn install_git_with_symlink_home() {
// Ensure that `cargo install` with a git repo is OK when CARGO_HOME is a
// symlink, and uses an build script.
if !symlink_supported() {
return;
}
let p = git::new("foo", |p| {
p.file("Cargo.toml", &basic_manifest("foo", "1.0.0"))
.file("src/main.rs", "fn main() {}")
// This triggers discover_git_and_list_files for detecting changed files.
.file("build.rs", "fn main() {}")
});
#[cfg(unix)]
use std::os::unix::fs::symlink;
#[cfg(windows)]
use std::os::windows::fs::symlink_dir as symlink;
let actual = paths::root().join("actual-home");
t!(std::fs::create_dir(&actual));
t!(symlink(&actual, paths::home().join(".cargo")));
cargo_process("install --git")
.arg(p.url().to_string())
.with_stderr(
"\
[UPDATING] git repository [..]
[INSTALLING] foo v1.0.0 [..]
[COMPILING] foo v1.0.0 [..]
[FINISHED] [..]
[INSTALLING] [..]home/.cargo/bin/foo[..]
[INSTALLED] package `foo [..]
[WARNING] be sure to add [..]
",
)
.run();
}