Skip to content

Commit 01782fe

Browse files
committed
AllKinds tests: interoperability with '--all'
1 parent 3f2ecb4 commit 01782fe

File tree

1 file changed

+92
-0
lines changed

1 file changed

+92
-0
lines changed

tests/build.rs

+92
Original file line numberDiff line numberDiff line change
@@ -2804,6 +2804,51 @@ fn build_all_workspace() {
28042804
[..] Finished dev [unoptimized + debuginfo] target(s) in [..]\n"));
28052805
}
28062806

2807+
#[test]
2808+
fn build_all_workspace_implicit_examples() {
2809+
let p = project("foo")
2810+
.file("Cargo.toml", r#"
2811+
[project]
2812+
name = "foo"
2813+
version = "0.1.0"
2814+
2815+
[dependencies]
2816+
bar = { path = "bar" }
2817+
2818+
[workspace]
2819+
"#)
2820+
.file("src/lib.rs", "")
2821+
.file("src/bin/a.rs", "fn main() {}")
2822+
.file("src/bin/b.rs", "fn main() {}")
2823+
.file("examples/c.rs", "fn main() {}")
2824+
.file("examples/d.rs", "fn main() {}")
2825+
.file("bar/Cargo.toml", r#"
2826+
[project]
2827+
name = "bar"
2828+
version = "0.1.0"
2829+
"#)
2830+
.file("bar/src/lib.rs", "")
2831+
.file("bar/src/bin/e.rs", "fn main() {}")
2832+
.file("bar/src/bin/f.rs", "fn main() {}")
2833+
.file("bar/examples/g.rs", "fn main() {}")
2834+
.file("bar/examples/h.rs", "fn main() {}");
2835+
2836+
assert_that(p.cargo_process("build")
2837+
.arg("--all").arg("--examples"),
2838+
execs().with_status(0)
2839+
.with_stderr("[..] Compiling bar v0.1.0 ([..])\n\
2840+
[..] Compiling foo v0.1.0 ([..])\n\
2841+
[..] Finished dev [unoptimized + debuginfo] target(s) in [..]\n"));
2842+
assert_that(&p.bin("a"), is_not(existing_file()));
2843+
assert_that(&p.bin("b"), is_not(existing_file()));
2844+
assert_that(&p.bin("examples/c"), existing_file());
2845+
assert_that(&p.bin("examples/d"), existing_file());
2846+
assert_that(&p.bin("e"), is_not(existing_file()));
2847+
assert_that(&p.bin("f"), is_not(existing_file()));
2848+
assert_that(&p.bin("examples/g"), existing_file());
2849+
assert_that(&p.bin("examples/h"), existing_file());
2850+
}
2851+
28072852
#[test]
28082853
fn build_all_virtual_manifest() {
28092854
let p = project("workspace")
@@ -2839,6 +2884,53 @@ fn build_all_virtual_manifest() {
28392884
[..] Finished dev [unoptimized + debuginfo] target(s) in [..]\n"));
28402885
}
28412886

2887+
#[test]
2888+
fn build_all_virtual_manifest_implicit_examples() {
2889+
let p = project("foo")
2890+
.file("Cargo.toml", r#"
2891+
[workspace]
2892+
members = ["foo", "bar"]
2893+
"#)
2894+
.file("foo/Cargo.toml", r#"
2895+
[project]
2896+
name = "foo"
2897+
version = "0.1.0"
2898+
"#)
2899+
.file("foo/src/lib.rs", "")
2900+
.file("foo/src/bin/a.rs", "fn main() {}")
2901+
.file("foo/src/bin/b.rs", "fn main() {}")
2902+
.file("foo/examples/c.rs", "fn main() {}")
2903+
.file("foo/examples/d.rs", "fn main() {}")
2904+
.file("bar/Cargo.toml", r#"
2905+
[project]
2906+
name = "bar"
2907+
version = "0.1.0"
2908+
"#)
2909+
.file("bar/src/lib.rs", "")
2910+
.file("bar/src/bin/e.rs", "fn main() {}")
2911+
.file("bar/src/bin/f.rs", "fn main() {}")
2912+
.file("bar/examples/g.rs", "fn main() {}")
2913+
.file("bar/examples/h.rs", "fn main() {}");
2914+
2915+
// The order in which foo and bar are built is not guaranteed
2916+
assert_that(p.cargo_process("build")
2917+
.arg("--all").arg("--examples"),
2918+
execs().with_status(0)
2919+
.with_stderr_contains("[..] Compiling bar v0.1.0 ([..])")
2920+
.with_stderr_contains("[..] Compiling foo v0.1.0 ([..])")
2921+
.with_stderr("[..] Compiling [..] v0.1.0 ([..])\n\
2922+
[..] Compiling [..] v0.1.0 ([..])\n\
2923+
[..] Finished dev [unoptimized + debuginfo] target(s) in [..]\n"));
2924+
assert_that(&p.bin("a"), is_not(existing_file()));
2925+
assert_that(&p.bin("b"), is_not(existing_file()));
2926+
assert_that(&p.bin("examples/c"), existing_file());
2927+
assert_that(&p.bin("examples/d"), existing_file());
2928+
assert_that(&p.bin("e"), is_not(existing_file()));
2929+
assert_that(&p.bin("f"), is_not(existing_file()));
2930+
assert_that(&p.bin("examples/g"), existing_file());
2931+
assert_that(&p.bin("examples/h"), existing_file());
2932+
}
2933+
28422934
#[test]
28432935
fn build_all_member_dependency_same_name() {
28442936
let p = project("workspace")

0 commit comments

Comments
 (0)