Skip to content

Commit 28d213b

Browse files
committed
Auto merge of #14127 - eth3lbert:snapbox-rrrr, r=epage
test: migrate rename_deps, replace, required_features and run to snapbox ### What does this PR try to resolve? Part of #14039. Migrate following to snapbox: - `tests/testsuite/rename_deps.rs` - `tests/testsuite/replace.rs` - `tests/testsuite/required_features.rs` - `tests/testsuite/run.rs`
2 parents bc89bff + 913b12b commit 28d213b

File tree

4 files changed

+1092
-862
lines changed

4 files changed

+1092
-862
lines changed

tests/testsuite/rename_deps.rs

+24-27
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
//! Tests for renaming dependencies.
22
3-
#![allow(deprecated)]
4-
53
use cargo_test_support::git;
64
use cargo_test_support::paths;
75
use cargo_test_support::registry::{self, Package};
8-
use cargo_test_support::{basic_manifest, project};
6+
use cargo_test_support::{basic_manifest, project, str};
97

108
#[cargo_test]
119
fn rename_dependency() {
@@ -191,15 +189,14 @@ fn rename_twice() {
191189

192190
p.cargo("build -v")
193191
.with_status(101)
194-
.with_stderr(
195-
"\
196-
[UPDATING] `[..]` index
192+
.with_stderr_data(str![[r#"
193+
[UPDATING] `dummy-registry` index
197194
[LOCKING] 2 packages to latest compatible versions
198195
[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+
"#]])
203200
.run();
204201
}
205202

@@ -242,7 +239,14 @@ fn rename_affects_fingerprint() {
242239

243240
p.cargo("build -v")
244241
.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+
"#]])
246250
.run();
247251
}
248252

@@ -274,18 +278,12 @@ fn can_run_doc_tests() {
274278
)
275279
.build();
276280

277-
foo.cargo("test -v")
278-
.with_stderr_contains(
279-
"\
281+
foo.cargo("test -v").with_stderr_data(str![[r#"
282+
...
280283
[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();
289287
}
290288

291289
#[cargo_test]
@@ -373,14 +371,13 @@ fn features_not_working() {
373371

374372
p.cargo("build -v")
375373
.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`
379376
380377
Caused by:
381378
feature `default` includes `p1` which is neither a dependency nor another feature
382-
",
383-
)
379+
380+
"#]])
384381
.run();
385382
}
386383

0 commit comments

Comments
 (0)