|
1 | 1 | use std::env;
|
2 | 2 |
|
3 |
| -use support::{project, execs, main_file, basic_bin_manifest}; |
| 3 | +use support::{git, project, execs, main_file, basic_bin_manifest}; |
| 4 | +use support::{COMPILING, RUNNING}; |
| 5 | +use support::registry::Package; |
4 | 6 | use hamcrest::{assert_that, existing_dir, existing_file, is_not};
|
5 | 7 |
|
6 | 8 | fn setup() {
|
@@ -93,3 +95,135 @@ test!(clean_multiple_packages {
|
93 | 95 | assert_that(d1_path, is_not(existing_file()));
|
94 | 96 | assert_that(d2_path, is_not(existing_file()));
|
95 | 97 | });
|
| 98 | + |
| 99 | +test!(clean_release { |
| 100 | + let p = project("foo") |
| 101 | + .file("Cargo.toml", r#" |
| 102 | + [package] |
| 103 | + name = "foo" |
| 104 | + version = "0.0.1" |
| 105 | + authors = [] |
| 106 | +
|
| 107 | + [dependencies] |
| 108 | + a = { path = "a" } |
| 109 | + "#) |
| 110 | + .file("src/main.rs", "fn main() {}") |
| 111 | + .file("a/Cargo.toml", r#" |
| 112 | + [package] |
| 113 | + name = "a" |
| 114 | + version = "0.0.1" |
| 115 | + authors = [] |
| 116 | + "#) |
| 117 | + .file("a/src/lib.rs", ""); |
| 118 | + p.build(); |
| 119 | + |
| 120 | + assert_that(p.cargo_process("build").arg("--release"), |
| 121 | + execs().with_status(0)); |
| 122 | + |
| 123 | + assert_that(p.cargo("clean").arg("-p").arg("foo"), |
| 124 | + execs().with_status(0)); |
| 125 | + assert_that(p.cargo("build").arg("--release"), |
| 126 | + execs().with_status(0).with_stdout("")); |
| 127 | + |
| 128 | + assert_that(p.cargo("clean").arg("-p").arg("foo").arg("--release"), |
| 129 | + execs().with_status(0)); |
| 130 | + assert_that(p.cargo("build").arg("--release"), |
| 131 | + execs().with_status(0).with_stdout(&format!("\ |
| 132 | +{compiling} foo v0.0.1 ([..]) |
| 133 | +", compiling = COMPILING))); |
| 134 | +}); |
| 135 | + |
| 136 | +test!(build_script { |
| 137 | + let p = project("foo") |
| 138 | + .file("Cargo.toml", r#" |
| 139 | + [package] |
| 140 | + name = "foo" |
| 141 | + version = "0.0.1" |
| 142 | + authors = [] |
| 143 | + build = "build.rs" |
| 144 | + "#) |
| 145 | + .file("src/main.rs", "fn main() {}") |
| 146 | + .file("build.rs", r#" |
| 147 | + use std::path::PathBuf; |
| 148 | + use std::env; |
| 149 | +
|
| 150 | + fn main() { |
| 151 | + let out = PathBuf::from(env::var_os("OUT_DIR").unwrap()); |
| 152 | + if env::var("FIRST").is_ok() { |
| 153 | + std::fs::File::create(out.join("out")).unwrap(); |
| 154 | + } else { |
| 155 | + assert!(!std::fs::metadata(out.join("out")).is_ok()); |
| 156 | + } |
| 157 | + } |
| 158 | + "#) |
| 159 | + .file("a/src/lib.rs", ""); |
| 160 | + p.build(); |
| 161 | + |
| 162 | + assert_that(p.cargo_process("build").env("FIRST", "1"), |
| 163 | + execs().with_status(0)); |
| 164 | + assert_that(p.cargo("clean").arg("-p").arg("foo"), |
| 165 | + execs().with_status(0)); |
| 166 | + assert_that(p.cargo("build").arg("-v"), |
| 167 | + execs().with_status(0).with_stdout(&format!("\ |
| 168 | +{compiling} foo v0.0.1 ([..]) |
| 169 | +{running} `rustc build.rs [..]` |
| 170 | +{running} `[..]build-script-build[..]` |
| 171 | +{running} `rustc src[..]main.rs [..]` |
| 172 | +", compiling = COMPILING, running = RUNNING))); |
| 173 | +}); |
| 174 | + |
| 175 | +test!(clean_git { |
| 176 | + let git = git::new("dep", |project| { |
| 177 | + project.file("Cargo.toml", r#" |
| 178 | + [project] |
| 179 | + name = "dep" |
| 180 | + version = "0.5.0" |
| 181 | + authors = [] |
| 182 | + "#) |
| 183 | + .file("src/lib.rs", "") |
| 184 | + }).unwrap(); |
| 185 | + |
| 186 | + let p = project("foo") |
| 187 | + .file("Cargo.toml", &format!(r#" |
| 188 | + [package] |
| 189 | + name = "foo" |
| 190 | + version = "0.0.1" |
| 191 | + authors = [] |
| 192 | +
|
| 193 | + [dependencies] |
| 194 | + dep = {{ git = '{}' }} |
| 195 | + "#, git.url())) |
| 196 | + .file("src/main.rs", "fn main() {}"); |
| 197 | + p.build(); |
| 198 | + |
| 199 | + assert_that(p.cargo_process("build"), |
| 200 | + execs().with_status(0)); |
| 201 | + assert_that(p.cargo("clean").arg("-p").arg("dep"), |
| 202 | + execs().with_status(0).with_stdout("")); |
| 203 | + assert_that(p.cargo("build"), |
| 204 | + execs().with_status(0)); |
| 205 | +}); |
| 206 | + |
| 207 | +test!(registry { |
| 208 | + let p = project("foo") |
| 209 | + .file("Cargo.toml", r#" |
| 210 | + [package] |
| 211 | + name = "foo" |
| 212 | + version = "0.0.1" |
| 213 | + authors = [] |
| 214 | +
|
| 215 | + [dependencies] |
| 216 | + bar = "0.1" |
| 217 | + "#) |
| 218 | + .file("src/main.rs", "fn main() {}"); |
| 219 | + p.build(); |
| 220 | + |
| 221 | + Package::new("bar", "0.1.0").publish(); |
| 222 | + |
| 223 | + assert_that(p.cargo_process("build"), |
| 224 | + execs().with_status(0)); |
| 225 | + assert_that(p.cargo("clean").arg("-p").arg("bar"), |
| 226 | + execs().with_status(0).with_stdout("")); |
| 227 | + assert_that(p.cargo("build"), |
| 228 | + execs().with_status(0)); |
| 229 | +}); |
0 commit comments