-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Port from bespoke assertions of snapbox #14039
Labels
A-testing-cargo-itself
Area: cargo's tests
C-enhancement
Category: enhancement
S-accepted
Status: Issue or feature is accepted, and has a team member available to help mentor or review
Comments
epage
added
C-enhancement
Category: enhancement
A-testing-cargo-itself
Area: cargo's tests
S-accepted
Status: Issue or feature is accepted, and has a team member available to help mentor or review
labels
Jun 10, 2024
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
#14041 highlights a blocker for |
This comment was marked as resolved.
This comment was marked as resolved.
bors
added a commit
that referenced
this issue
Jun 12, 2024
test: migrate build_script_env to snapbox ### What does this PR try to resolve? part of #14039.
bors
added a commit
that referenced
this issue
Jun 13, 2024
test: migrate features_are_quoted to snapbox ### What does this PR try to resolve? Part of #14039. Migrate `tests/testsuite/shell_quoting.rs` to snapbox. ### How should we test and review this PR? N/A ### Additional information N/A
This comment was marked as resolved.
This comment was marked as resolved.
bors
added a commit
that referenced
this issue
Jun 13, 2024
Migrate a few test files to snapbox This migrates the following files to `snapbox` - `artifact_dep` - Has a few `does_not_contain` - `artifact_dir` - `bad_config` - `bad_manifest_path` - Does not use `str!` for all tests - `bench` Note: This also adds auto-redactions for: - `[HOST_TARGET]` - `[ALT_TARGET]` - Only added if cross-compilation is allowed for the target - `[AVG_ELAPSED]` - For `bench` output - `[JITTER]` - For `bench` output Part of #14039
2 tasks
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
dieterplex
added a commit
to dieterplex/cargo
that referenced
this issue
Jun 15, 2024
dieterplex
added a commit
to dieterplex/cargo
that referenced
this issue
Jun 15, 2024
dieterplex
added a commit
to dieterplex/cargo
that referenced
this issue
Jun 15, 2024
bors
added a commit
that referenced
this issue
Jun 15, 2024
test: Migrate tests/testsuite/co*.rs to snapbox Migrating files: - tests/testsuite/collisions.rs - `with_stderr_does_not_contain` in test `collision_doc_host_target_feature_split` - tests/testsuite/concurrent.rs - tests/testsuite/config.rs - tests/testsuite/config_cli.rs - tests/testsuite/config_include.rs - tests/testsuite/corrupt_git.rs Testing with command `SNAPSHOTS=overwrite cargo test collisions::` or so. Part of #14039
This comment was marked as resolved.
This comment was marked as resolved.
bors
added a commit
that referenced
this issue
Jul 26, 2024
test: migrate messages to snapbox ### What does this PR try to resolve? Part of #14039. Migrate following to snapbox: - `tests/testsuite/messages.rs`
bors
added a commit
that referenced
this issue
Aug 15, 2024
test: Migrate some json tests to snapbox ### What does this PR try to resolve? This is part of #14039 ### How should we test and review this PR? ### Additional information This was unblocked because of assert-rs/snapbox#350
epage
added a commit
to epage/cargo
that referenced
this issue
Aug 15, 2024
This is part of rust-lang#14039
bors
added a commit
that referenced
this issue
Aug 16, 2024
test: Migrate old_cargos to snapbox This is part of #14039
Looks like we've finished every file-level migration. We have 124 remaining |
antoniospg
pushed a commit
to antoniospg/cargo
that referenced
this issue
Sep 8, 2024
This is part of rust-lang#14039
This was referenced Sep 22, 2024
bors
added a commit
that referenced
this issue
Sep 24, 2024
test: Migrate remaining with_stdout/with_stderr calls ### What does this PR try to resolve? This is part of #14039 and is another step towards us not needing our own redaction logic. Along the way, I switched us to using `expect` to make it easier to tell when `allow(deprecated)` should be removed. ### How should we test and review this PR? ### Additional information
bors
added a commit
that referenced
this issue
Oct 4, 2024
test: Remove the last of our custom json assertions ### What does this PR try to resolve? This is part of #14039 and consolidates us down to only one way of doing json assertions, using snapbox. ### How should we test and review this PR? ### Additional information
bors
added a commit
that referenced
this issue
Oct 16, 2024
test: Migrate publish snapshotting to snapbox ### What does this PR try to resolve? This is part of #14039 and allows snapshotting in more places. ### How should we test and review this PR? ### Additional information `InMemoryDir` is taken from some experiments I've been doing in snapshot for filesystem assertions. That got held up because of design complexity but publish validation's needs are simpler than I was designing for.
bors
added a commit
that referenced
this issue
Oct 31, 2024
refactor(test): Remove dead 'expect_stdout_contains_n' check ### What does this PR try to resolve? This was missed when removing the assert This is part of #14039 ### How should we test and review this PR? ### Additional information
bors
added a commit
that referenced
this issue
Nov 4, 2024
test: Update some emaining unordered tests to snapbox ### What does this PR try to resolve? This is part of #14039 This leaves `global_cache_tracker.rs` as it requires some more thinking. As for the flakiness in `freshness.rs` that was seen in #14161, `compare.rs` would prioritize expected lines according to their length (assuming its more specific). Currently, snapbox prioritizes according to the line order. So we just need to put the proc-macro line before the other one to ensure it gets precedence. ### How should we test and review this PR? ### Additional information
bors
added a commit
that referenced
this issue
Nov 5, 2024
test: Update some emaining unordered tests to snapbox ### What does this PR try to resolve? This is part of #14039 This leaves `global_cache_tracker.rs` as it requires some more thinking. As for the flakiness in `freshness.rs` that was seen in #14161, `compare.rs` would prioritize expected lines according to their length (assuming its more specific). Currently, snapbox prioritizes according to the line order. So we just need to put the proc-macro line before the other one to ensure it gets precedence. ### How should we test and review this PR? ### Additional information
bors
added a commit
that referenced
this issue
Nov 6, 2024
test(gc): Update remaining unordered tests to snapbox ### What does this PR try to resolve? This gets rid of the last unordered tests and removes the functions from `cargo-test-support` as part of #14039 Some tests are being less specific than they were before but in talking to ehuss, it sounded like that was ok. ### How should we test and review this PR? ### Additional information
bors
added a commit
that referenced
this issue
Nov 7, 2024
fix(test): Make redactions consistent with snapbox ### What does this PR try to resolve? I'm unsure how we should be replacing these use cases, so I'm exploring keeping them but making them use snapbox under the hood. Part of the intent of snapbox is that it provides you the building blocks to make what you need. If we go this route, we'll still need to un-deprecate and document the assertions. If we don't go this route, the tests are now more aligned with where they'll eventually be anyways. Part of #14039 ### How should we test and review this PR? ### Additional information
epage
added a commit
to epage/cargo
that referenced
this issue
Nov 7, 2024
A lot of this was pulled from rust-lang#14039
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-testing-cargo-itself
Area: cargo's tests
C-enhancement
Category: enhancement
S-accepted
Status: Issue or feature is accepted, and has a team member available to help mentor or review
Traditionally,
cargo-test-support
has had bespoke assertions, requiring hand implemented diff algorithms. As there is less of a community around this, the knowledge is more specialized, its less likely to be documented, and we are on our own for feature development.In #13980 and #14031, we introduced the use of snapbox as replacement for our own assertions and need to work to migrate to them.
Aside: doc updates related to this transition
Porting Instructions
1. Select a file to port
The files should have
#![allow(deprecated)]
at the top, e.g.Please check the comments on this issue for anyone to have claimed the file and then post that you claim the file
2. Remove
#![allow(deprecated)]
to identify what work is neededIf nothing, congrats, that was easy!
3. Resolve basic deprecations
Replace
Execs::with_stdout("...")
withReplace
Execs::with_stderr("...")
with(prelude is only needed for some steps)
Commit these changes
Run
SNAPSHOTS=overwrite cargo test && cargo check --test testsuite
. In rare cases,SNAPSHOTS=overwrite
may make bad edits. Feel free to create a reproduction case and create an issue. They are usually obvious how to fix, so don't worry.Diff the snapshots. Is there anything machine or run specific in them that previously was elided out with
[..]
?[..]
Once its working, amend your commit with the snapshots
4. Resolve non-literal deprecations
Like Step 3, but not just
with_stdout("...")
but with variables orformat!
.Evaluate whether a literal could be used
format!
for, then keep itSo this can end up with either
with_std*_data(expression)
with_std*_data(str![])
like in Step 35. Repeat with "straight forward" deprecations
with_stdout_unordered(expected)
->with_stdout_data(expected.unordered())
with_stderr_unordered(expected)
->with_stderr_data(expected.unordered())
with_json(expected)
->with_stdout_data(expected.json_lines())
orwith_stdout_data(expected.json())
.unordered()
6. Contains / Does not Contains deprecations
A judgement needs to be made for how to handle these.
A
contains
can be modeled by surrounding a entry with...
(text) or"...",
(json lines). The question is whether we should still do this or use a different method.contains
with an equality check, use multi-line globs (...
) for rustc errors that weren't previously matched to minimize tying Cargo's tests to the exact output of rustccontains
can be merged into a singleeq
with..
interspersed (or one...
and.unordered()
). For example, see 3054936unordered
, likely string literals, rather thanstr![]
should be used, as these can't correctly be updatedA
does_not_contain
/line_without
cannot be modeled at this time. The challenge with these is that they are brittle and you can't tell when they are no longer testing for what you think because the output changed. We should evaluate what to do with these on a case-by-case basis.When in doubt, feel free to put
#[allow(deprecated)]
on a statement and move on. We can come back to these later.The text was updated successfully, but these errors were encountered: