mirror of
https://github.com/rust-lang/cargo.git
synced 2025-10-01 11:30:39 +00:00

By rewriting the tests, with rerast (https://github.com/google/rerast), to use the newly introduced "at" method. First I added the following temporary function to cargotest::support: pub fn project_foo() -> ProjectBuilder { project("foo") } Then I defined the following rewrite.rs: use cargotest::support::{ project, project_foo }; fn rule1(a: &'static str) { replace!(project("foo") => project_foo()); replace!(project(a) => project_foo().at(a)); } Then I ran rerast: cargo +nightly rerast --rules_file=rewrite.rs --force --targets tests --file tests/testsuite/main.rs Finally I searched and replaced the references to project_foo with argument-less project (a little awkardly on macOS with a git clean). find tests -type f -exec sed -i -e 's/project_foo/project/g' {} + git clean -d tests
257 lines
6.3 KiB
Rust
257 lines
6.3 KiB
Rust
use cargotest::rustc_host;
|
|
use cargotest::support::{execs, project, path2url};
|
|
use hamcrest::assert_that;
|
|
|
|
#[test]
|
|
fn pathless_tools() {
|
|
let target = rustc_host();
|
|
|
|
let foo = project()
|
|
.file(
|
|
"Cargo.toml",
|
|
r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.0.1"
|
|
authors = []
|
|
|
|
[lib]
|
|
name = "foo"
|
|
"#,
|
|
)
|
|
.file("src/lib.rs", "")
|
|
.file(
|
|
".cargo/config",
|
|
&format!(
|
|
r#"
|
|
[target.{}]
|
|
ar = "nonexistent-ar"
|
|
linker = "nonexistent-linker"
|
|
"#,
|
|
target
|
|
),
|
|
)
|
|
.build();
|
|
|
|
assert_that(
|
|
foo.cargo("build").arg("--verbose"),
|
|
execs().with_stderr(&format!(
|
|
"\
|
|
[COMPILING] foo v0.0.1 ({url})
|
|
[RUNNING] `rustc [..] -C ar=nonexistent-ar -C linker=nonexistent-linker [..]`
|
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
|
",
|
|
url = foo.url()
|
|
)),
|
|
)
|
|
}
|
|
|
|
#[test]
|
|
fn absolute_tools() {
|
|
let target = rustc_host();
|
|
|
|
// Escaped as they appear within a TOML config file
|
|
let config = if cfg!(windows) {
|
|
(
|
|
r#"C:\\bogus\\nonexistent-ar"#,
|
|
r#"C:\\bogus\\nonexistent-linker"#,
|
|
)
|
|
} else {
|
|
(r#"/bogus/nonexistent-ar"#, r#"/bogus/nonexistent-linker"#)
|
|
};
|
|
|
|
let foo = project()
|
|
.file(
|
|
"Cargo.toml",
|
|
r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.0.1"
|
|
authors = []
|
|
|
|
[lib]
|
|
name = "foo"
|
|
"#,
|
|
)
|
|
.file("src/lib.rs", "")
|
|
.file(
|
|
".cargo/config",
|
|
&format!(
|
|
r#"
|
|
[target.{target}]
|
|
ar = "{ar}"
|
|
linker = "{linker}"
|
|
"#,
|
|
target = target,
|
|
ar = config.0,
|
|
linker = config.1
|
|
),
|
|
)
|
|
.build();
|
|
|
|
let output = if cfg!(windows) {
|
|
(
|
|
r#"C:\bogus\nonexistent-ar"#,
|
|
r#"C:\bogus\nonexistent-linker"#,
|
|
)
|
|
} else {
|
|
(r#"/bogus/nonexistent-ar"#, r#"/bogus/nonexistent-linker"#)
|
|
};
|
|
|
|
assert_that(
|
|
foo.cargo("build").arg("--verbose"),
|
|
execs().with_stderr(&format!(
|
|
"\
|
|
[COMPILING] foo v0.0.1 ({url})
|
|
[RUNNING] `rustc [..] -C ar={ar} -C linker={linker} [..]`
|
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
|
",
|
|
url = foo.url(),
|
|
ar = output.0,
|
|
linker = output.1
|
|
)),
|
|
)
|
|
}
|
|
|
|
#[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 origin = project().at("origin")
|
|
.file(
|
|
"foo/Cargo.toml",
|
|
r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.0.1"
|
|
authors = []
|
|
|
|
[lib]
|
|
name = "foo"
|
|
"#,
|
|
)
|
|
.file("foo/src/lib.rs", "")
|
|
.file(
|
|
".cargo/config",
|
|
&format!(
|
|
r#"
|
|
[target.{target}]
|
|
ar = "{ar}"
|
|
linker = "{linker}"
|
|
"#,
|
|
target = target,
|
|
ar = config.0,
|
|
linker = config.1
|
|
),
|
|
)
|
|
.build();
|
|
|
|
let foo_path = origin.root().join("foo");
|
|
let foo_url = path2url(foo_path.clone());
|
|
let prefix = origin.root().into_os_string().into_string().unwrap();
|
|
let output = if cfg!(windows) {
|
|
(
|
|
format!(r#"{}\.\nonexistent-ar"#, prefix),
|
|
format!(r#"{}\.\tools\nonexistent-linker"#, prefix),
|
|
)
|
|
} else {
|
|
(
|
|
format!(r#"{}/./nonexistent-ar"#, prefix),
|
|
format!(r#"{}/./tools/nonexistent-linker"#, prefix),
|
|
)
|
|
};
|
|
|
|
assert_that(
|
|
origin.cargo("build").cwd(foo_path).arg("--verbose"),
|
|
execs().with_stderr(&format!(
|
|
"\
|
|
[COMPILING] foo v0.0.1 ({url})
|
|
[RUNNING] `rustc [..] -C ar={ar} -C linker={linker} [..]`
|
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
|
",
|
|
url = foo_url,
|
|
ar = output.0,
|
|
linker = output.1
|
|
)),
|
|
)
|
|
}
|
|
|
|
#[test]
|
|
fn custom_runner() {
|
|
let target = rustc_host();
|
|
|
|
let p = project()
|
|
.file(
|
|
"Cargo.toml",
|
|
r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.0.1"
|
|
"#,
|
|
)
|
|
.file("src/main.rs", "fn main() {}")
|
|
.file("tests/test.rs", "")
|
|
.file("benches/bench.rs", "")
|
|
.file(
|
|
".cargo/config",
|
|
&format!(
|
|
r#"
|
|
[target.{}]
|
|
runner = "nonexistent-runner -r"
|
|
"#,
|
|
target
|
|
),
|
|
)
|
|
.build();
|
|
|
|
assert_that(
|
|
p.cargo("run").args(&["--", "--param"]),
|
|
execs().with_stderr_contains(&format!(
|
|
"\
|
|
[COMPILING] foo v0.0.1 ({url})
|
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
|
[RUNNING] `nonexistent-runner -r target[/]debug[/]foo[EXE] --param`
|
|
",
|
|
url = p.url()
|
|
)),
|
|
);
|
|
|
|
assert_that(
|
|
p.cargo("test")
|
|
.args(&["--test", "test", "--verbose", "--", "--param"]),
|
|
execs().with_stderr_contains(&format!(
|
|
"\
|
|
[COMPILING] foo v0.0.1 ({url})
|
|
[RUNNING] `rustc [..]`
|
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
|
[RUNNING] `nonexistent-runner -r [..][/]target[/]debug[/]deps[/]test-[..][EXE] --param`
|
|
",
|
|
url = p.url()
|
|
)),
|
|
);
|
|
|
|
assert_that(
|
|
p.cargo("bench")
|
|
.args(&["--bench", "bench", "--verbose", "--", "--param"]),
|
|
execs().with_stderr_contains(&format!(
|
|
"\
|
|
[COMPILING] foo v0.0.1 ({url})
|
|
[RUNNING] `rustc [..]`
|
|
[RUNNING] `rustc [..]`
|
|
[FINISHED] release [optimized] target(s) in [..]
|
|
[RUNNING] `nonexistent-runner -r [..][/]target[/]release[/]deps[/]bench-[..][EXE] --param --bench`
|
|
",
|
|
url = p.url()
|
|
)),
|
|
);
|
|
}
|