cargo/tests/testsuite/tool_paths.rs

194 lines
5.1 KiB
Rust
Raw Normal View History

use support::rustc_host;
2018-07-24 13:01:56 +00:00
use support::{basic_lib_manifest, execs, project, path2url};
use support::hamcrest::assert_that;
#[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#"
[target.{}]
ar = "nonexistent-ar"
linker = "nonexistent-linker"
2018-03-14 15:17:44 +00:00
"#,
target
),
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
foo.cargo("build --verbose"),
2018-03-14 15:17:44 +00:00
execs().with_stderr(&format!(
"\
2018-07-24 13:01:56 +00:00
[COMPILING] foo v0.5.0 ({url})
[RUNNING] `rustc [..] -C ar=nonexistent-ar -C linker=nonexistent-linker [..]`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
",
url = foo.url()
)),
)
}
#[test]
fn absolute_tools() {
let target = rustc_host();
2018-08-18 11:20:00 +00:00
let root = if cfg!(windows) { r#"C:\"# } else { "/" };
// Escaped as they appear within a TOML config file
let config = if cfg!(windows) {
2018-03-14 15:17:44 +00:00
(
r#"C:\\bogus\\nonexistent-ar"#,
r#"C:\\bogus\\nonexistent-linker"#,
)
} else {
(r#"/bogus/nonexistent-ar"#, 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#"
[target.{target}]
ar = "{ar}"
linker = "{linker}"
2018-03-14 15:17:44 +00:00
"#,
target = target,
ar = config.0,
linker = config.1
),
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
foo.cargo("build --verbose"),
2018-03-14 15:17:44 +00:00
execs().with_stderr(&format!(
"\
2018-07-24 13:01:56 +00:00
[COMPILING] foo v0.5.0 ({url})
[RUNNING] `rustc [..] -C ar={root}bogus/nonexistent-ar -C linker={root}bogus/nonexistent-linker [..]`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
",
url = foo.url(),
root = root,
2018-03-14 15:17:44 +00:00
)),
)
}
#[test]
fn relative_tools() {
let target = rustc_host();
// Escaped as they appear within a TOML config file
let config = if cfg!(windows) {
(r#".\\nonexistent-ar"#, r#".\\tools\\nonexistent-linker"#)
} else {
(r#"./nonexistent-ar"#, 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#"
[target.{target}]
ar = "{ar}"
linker = "{linker}"
2018-03-14 15:17:44 +00:00
"#,
target = target,
ar = config.0,
linker = config.1
),
)
.build();
let foo_path = p.root().join("bar");
let foo_url = path2url(&foo_path);
let prefix = p.root().into_os_string().into_string().unwrap();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("build --verbose").cwd(foo_path),
2018-03-14 15:17:44 +00:00
execs().with_stderr(&format!(
"\
2018-07-24 22:35:01 +00:00
[COMPILING] bar v0.5.0 ({url})
[RUNNING] `rustc [..] -C ar={prefix}/./nonexistent-ar -C linker={prefix}/./tools/nonexistent-linker [..]`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
",
url = foo_url,
prefix = prefix,
2018-03-14 15:17:44 +00:00
)),
)
}
#[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#"
[target.{}]
2017-05-12 22:07:42 +00:00
runner = "nonexistent-runner -r"
2018-03-14 15:17:44 +00:00
"#,
target
),
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run -- --param"),
execs().with_status(101).with_stderr_contains(&format!(
2018-03-14 15:17:44 +00:00
"\
[COMPILING] foo v0.0.1 ({url})
[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
",
url = p.url()
)),
);
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("test --test test --verbose -- --param"),
execs().with_status(101).with_stderr_contains(&format!(
2018-03-14 15:17:44 +00:00
"\
[COMPILING] foo v0.0.1 ({url})
[RUNNING] `rustc [..]`
[FINISHED] dev [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
",
url = p.url()
)),
);
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("bench --bench bench --verbose -- --param"),
execs().with_status(101).with_stderr_contains(&format!(
2018-03-14 15:17:44 +00:00
"\
[COMPILING] foo v0.0.1 ({url})
[RUNNING] `rustc [..]`
[RUNNING] `rustc [..]`
[FINISHED] release [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
",
url = p.url()
)),
);
}