|
| 1 | +extern crate cargotest; |
| 2 | +extern crate hamcrest; |
| 3 | + |
| 4 | +use cargotest::support::{project, execs, ProjectBuilder}; |
| 5 | +use cargotest::support::registry::Package; |
| 6 | +use hamcrest::assert_that; |
| 7 | + |
| 8 | +static WARNING1: &'static str = "Hello! I'm a warning. :)"; |
| 9 | +static WARNING2: &'static str = "And one more!"; |
| 10 | + |
| 11 | +fn make_lib(lib_src: &str) { |
| 12 | + Package::new("foo", "0.0.1") |
| 13 | + .file("Cargo.toml", r#" |
| 14 | + [package] |
| 15 | + name = "foo" |
| 16 | + authors = [] |
| 17 | + version = "0.0.1" |
| 18 | + build = "build.rs" |
| 19 | + "#) |
| 20 | + .file("build.rs", &format!(r#" |
| 21 | + fn main() {{ |
| 22 | + use std::io::Write; |
| 23 | + println!("cargo:warning={{}}", "{}"); |
| 24 | + println!("hidden stdout"); |
| 25 | + write!(&mut ::std::io::stderr(), "hidden stderr"); |
| 26 | + println!("cargo:warning={{}}", "{}"); |
| 27 | + }} |
| 28 | + "#, WARNING1, WARNING2)) |
| 29 | + .file("src/lib.rs", &format!("fn f() {{ {} }}", lib_src)) |
| 30 | + .publish(); |
| 31 | +} |
| 32 | + |
| 33 | +fn make_upstream(main_src: &str) -> ProjectBuilder { |
| 34 | + project("bar") |
| 35 | + .file("Cargo.toml", r#" |
| 36 | + [package] |
| 37 | + name = "bar" |
| 38 | + version = "0.0.1" |
| 39 | + authors = [] |
| 40 | +
|
| 41 | + [dependencies] |
| 42 | + foo = "*" |
| 43 | + "#) |
| 44 | + .file("src/main.rs", &format!("fn main() {{ {} }}", main_src)) |
| 45 | +} |
| 46 | + |
| 47 | +#[test] |
| 48 | +fn no_warning_on_success() { |
| 49 | + make_lib(""); |
| 50 | + let upstream = make_upstream(""); |
| 51 | + assert_that(upstream.cargo_process("build"), |
| 52 | + execs().with_status(0) |
| 53 | + .with_stderr("\ |
| 54 | +[UPDATING] registry `[..]` |
| 55 | +[DOWNLOADING] foo v0.0.1 ([..]) |
| 56 | +[COMPILING] foo v0.0.1 |
| 57 | +[COMPILING] bar v0.0.1 ([..]) |
| 58 | +[FINISHED] dev [unoptimized + debuginfo] target(s) in [..] |
| 59 | +")); |
| 60 | +} |
| 61 | + |
| 62 | +#[test] |
| 63 | +fn no_warning_on_bin_failure() { |
| 64 | + make_lib(""); |
| 65 | + let upstream = make_upstream("hi()"); |
| 66 | + assert_that(upstream.cargo_process("build"), |
| 67 | + execs().with_status(101) |
| 68 | + .with_stdout_does_not_contain("hidden stdout") |
| 69 | + .with_stderr_does_not_contain("hidden stderr") |
| 70 | + .with_stderr_does_not_contain(&format!("[WARNING] {}", WARNING1)) |
| 71 | + .with_stderr_does_not_contain(&format!("[WARNING] {}", WARNING2)) |
| 72 | + .with_stderr_contains("[UPDATING] registry `[..]`") |
| 73 | + .with_stderr_contains("[DOWNLOADING] foo v0.0.1 ([..])") |
| 74 | + .with_stderr_contains("[COMPILING] foo v0.0.1") |
| 75 | + .with_stderr_contains("[COMPILING] bar v0.0.1 ([..])")); |
| 76 | +} |
| 77 | + |
| 78 | +#[test] |
| 79 | +fn warning_on_lib_failure() { |
| 80 | + make_lib("err()"); |
| 81 | + let upstream = make_upstream(""); |
| 82 | + assert_that(upstream.cargo_process("build"), |
| 83 | + execs().with_status(101) |
| 84 | + .with_stdout_does_not_contain("hidden stdout") |
| 85 | + .with_stderr_does_not_contain("hidden stderr") |
| 86 | + .with_stderr_does_not_contain("[COMPILING] bar v0.0.1 ([..])") |
| 87 | + .with_stderr_contains("[UPDATING] registry `[..]`") |
| 88 | + .with_stderr_contains("[DOWNLOADING] foo v0.0.1 ([..])") |
| 89 | + .with_stderr_contains("[COMPILING] foo v0.0.1") |
| 90 | + .with_stderr_contains(&format!("[WARNING] {}", WARNING1)) |
| 91 | + .with_stderr_contains(&format!("[WARNING] {}", WARNING2))); |
| 92 | +} |
0 commit comments