cargo/tests/testsuite/tool_paths.rs

394 lines
10 KiB
Rust
Raw Normal View History

2019-11-25 02:42:45 +00:00
//! Tests for configuration values that point to programs.
use cargo_test_support::{basic_lib_manifest, no_such_file_err_msg, project, rustc_host};
#[cargo_test]
fn pathless_tools() {
let target = rustc_host();
let foo = project()
2018-07-24 13:01:56 +00:00
.file("Cargo.toml", &basic_lib_manifest("foo"))
.file("src/lib.rs", "")
2018-03-14 15:17:44 +00:00
.file(
".cargo/config",
&format!(
r#"
2020-09-27 00:59:58 +00:00
[target.{}]
linker = "nonexistent-linker"
"#,
2018-03-14 15:17:44 +00:00
target
),
2018-12-08 11:19:47 +00:00
)
.build();
foo.cargo("build --verbose")
.with_stderr(
2018-03-14 15:17:44 +00:00
"\
[COMPILING] foo v0.5.0 ([CWD])
[RUNNING] `rustc [..] -C linker=nonexistent-linker [..]`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
#[cargo_test]
fn absolute_tools() {
let target = rustc_host();
// Escaped as they appear within a TOML config file
let linker = if cfg!(windows) {
r#"C:\\bogus\\nonexistent-linker"#
} else {
r#"/bogus/nonexistent-linker"#
};
let foo = project()
2018-07-24 13:01:56 +00:00
.file("Cargo.toml", &basic_lib_manifest("foo"))
.file("src/lib.rs", "")
2018-03-14 15:17:44 +00:00
.file(
".cargo/config",
&format!(
r#"
2020-09-27 00:59:58 +00:00
[target.{target}]
linker = "{linker}"
"#,
2018-03-14 15:17:44 +00:00
target = target,
linker = linker
2018-03-14 15:17:44 +00:00
),
2018-12-08 11:19:47 +00:00
)
.build();
2019-07-18 15:35:25 +00:00
foo.cargo("build --verbose")
.with_stderr(
"\
[COMPILING] foo v0.5.0 ([CWD])
[RUNNING] `rustc [..] -C linker=[..]bogus/nonexistent-linker [..]`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2019-07-18 15:35:25 +00:00
",
)
.run();
}
#[cargo_test]
fn relative_tools() {
let target = rustc_host();
// Escaped as they appear within a TOML config file
let linker = if cfg!(windows) {
r#".\\tools\\nonexistent-linker"#
} else {
r#"./tools/nonexistent-linker"#
};
// Funky directory structure to test that relative tool paths are made absolute
// by reference to the `.cargo/..` directory and not to (for example) the CWD.
let p = project()
.no_manifest()
2018-07-24 22:35:01 +00:00
.file("bar/Cargo.toml", &basic_lib_manifest("bar"))
.file("bar/src/lib.rs", "")
2018-03-14 15:17:44 +00:00
.file(
".cargo/config",
&format!(
r#"
2020-09-27 00:59:58 +00:00
[target.{target}]
linker = "{linker}"
"#,
2018-03-14 15:17:44 +00:00
target = target,
linker = linker
2018-03-14 15:17:44 +00:00
),
2018-12-08 11:19:47 +00:00
)
.build();
let prefix = p.root().into_os_string().into_string().unwrap();
p.cargo("build --verbose")
.cwd("bar")
.with_stderr(&format!(
2018-03-14 15:17:44 +00:00
"\
[COMPILING] bar v0.5.0 ([CWD])
[RUNNING] `rustc [..] -C linker={prefix}/./tools/nonexistent-linker [..]`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
",
prefix = prefix,
))
.run();
}
#[cargo_test]
fn custom_runner() {
let target = rustc_host();
let p = project()
.file("src/main.rs", "fn main() {}")
.file("tests/test.rs", "")
.file("benches/bench.rs", "")
2018-03-14 15:17:44 +00:00
.file(
".cargo/config",
&format!(
r#"
2020-09-27 00:59:58 +00:00
[target.{}]
runner = "nonexistent-runner -r"
"#,
2018-03-14 15:17:44 +00:00
target
),
2018-12-08 11:19:47 +00:00
)
.build();
p.cargo("run -- --param")
.with_status(101)
.with_stderr_contains(
2018-03-14 15:17:44 +00:00
"\
[COMPILING] foo v0.0.1 ([CWD])
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-08-02 09:18:48 +00:00
[RUNNING] `nonexistent-runner -r target/debug/foo[EXE] --param`
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
p.cargo("test --test test --verbose -- --param")
.with_status(101)
.with_stderr_contains(
2018-03-14 15:17:44 +00:00
"\
[COMPILING] foo v0.0.1 ([CWD])
[RUNNING] `rustc [..]`
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
2018-08-02 09:18:48 +00:00
[RUNNING] `nonexistent-runner -r [..]/target/debug/deps/test-[..][EXE] --param`
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
p.cargo("bench --bench bench --verbose -- --param")
.with_status(101)
.with_stderr_contains(
2018-03-14 15:17:44 +00:00
"\
[COMPILING] foo v0.0.1 ([CWD])
[RUNNING] `rustc [..]`
[RUNNING] `rustc [..]`
[FINISHED] bench [optimized] target(s) in [..]
2018-08-02 09:18:48 +00:00
[RUNNING] `nonexistent-runner -r [..]/target/release/deps/bench-[..][EXE] --param --bench`
2018-03-14 15:17:44 +00:00
",
2018-12-08 11:19:47 +00:00
)
.run();
}
// can set a custom runner via `target.'cfg(..)'.runner`
#[cargo_test]
fn custom_runner_cfg() {
let p = project()
.file("src/main.rs", "fn main() {}")
.file(
".cargo/config",
r#"
[target.'cfg(not(target_os = "none"))']
runner = "nonexistent-runner -r"
"#,
2018-12-08 11:19:47 +00:00
)
.build();
p.cargo("run -- --param")
.with_status(101)
2019-04-05 19:55:01 +00:00
.with_stderr_contains(
"\
[COMPILING] foo v0.0.1 ([CWD])
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
[RUNNING] `nonexistent-runner -r target/debug/foo[EXE] --param`
2019-04-05 19:55:01 +00:00
",
)
2018-12-08 11:19:47 +00:00
.run();
}
2019-12-11 14:31:26 +00:00
// custom runner set via `target.$triple.runner` have precedence over `target.'cfg(..)'.runner`
#[cargo_test]
fn custom_runner_cfg_precedence() {
let target = rustc_host();
let p = project()
.file("src/main.rs", "fn main() {}")
.file(
".cargo/config",
&format!(
r#"
2020-09-27 00:59:58 +00:00
[target.'cfg(not(target_os = "none"))']
runner = "ignored-runner"
2020-09-27 00:59:58 +00:00
[target.{}]
runner = "nonexistent-runner -r"
"#,
target
),
2018-12-08 11:19:47 +00:00
)
.build();
p.cargo("run -- --param")
.with_status(101)
2019-04-05 19:55:01 +00:00
.with_stderr_contains(
"\
2019-07-13 23:00:47 +00:00
[COMPILING] foo v0.0.1 ([CWD])
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
[RUNNING] `nonexistent-runner -r target/debug/foo[EXE] --param`
2019-04-05 19:55:01 +00:00
",
)
2018-12-08 11:19:47 +00:00
.run();
}
#[cargo_test]
fn custom_runner_cfg_collision() {
let p = project()
.file("src/main.rs", "fn main() {}")
.file(
".cargo/config",
r#"
[target.'cfg(not(target_arch = "avr"))']
runner = "true"
[target.'cfg(not(target_os = "none"))']
runner = "false"
"#,
2018-12-08 11:19:47 +00:00
)
.build();
p.cargo("run -- --param")
.with_status(101)
2019-11-24 17:43:59 +00:00
.with_stderr(
2019-04-05 19:55:01 +00:00
"\
[ERROR] several matching instances of `target.'cfg(..)'.runner` in `.cargo/config`
2019-11-24 17:43:59 +00:00
first match `cfg(not(target_arch = \"avr\"))` located in [..]/foo/.cargo/config
second match `cfg(not(target_os = \"none\"))` located in [..]/foo/.cargo/config
",
)
.run();
}
#[cargo_test]
fn custom_runner_env() {
let target = rustc_host();
let p = project().file("src/main.rs", "fn main() {}").build();
let key = format!(
"CARGO_TARGET_{}_RUNNER",
target.to_uppercase().replace('-', "_")
);
p.cargo("run")
.env(&key, "nonexistent-runner --foo")
.with_status(101)
.with_stderr(&format!(
"\
[COMPILING] foo [..]
[FINISHED] dev [..]
[RUNNING] `nonexistent-runner --foo target/debug/foo[EXE]`
[ERROR] could not execute process `nonexistent-runner --foo target/debug/foo[EXE]` (never executed)
Caused by:
{}
",
no_such_file_err_msg()
))
2019-11-24 17:43:59 +00:00
.run();
}
2020-08-17 17:23:49 +00:00
#[cargo_test]
fn custom_runner_env_overrides_config() {
let target = rustc_host();
let p = project()
.file("src/main.rs", "fn main() {}")
.file(
".cargo/config.toml",
&format!(
r#"
2020-09-27 00:59:58 +00:00
[target.{}]
runner = "should-not-run -r"
"#,
2020-08-17 17:23:49 +00:00
target
),
)
.build();
let key = format!(
"CARGO_TARGET_{}_RUNNER",
target.to_uppercase().replace('-', "_")
);
p.cargo("run")
.env(&key, "should-run --foo")
.with_status(101)
.with_stderr_contains("[RUNNING] `should-run --foo target/debug/foo[EXE]`")
.run();
}
#[cargo_test]
#[cfg(unix)] // Assumes `true` is in PATH.
fn custom_runner_env_true() {
// Check for a bug where "true" was interpreted as a boolean instead of
// the executable.
let target = rustc_host();
let p = project().file("src/main.rs", "fn main() {}").build();
let key = format!(
"CARGO_TARGET_{}_RUNNER",
target.to_uppercase().replace('-', "_")
);
p.cargo("run")
.env(&key, "true")
.with_stderr_contains("[RUNNING] `true target/debug/foo[EXE]`")
.run();
}
#[cargo_test]
fn custom_linker_env() {
let target = rustc_host();
let p = project().file("src/main.rs", "fn main() {}").build();
let key = format!(
"CARGO_TARGET_{}_LINKER",
target.to_uppercase().replace('-', "_")
);
p.cargo("build -v")
.env(&key, "nonexistent-linker")
.with_status(101)
.with_stderr_contains("[RUNNING] `rustc [..]-C linker=nonexistent-linker [..]")
.run();
}
2019-11-24 17:43:59 +00:00
#[cargo_test]
fn cfg_ignored_fields() {
// Test for some ignored fields in [target.'cfg()'] tables.
let p = project()
.file(
".cargo/config",
r#"
# Try some empty tables.
[target.'cfg(not(foo))']
[target.'cfg(not(bar))'.somelib]
# A bunch of unused fields.
[target.'cfg(not(target_os = "none"))']
linker = 'false'
ar = 'false'
foo = {rustc-flags = "-l foo"}
invalid = 1
runner = 'false'
rustflags = ''
"#,
)
.file("src/lib.rs", "")
.build();
p.cargo("check")
.with_stderr(
"\
[WARNING] unused key `somelib` in [target] config table `cfg(not(bar))`
[WARNING] unused key `ar` in [target] config table `cfg(not(target_os = \"none\"))`
[WARNING] unused key `foo` in [target] config table `cfg(not(target_os = \"none\"))`
[WARNING] unused key `invalid` in [target] config table `cfg(not(target_os = \"none\"))`
[WARNING] unused key `linker` in [target] config table `cfg(not(target_os = \"none\"))`
[CHECKING] foo v0.0.1 ([..])
[FINISHED] [..]
2019-04-05 19:55:01 +00:00
",
)
2018-12-08 11:19:47 +00:00
.run();
}