Skip to content

Commit 00ea165

Browse files
committed
Auto merge of #14054 - Muscraft:add-assert-redactions, r=epage
Add assert redactions This was split out from #14048 so that the test changes in that PR do not block the redactions. This adds auto-redactions for: - A new `[HASH]` for `/<file>-<16 char hash>` - `[HOST_TARGET]` - `[ALT_TARGET]` - Only added if cross-compilation is allowed for the target - `[AVG_ELAPSED]` - For `bench` output - `[JITTER]` - For `bench` output This also moves all common redactions to a function that `assert_e2e` and `assert_ui` call to reduce the amount of duplicate code and makes it so we only compile regex redactions once.
2 parents c13a394 + 190ef86 commit 00ea165

File tree

20 files changed

+94
-76
lines changed

20 files changed

+94
-76
lines changed

crates/cargo-test-support/src/compare.rs

+54-41
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,25 @@
3636
//! a problem.
3737
//! - Carriage returns are removed, which can help when running on Windows.
3838
39-
use crate::diff;
39+
use crate::cross_compile::try_alternate;
4040
use crate::paths;
41+
use crate::{diff, rustc_host};
4142
use anyhow::{bail, Context, Result};
4243
use serde_json::Value;
4344
use std::fmt;
4445
use std::path::Path;
4546
use std::str;
4647
use url::Url;
4748

49+
/// This makes it easier to write regex replacements that are guaranteed to only
50+
/// get compiled once
51+
macro_rules! regex {
52+
($re:literal $(,)?) => {{
53+
static RE: std::sync::OnceLock<regex::Regex> = std::sync::OnceLock::new();
54+
RE.get_or_init(|| regex::Regex::new($re).unwrap())
55+
}};
56+
}
57+
4858
/// Assertion policy for UI tests
4959
///
5060
/// This emphasizes showing as much content as possible at the cost of more brittleness
@@ -77,37 +87,8 @@ use url::Url;
7787
/// a problem.
7888
/// - Carriage returns are removed, which can help when running on Windows.
7989
pub fn assert_ui() -> snapbox::Assert {
80-
let root = paths::root();
81-
// Use `from_file_path` instead of `from_dir_path` so the trailing slash is
82-
// put in the users output, rather than hidden in the variable
83-
let root_url = url::Url::from_file_path(&root).unwrap().to_string();
84-
8590
let mut subs = snapbox::Redactions::new();
86-
subs.extend(MIN_LITERAL_REDACTIONS.into_iter().cloned())
87-
.unwrap();
88-
subs.insert("[ROOT]", root).unwrap();
89-
subs.insert("[ROOTURL]", root_url).unwrap();
90-
subs.insert(
91-
"[ELAPSED]",
92-
regex::Regex::new("Finished.*in (?<redacted>[0-9]+(\\.[0-9]+))s").unwrap(),
93-
)
94-
.unwrap();
95-
// output from libtest
96-
subs.insert(
97-
"[ELAPSED]",
98-
regex::Regex::new("; finished in (?<redacted>[0-9]+(\\.[0-9]+))s").unwrap(),
99-
)
100-
.unwrap();
101-
subs.insert(
102-
"[FILE_SIZE]",
103-
regex::Regex::new("(?<redacted>[0-9]+(\\.[0-9]+)([a-zA-Z]i)?)B").unwrap(),
104-
)
105-
.unwrap();
106-
subs.insert(
107-
"[HASH]",
108-
regex::Regex::new("home/\\.cargo/registry/src/-(?<redacted>[a-z0-9]+)").unwrap(),
109-
)
110-
.unwrap();
91+
add_common_redactions(&mut subs);
11192
snapbox::Assert::new()
11293
.action_env(snapbox::assert::DEFAULT_ACTION_ENV)
11394
.redact_with(subs)
@@ -145,48 +126,80 @@ pub fn assert_ui() -> snapbox::Assert {
145126
/// a problem.
146127
/// - Carriage returns are removed, which can help when running on Windows.
147128
pub fn assert_e2e() -> snapbox::Assert {
129+
let mut subs = snapbox::Redactions::new();
130+
add_common_redactions(&mut subs);
131+
subs.extend(E2E_LITERAL_REDACTIONS.into_iter().cloned())
132+
.unwrap();
133+
134+
snapbox::Assert::new()
135+
.action_env(snapbox::assert::DEFAULT_ACTION_ENV)
136+
.redact_with(subs)
137+
}
138+
139+
fn add_common_redactions(subs: &mut snapbox::Redactions) {
148140
let root = paths::root();
149141
// Use `from_file_path` instead of `from_dir_path` so the trailing slash is
150142
// put in the users output, rather than hidden in the variable
151143
let root_url = url::Url::from_file_path(&root).unwrap().to_string();
152144

153-
let mut subs = snapbox::Redactions::new();
154145
subs.extend(MIN_LITERAL_REDACTIONS.into_iter().cloned())
155146
.unwrap();
156-
subs.extend(E2E_LITERAL_REDACTIONS.into_iter().cloned())
157-
.unwrap();
158147
subs.insert("[ROOT]", root).unwrap();
159148
subs.insert("[ROOTURL]", root_url).unwrap();
149+
// For e2e tests
160150
subs.insert(
161151
"[ELAPSED]",
162-
regex::Regex::new("[FINISHED].*in (?<redacted>[0-9]+(\\.[0-9]+))s").unwrap(),
152+
regex!("[FINISHED].*in (?<redacted>[0-9]+(\\.[0-9]+))s"),
153+
)
154+
.unwrap();
155+
// for UI tests
156+
subs.insert(
157+
"[ELAPSED]",
158+
regex!("Finished.*in (?<redacted>[0-9]+(\\.[0-9]+))s"),
163159
)
164160
.unwrap();
165161
// output from libtest
166162
subs.insert(
167163
"[ELAPSED]",
168-
regex::Regex::new("; finished in (?<redacted>[0-9]+(\\.[0-9]+))s").unwrap(),
164+
regex!("; finished in (?<redacted>[0-9]+(\\.[0-9]+))s"),
169165
)
170166
.unwrap();
171167
subs.insert(
172168
"[FILE_SIZE]",
173-
regex::Regex::new("(?<redacted>[0-9]+(\\.[0-9]+)([a-zA-Z]i)?)B").unwrap(),
169+
regex!("(?<redacted>[0-9]+(\\.[0-9]+)([a-zA-Z]i)?)B"),
174170
)
175171
.unwrap();
176172
subs.insert(
177173
"[HASH]",
178-
regex::Regex::new("home/\\.cargo/registry/src/-(?<redacted>[a-z0-9]+)").unwrap(),
174+
regex!("home/\\.cargo/registry/src/-(?<redacted>[a-z0-9]+)"),
175+
)
176+
.unwrap();
177+
subs.insert("[HASH]", regex!("/[a-z0-9\\-_]+-(?<redacted>[0-9a-f]{16})"))
178+
.unwrap();
179+
subs.insert("[HOST_TARGET]", rustc_host()).unwrap();
180+
if let Some(alt_target) = try_alternate() {
181+
subs.insert("[ALT_TARGET]", alt_target).unwrap();
182+
}
183+
subs.insert(
184+
"[AVG_ELAPSED]",
185+
regex!("(?<redacted>[0-9]+(\\.[0-9]+)?) ns/iter"),
186+
)
187+
.unwrap();
188+
subs.insert(
189+
"[JITTER]",
190+
regex!("ns/iter \\(\\+/- (?<redacted>[0-9]+(\\.[0-9]+)?)\\)"),
179191
)
180192
.unwrap();
181-
snapbox::Assert::new()
182-
.action_env(snapbox::assert::DEFAULT_ACTION_ENV)
183-
.redact_with(subs)
184193
}
185194

186195
static MIN_LITERAL_REDACTIONS: &[(&str, &str)] = &[
187196
("[EXE]", std::env::consts::EXE_SUFFIX),
188197
("[BROKEN_PIPE]", "Broken pipe (os error 32)"),
189198
("[BROKEN_PIPE]", "The pipe is being closed. (os error 232)"),
199+
// Unix message for exit status
200+
("[EXIT_STATUS]", "exit status"),
201+
// Windows message for exit status
202+
("[EXIT_STATUS]", "exit code"),
190203
];
191204
static E2E_LITERAL_REDACTIONS: &[(&str, &str)] = &[
192205
("[RUNNING]", " Running"),

crates/cargo-test-support/src/cross_compile.rs

+11-6
Original file line numberDiff line numberDiff line change
@@ -209,18 +209,23 @@ pub fn native_arch() -> &'static str {
209209
///
210210
/// Only use this function on tests that check `cross_compile::disabled`.
211211
pub fn alternate() -> &'static str {
212+
try_alternate().expect("This test should be gated on cross_compile::disabled.")
213+
}
214+
215+
/// A possible alternate target-triple to build with.
216+
pub(crate) fn try_alternate() -> Option<&'static str> {
212217
if cfg!(all(target_os = "macos", target_arch = "aarch64")) {
213-
"x86_64-apple-darwin"
218+
Some("x86_64-apple-darwin")
214219
} else if cfg!(target_os = "macos") {
215-
"x86_64-apple-ios"
220+
Some("x86_64-apple-ios")
216221
} else if cfg!(target_os = "linux") {
217-
"i686-unknown-linux-gnu"
222+
Some("i686-unknown-linux-gnu")
218223
} else if cfg!(all(target_os = "windows", target_env = "msvc")) {
219-
"i686-pc-windows-msvc"
224+
Some("i686-pc-windows-msvc")
220225
} else if cfg!(all(target_os = "windows", target_env = "gnu")) {
221-
"i686-pc-windows-gnu"
226+
Some("i686-pc-windows-gnu")
222227
} else {
223-
panic!("This test should be gated on cross_compile::disabled.");
228+
None
224229
}
225230
}
226231

tests/testsuite/cargo_add/target/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fn case() {
2828

2929
snapbox::cmd::Command::cargo_ui()
3030
.arg("add")
31-
.arg_line("my-package1 my-package2 --target i686-unknown-linux-gnu")
31+
.arg_line("my-package1 my-package2 --target wasm32-unknown-unknown")
3232
.current_dir(cwd)
3333
.assert()
3434
.success()

tests/testsuite/cargo_add/target/out/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ name = "cargo-list-test-fixture"
55
version = "0.0.0"
66
edition = "2015"
77

8-
[target.i686-unknown-linux-gnu.dependencies]
8+
[target.wasm32-unknown-unknown.dependencies]
99
my-package1 = "99999.0.0"
1010
my-package2 = "99999.0.0"

tests/testsuite/cargo_add/target/stderr.term.svg

+2-2
Loading

tests/testsuite/cargo_remove/invalid_target/out/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "src/main.rs"
1010
[target.x86_64-unknown-freebsd.build-dependencies]
1111
semver = "0.1.0"
1212

13-
[target.x86_64-unknown-linux-gnu.build-dependencies]
13+
[target.wasm32-unknown-unknown.build-dependencies]
1414
semver = "0.1.0"
1515

1616
[dependencies]
@@ -20,14 +20,14 @@ semver = "0.1"
2020
toml = "0.1"
2121
clippy = "0.4"
2222

23-
[target.x86_64-unknown-linux-gnu.dependencies]
23+
[target.wasm32-unknown-unknown.dependencies]
2424
dbus = "0.6.2"
2525

2626
[dev-dependencies]
2727
regex = "0.1.1"
2828
serde = "1.0.90"
2929

30-
[target.x86_64-unknown-linux-gnu.dev-dependencies]
30+
[target.wasm32-unknown-unknown.dev-dependencies]
3131
ncurses = "20.0"
3232

3333
[features]

tests/testsuite/cargo_remove/invalid_target/stderr.term.svg

+1-1
Loading

tests/testsuite/cargo_remove/invalid_target_dep/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fn case() {
2828

2929
snapbox::cmd::Command::cargo_ui()
3030
.arg("remove")
31-
.args(["--target", "x86_64-unknown-linux-gnu", "toml"])
31+
.args(["--target", "wasm32-unknown-unknown", "toml"])
3232
.current_dir(cwd)
3333
.assert()
3434
.code(101)

tests/testsuite/cargo_remove/invalid_target_dep/out/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "src/main.rs"
1010
[target.x86_64-unknown-freebsd.build-dependencies]
1111
semver = "0.1.0"
1212

13-
[target.x86_64-unknown-linux-gnu.build-dependencies]
13+
[target.wasm32-unknown-unknown.build-dependencies]
1414
semver = "0.1.0"
1515

1616
[dependencies]
@@ -20,14 +20,14 @@ semver = "0.1"
2020
toml = "0.1"
2121
clippy = "0.4"
2222

23-
[target.x86_64-unknown-linux-gnu.dependencies]
23+
[target.wasm32-unknown-unknown.dependencies]
2424
dbus = "0.6.2"
2525

2626
[dev-dependencies]
2727
regex = "0.1.1"
2828
serde = "1.0.90"
2929

30-
[target.x86_64-unknown-linux-gnu.dev-dependencies]
30+
[target.wasm32-unknown-unknown.dev-dependencies]
3131
ncurses = "20.0"
3232

3333
[features]

tests/testsuite/cargo_remove/invalid_target_dep/stderr.term.svg

+2-2
Loading

tests/testsuite/cargo_remove/remove-target.in/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "src/main.rs"
1010
[target.x86_64-unknown-freebsd.build-dependencies]
1111
semver = "0.1.0"
1212

13-
[target.x86_64-unknown-linux-gnu.build-dependencies]
13+
[target.wasm32-unknown-unknown.build-dependencies]
1414
semver = "0.1.0"
1515

1616
[dependencies]
@@ -20,14 +20,14 @@ semver = "0.1"
2020
toml = "0.1"
2121
clippy = "0.4"
2222

23-
[target.x86_64-unknown-linux-gnu.dependencies]
23+
[target.wasm32-unknown-unknown.dependencies]
2424
dbus = "0.6.2"
2525

2626
[dev-dependencies]
2727
regex = "0.1.1"
2828
serde = "1.0.90"
2929

30-
[target.x86_64-unknown-linux-gnu.dev-dependencies]
30+
[target.wasm32-unknown-unknown.dev-dependencies]
3131
ncurses = "20.0"
3232

3333
[features]

tests/testsuite/cargo_remove/target/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fn case() {
2828

2929
snapbox::cmd::Command::cargo_ui()
3030
.arg("remove")
31-
.args(["--target", "x86_64-unknown-linux-gnu", "dbus"])
31+
.args(["--target", "wasm32-unknown-unknown", "dbus"])
3232
.current_dir(cwd)
3333
.assert()
3434
.success()

tests/testsuite/cargo_remove/target/out/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "src/main.rs"
1010
[target.x86_64-unknown-freebsd.build-dependencies]
1111
semver = "0.1.0"
1212

13-
[target.x86_64-unknown-linux-gnu.build-dependencies]
13+
[target.wasm32-unknown-unknown.build-dependencies]
1414
semver = "0.1.0"
1515

1616
[dependencies]
@@ -24,7 +24,7 @@ clippy = "0.4"
2424
regex = "0.1.1"
2525
serde = "1.0.90"
2626

27-
[target.x86_64-unknown-linux-gnu.dev-dependencies]
27+
[target.wasm32-unknown-unknown.dev-dependencies]
2828
ncurses = "20.0"
2929

3030
[features]

tests/testsuite/cargo_remove/target/stderr.term.svg

+1-1
Loading

tests/testsuite/cargo_remove/target_build/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fn case() {
2828

2929
snapbox::cmd::Command::cargo_ui()
3030
.arg("remove")
31-
.args(["--build", "--target", "x86_64-unknown-linux-gnu", "semver"])
31+
.args(["--build", "--target", "wasm32-unknown-unknown", "semver"])
3232
.current_dir(cwd)
3333
.assert()
3434
.success()

tests/testsuite/cargo_remove/target_build/out/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ semver = "0.1"
1717
toml = "0.1"
1818
clippy = "0.4"
1919

20-
[target.x86_64-unknown-linux-gnu.dependencies]
20+
[target.wasm32-unknown-unknown.dependencies]
2121
dbus = "0.6.2"
2222

2323
[dev-dependencies]
2424
regex = "0.1.1"
2525
serde = "1.0.90"
2626

27-
[target.x86_64-unknown-linux-gnu.dev-dependencies]
27+
[target.wasm32-unknown-unknown.dev-dependencies]
2828
ncurses = "20.0"
2929

3030
[features]

tests/testsuite/cargo_remove/target_build/stderr.term.svg

+1-1
Loading

0 commit comments

Comments
 (0)