summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-gui/item-decl-comment-highlighting.goml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:03 +0000
commit9918693037dce8aa4bb6f08741b6812923486c18 (patch)
tree21d2b40bec7e6a7ea664acee056eb3d08e15a1cf /tests/rustdoc-gui/item-decl-comment-highlighting.goml
parentReleasing progress-linux version 1.75.0+dfsg1-5~progress7.99u1. (diff)
downloadrustc-9918693037dce8aa4bb6f08741b6812923486c18.tar.xz
rustc-9918693037dce8aa4bb6f08741b6812923486c18.zip
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/rustdoc-gui/item-decl-comment-highlighting.goml')
-rw-r--r--tests/rustdoc-gui/item-decl-comment-highlighting.goml73
1 files changed, 73 insertions, 0 deletions
diff --git a/tests/rustdoc-gui/item-decl-comment-highlighting.goml b/tests/rustdoc-gui/item-decl-comment-highlighting.goml
new file mode 100644
index 000000000..60772693d
--- /dev/null
+++ b/tests/rustdoc-gui/item-decl-comment-highlighting.goml
@@ -0,0 +1,73 @@
+// This test checks that comments in item declarations are highlighted.
+go-to: "file://" + |DOC_PATH| + "/test_docs/private/enum.Enum.html"
+show-text: true
+
+define-function: (
+ "check-item-decl-comment",
+ (theme, url, comment_color),
+ block {
+ go-to: |url|
+ set-local-storage: {"rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false"}
+ reload:
+ assert-css: (".item-decl .comment", {"color": |comment_color|}, ALL)
+ }
+)
+
+define-function: (
+ "check-items-for-theme",
+ (theme, comment_color),
+ block {
+ call-function: ("check-item-decl-comment", {
+ "theme": |theme|,
+ "url": "file://" + |DOC_PATH| + "/test_docs/private/enum.Enum.html",
+ "comment_color": |comment_color|,
+ })
+ call-function: ("check-item-decl-comment", {
+ "theme": |theme|,
+ "url": "file://" + |DOC_PATH| + "/test_docs/private/struct.Struct.html",
+ "comment_color": |comment_color|,
+ })
+ call-function: ("check-item-decl-comment", {
+ "theme": |theme|,
+ "url": "file://" + |DOC_PATH| + "/test_docs/private/struct.Tuple.html",
+ "comment_color": |comment_color|,
+ })
+ call-function: ("check-item-decl-comment", {
+ "theme": |theme|,
+ "url": "file://" + |DOC_PATH| + "/test_docs/private/union.Union.html",
+ "comment_color": |comment_color|,
+ })
+ call-function: ("check-item-decl-comment", {
+ "theme": |theme|,
+ "url": "file://" + |DOC_PATH| + "/proc_macro_test/macro.make_answer.html",
+ "comment_color": |comment_color|,
+ })
+ call-function: ("check-item-decl-comment", {
+ "theme": |theme|,
+ "url": "file://" + |DOC_PATH| + "/proc_macro_test/derive.HelperAttr.html",
+ "comment_color": |comment_color|,
+ })
+ }
+)
+
+call-function: (
+ "check-items-for-theme",
+ {
+ "theme": "ayu",
+ "comment_color": "#788797",
+ }
+)
+call-function: (
+ "check-items-for-theme",
+ {
+ "theme": "dark",
+ "comment_color": "#8d8d8b",
+ }
+)
+call-function: (
+ "check-items-for-theme",
+ {
+ "theme": "light",
+ "comment_color": "#8e908c",
+ }
+)