Skip to content

Commit 1d42913

Browse files
Add GUI test for warning blocks
1 parent 57d2b84 commit 1d42913

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed

src/doc/rustdoc/src/how-to-write-documentation.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,8 @@ So, no need to manually enter those Unicode characters!
256256

257257
### Adding a warning block
258258

259-
If you want to make a "warning" stand out in the documentation, you can wrap it like this:
259+
If you want to make a warning or similar note stand out in the documentation,
260+
you can wrap it like this:
260261

261262
```md
262263
/// documentation

tests/rustdoc-gui/src/test_docs/lib.rs

+12
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,18 @@ impl Foo {
6565
pub fn must_use(&self) -> bool {
6666
true
6767
}
68+
69+
/// hello
70+
///
71+
/// <div id="doc-warning-1" class="warning">this is a warning</div>
72+
///
73+
/// done
74+
pub fn warning1() {}
75+
76+
/// Checking there is no bottom margin if "warning" is the last element.
77+
///
78+
/// <div id="doc-warning-2" class="warning">this is a warning</div>
79+
pub fn warning2() {}
6880
}
6981

7082
impl AsRef<str> for Foo {

tests/rustdoc-gui/warning-block.goml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
// Test to check that the "warning blocks" are displayed as expected.
2+
go-to: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html"
3+
show-text: true
4+
5+
define-function: (
6+
"check-warning",
7+
(theme, color, border_color, background_color),
8+
block {
9+
set-local-storage: {"rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false"}
10+
reload:
11+
12+
// The IDs are added directly into the DOM to make writing this test easier.
13+
assert-css: ("#doc-warning-1", {
14+
"margin-bottom": "12px",
15+
"color": |color|,
16+
"border-left": "2px solid " + |border_color|,
17+
"background-color": |background_color|,
18+
})
19+
assert-css: ("#doc-warning-2", {
20+
"margin-bottom": "0px",
21+
"color": |color|,
22+
"border-left": "2px solid " + |border_color|,
23+
"background-color": |background_color|,
24+
})
25+
},
26+
)
27+
28+
call-function: ("check-warning", {
29+
"theme": "ayu",
30+
"color": "rgb(197, 197, 197)",
31+
"border_color": "rgb(255, 142, 0)",
32+
"background_color": "rgba(0, 0, 0, 0)",
33+
})
34+
call-function: ("check-warning", {
35+
"theme": "dark",
36+
"color": "rgb(221, 221, 221)",
37+
"border_color": "rgb(255, 142, 0)",
38+
"background_color": "rgba(0, 0, 0, 0)",
39+
})
40+
call-function: ("check-warning", {
41+
"theme": "light",
42+
"color": "rgb(0, 0, 0)",
43+
"border_color": "rgb(255, 142, 0)",
44+
"background_color": "rgba(0, 0, 0, 0)",
45+
})

0 commit comments

Comments
 (0)