|
1 | 1 | //! Tests for renaming dependencies.
|
2 | 2 |
|
3 |
| -#![allow(deprecated)] |
4 |
| - |
5 | 3 | use cargo_test_support::git;
|
6 | 4 | use cargo_test_support::paths;
|
7 | 5 | use cargo_test_support::registry::{self, Package};
|
8 |
| -use cargo_test_support::{basic_manifest, project}; |
| 6 | +use cargo_test_support::{basic_manifest, project, str}; |
9 | 7 |
|
10 | 8 | #[cargo_test]
|
11 | 9 | fn rename_dependency() {
|
@@ -191,15 +189,14 @@ fn rename_twice() {
|
191 | 189 |
|
192 | 190 | p.cargo("build -v")
|
193 | 191 | .with_status(101)
|
194 |
| - .with_stderr( |
195 |
| - "\ |
196 |
| -[UPDATING] `[..]` index |
| 192 | + .with_stderr_data(str![[r#" |
| 193 | +[UPDATING] `dummy-registry` index |
197 | 194 | [LOCKING] 2 packages to latest compatible versions
|
198 | 195 | [DOWNLOADING] crates ...
|
199 |
| -[DOWNLOADED] foo v0.1.0 (registry [..]) |
200 |
| -error: the crate `test v0.1.0 ([CWD])` depends on crate `foo v0.1.0` multiple times with different names |
201 |
| -", |
202 |
| - ) |
| 196 | +[DOWNLOADED] foo v0.1.0 (registry `dummy-registry`) |
| 197 | +[ERROR] the crate `test v0.1.0 ([ROOT]/foo)` depends on crate `foo v0.1.0` multiple times with different names |
| 198 | +
|
| 199 | +"#]]) |
203 | 200 | .run();
|
204 | 201 | }
|
205 | 202 |
|
@@ -242,7 +239,14 @@ fn rename_affects_fingerprint() {
|
242 | 239 |
|
243 | 240 | p.cargo("build -v")
|
244 | 241 | .with_status(101)
|
245 |
| - .with_stderr_contains("[..]can't find crate for `foo`") |
| 242 | + .with_stderr_data(str![[r#" |
| 243 | +[FRESH] foo v0.1.0 |
| 244 | +[DIRTY] test v0.1.0 ([ROOT]/foo): name of dependency changed (foo => bar) |
| 245 | +[COMPILING] test v0.1.0 ([ROOT]/foo) |
| 246 | +[RUNNING] `rustc [..]` |
| 247 | +error[E0463]: can't find crate for `foo` |
| 248 | +... |
| 249 | +"#]]) |
246 | 250 | .run();
|
247 | 251 | }
|
248 | 252 |
|
@@ -274,18 +278,12 @@ fn can_run_doc_tests() {
|
274 | 278 | )
|
275 | 279 | .build();
|
276 | 280 |
|
277 |
| - foo.cargo("test -v") |
278 |
| - .with_stderr_contains( |
279 |
| - "\ |
| 281 | + foo.cargo("test -v").with_stderr_data(str![[r#" |
| 282 | +... |
280 | 283 | [DOCTEST] foo
|
281 |
| -[RUNNING] `rustdoc [..]--test [..]src/lib.rs \ |
282 |
| - [..] \ |
283 |
| - --extern bar=[CWD]/target/debug/deps/libbar-[..].rlib \ |
284 |
| - --extern baz=[CWD]/target/debug/deps/libbar-[..].rlib \ |
285 |
| - [..]` |
286 |
| -", |
287 |
| - ) |
288 |
| - .run(); |
| 284 | +[RUNNING] `rustdoc [..]--test src/lib.rs [..] --extern bar=[ROOT]/foo/target/debug/deps/libbar-[HASH].rlib --extern baz=[ROOT]/foo/target/debug/deps/libbar-[HASH].rlib [..]` |
| 285 | +
|
| 286 | +"#]]).run(); |
289 | 287 | }
|
290 | 288 |
|
291 | 289 | #[cargo_test]
|
@@ -373,14 +371,13 @@ fn features_not_working() {
|
373 | 371 |
|
374 | 372 | p.cargo("build -v")
|
375 | 373 | .with_status(101)
|
376 |
| - .with_stderr( |
377 |
| - "\ |
378 |
| -error: failed to parse manifest at `[..]` |
| 374 | + .with_stderr_data(str![[r#" |
| 375 | +[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml` |
379 | 376 |
|
380 | 377 | Caused by:
|
381 | 378 | feature `default` includes `p1` which is neither a dependency nor another feature
|
382 |
| -", |
383 |
| - ) |
| 379 | +
|
| 380 | +"#]]) |
384 | 381 | .run();
|
385 | 382 | }
|
386 | 383 |
|
|
0 commit comments