mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
104 lines
2.6 KiB
Rust
104 lines
2.6 KiB
Rust
use std::fs::File;
|
|
|
|
use cargotest::sleep_ms;
|
|
use cargotest::support::{project, execs};
|
|
use hamcrest::assert_that;
|
|
|
|
#[test]
|
|
fn rerun_if_env_changes() {
|
|
let p = project("foo")
|
|
.file("Cargo.toml", r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.5.0"
|
|
authors = []
|
|
"#)
|
|
.file("src/main.rs", r#"
|
|
fn main() {}
|
|
"#)
|
|
.file("build.rs", r#"
|
|
fn main() {
|
|
println!("cargo:rerun-if-env-changed=FOO");
|
|
}
|
|
"#)
|
|
.build();
|
|
|
|
assert_that(p.cargo("build"),
|
|
execs().with_status(0)
|
|
.with_stderr("\
|
|
[COMPILING] foo v0.5.0 ([..])
|
|
[FINISHED] [..]
|
|
"));
|
|
assert_that(p.cargo("build").env("FOO", "bar"),
|
|
execs().with_status(0)
|
|
.with_stderr("\
|
|
[COMPILING] foo v0.5.0 ([..])
|
|
[FINISHED] [..]
|
|
"));
|
|
assert_that(p.cargo("build").env("FOO", "baz"),
|
|
execs().with_status(0)
|
|
.with_stderr("\
|
|
[COMPILING] foo v0.5.0 ([..])
|
|
[FINISHED] [..]
|
|
"));
|
|
assert_that(p.cargo("build").env("FOO", "baz"),
|
|
execs().with_status(0)
|
|
.with_stderr("\
|
|
[FINISHED] [..]
|
|
"));
|
|
assert_that(p.cargo("build"),
|
|
execs().with_status(0)
|
|
.with_stderr("\
|
|
[COMPILING] foo v0.5.0 ([..])
|
|
[FINISHED] [..]
|
|
"));
|
|
}
|
|
|
|
#[test]
|
|
fn rerun_if_env_or_file_changes() {
|
|
let p = project("foo")
|
|
.file("Cargo.toml", r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.5.0"
|
|
authors = []
|
|
"#)
|
|
.file("src/main.rs", r#"
|
|
fn main() {}
|
|
"#)
|
|
.file("build.rs", r#"
|
|
fn main() {
|
|
println!("cargo:rerun-if-env-changed=FOO");
|
|
println!("cargo:rerun-if-changed=foo");
|
|
}
|
|
"#)
|
|
.file("foo", "")
|
|
.build();
|
|
|
|
assert_that(p.cargo("build"),
|
|
execs().with_status(0)
|
|
.with_stderr("\
|
|
[COMPILING] foo v0.5.0 ([..])
|
|
[FINISHED] [..]
|
|
"));
|
|
assert_that(p.cargo("build").env("FOO", "bar"),
|
|
execs().with_status(0)
|
|
.with_stderr("\
|
|
[COMPILING] foo v0.5.0 ([..])
|
|
[FINISHED] [..]
|
|
"));
|
|
assert_that(p.cargo("build").env("FOO", "bar"),
|
|
execs().with_status(0)
|
|
.with_stderr("\
|
|
[FINISHED] [..]
|
|
"));
|
|
sleep_ms(1000);
|
|
File::create(p.root().join("foo")).unwrap();
|
|
assert_that(p.cargo("build").env("FOO", "bar"),
|
|
execs().with_status(0)
|
|
.with_stderr("\
|
|
[COMPILING] foo v0.5.0 ([..])
|
|
[FINISHED] [..]
|
|
"));
|
|
}
|