|
1 | 1 | // This test check for headers text and background colors for the different themes. |
2 | | -goto: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html" |
3 | 2 |
|
4 | | -// This is needed so that the text color is computed. |
5 | | -show-text: true |
6 | | - |
7 | | -// Ayu theme |
8 | | -local-storage: { |
9 | | - "rustdoc-theme": "ayu", |
10 | | - "rustdoc-preferred-dark-theme": "ayu", |
11 | | - "rustdoc-use-system-theme": "false", |
12 | | -} |
13 | | -reload: |
14 | | - |
15 | | -assert-css: ( |
16 | | - ".impl", |
17 | | - {"color": "rgb(197, 197, 197)", "background-color": "rgba(0, 0, 0, 0)"}, |
18 | | - ALL, |
19 | | -) |
20 | | -assert-css: ( |
21 | | - ".impl .code-header", |
22 | | - {"color": "rgb(230, 225, 207)", "background-color": "rgba(0, 0, 0, 0)"}, |
23 | | - ALL, |
| 3 | +define-function: ( |
| 4 | + "check-colors", |
| 5 | + (theme, color, code_header_color, focus_background_color, headings_color), |
| 6 | + [ |
| 7 | + ("goto", "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html"), |
| 8 | + // This is needed so that the text color is computed. |
| 9 | + ("show-text", true), |
| 10 | + ("local-storage", {"rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false"}), |
| 11 | + ("reload"), |
| 12 | + ("assert-css", ( |
| 13 | + ".impl", |
| 14 | + {"color": |color|, "background-color": "rgba(0, 0, 0, 0)"}, |
| 15 | + ALL, |
| 16 | + )), |
| 17 | + ("assert-css", ( |
| 18 | + ".impl .code-header", |
| 19 | + {"color": |code_header_color|, "background-color": "rgba(0, 0, 0, 0)"}, |
| 20 | + ALL, |
| 21 | + )), |
| 22 | + ("goto", "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html#impl-Foo"), |
| 23 | + ("assert-css", ( |
| 24 | + "#impl-Foo", |
| 25 | + {"color": |color|, "background-color": |focus_background_color|}, |
| 26 | + )), |
| 27 | + ("goto", "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html#method.must_use"), |
| 28 | + ("assert-css", ( |
| 29 | + "#method\.must_use", |
| 30 | + {"color": |color|, "background-color": |focus_background_color|}, |
| 31 | + ALL, |
| 32 | + )), |
| 33 | + ("goto", "file://" + |DOC_PATH| + "/test_docs/index.html"), |
| 34 | + ("assert-css", (".small-section-header a", {"color": |color|}, ALL)), |
| 35 | + ("goto", "file://" + |DOC_PATH| + "/test_docs/struct.HeavilyDocumentedStruct.html"), |
| 36 | + // We select headings (h2, h3, h...). |
| 37 | + ("assert-css", (".docblock > :not(p) > a", {"color": |headings_color|}, ALL)), |
| 38 | + ], |
24 | 39 | ) |
25 | 40 |
|
26 | | -goto: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html#impl-Foo" |
27 | | -assert-css: ( |
28 | | - "#impl-Foo", |
29 | | - {"color": "rgb(197, 197, 197)", "background-color": "rgba(255, 236, 164, 0.06)"}, |
| 41 | +call-function: ( |
| 42 | + "check-colors", |
| 43 | + { |
| 44 | + "theme": "ayu", |
| 45 | + "color": "rgb(197, 197, 197)", |
| 46 | + "code_header_color": "rgb(230, 225, 207)", |
| 47 | + "focus_background_color": "rgba(255, 236, 164, 0.06)", |
| 48 | + "headings_color": "rgb(57, 175, 215)", |
| 49 | + }, |
30 | 50 | ) |
31 | | - |
32 | | -goto: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html#method.must_use" |
33 | | -assert-css: ( |
34 | | - "#method\.must_use", |
35 | | - {"color": "rgb(197, 197, 197)", "background-color": "rgba(255, 236, 164, 0.06)"}, |
36 | | - ALL, |
| 51 | +call-function: ( |
| 52 | + "check-colors", |
| 53 | + { |
| 54 | + "theme": "dark", |
| 55 | + "color": "rgb(221, 221, 221)", |
| 56 | + "code_header_color": "rgb(221, 221, 221)", |
| 57 | + "focus_background_color": "rgb(73, 74, 61)", |
| 58 | + "headings_color": "rgb(210, 153, 29)", |
| 59 | + }, |
37 | 60 | ) |
38 | | - |
39 | | -goto: "file://" + |DOC_PATH| + "/test_docs/index.html" |
40 | | -assert-css: (".small-section-header a", {"color": "rgb(197, 197, 197)"}, ALL) |
41 | | - |
42 | | -goto: "file://" + |DOC_PATH| + "/test_docs/struct.HeavilyDocumentedStruct.html" |
43 | | -// We select headings (h2, h3, h...). |
44 | | -assert-css: (".docblock > :not(p) > a", {"color": "rgb(57, 175, 215)"}, ALL) |
45 | | - |
46 | | -// Dark theme |
47 | | -local-storage: { |
48 | | - "rustdoc-theme": "dark", |
49 | | - "rustdoc-preferred-dark-theme": "dark", |
50 | | - "rustdoc-use-system-theme": "false", |
51 | | -} |
52 | | -goto: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html" |
53 | | - |
54 | | -assert-css: ( |
55 | | - ".impl", |
56 | | - {"color": "rgb(221, 221, 221)", "background-color": "rgba(0, 0, 0, 0)"}, |
57 | | - ALL, |
58 | | -) |
59 | | -assert-css: ( |
60 | | - ".impl .code-header", |
61 | | - {"color": "rgb(221, 221, 221)", "background-color": "rgba(0, 0, 0, 0)"}, |
62 | | - ALL, |
63 | | -) |
64 | | - |
65 | | -goto: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html#impl-Foo" |
66 | | -assert-css: ( |
67 | | - "#impl-Foo", |
68 | | - {"color": "rgb(221, 221, 221)", "background-color": "rgb(73, 74, 61)"}, |
69 | | -) |
70 | | - |
71 | | -goto: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html#method.must_use" |
72 | | -assert-css: ( |
73 | | - "#method\.must_use", |
74 | | - {"color": "rgb(221, 221, 221)", "background-color": "rgb(73, 74, 61)"}, |
75 | | - ALL, |
| 61 | +call-function: ( |
| 62 | + "check-colors", |
| 63 | + { |
| 64 | + "theme": "light", |
| 65 | + "color": "rgb(0, 0, 0)", |
| 66 | + "code_header_color": "rgb(0, 0, 0)", |
| 67 | + "focus_background_color": "rgb(253, 255, 211)", |
| 68 | + "headings_color": "rgb(56, 115, 173)", |
| 69 | + }, |
76 | 70 | ) |
77 | | - |
78 | | -goto: "file://" + |DOC_PATH| + "/test_docs/index.html" |
79 | | -assert-css: (".small-section-header a", {"color": "rgb(221, 221, 221)"}, ALL) |
80 | | - |
81 | | -goto: "file://" + |DOC_PATH| + "/test_docs/struct.HeavilyDocumentedStruct.html" |
82 | | -// We select headings (h2, h3, h...). |
83 | | -assert-css: (".docblock > :not(p) > a", {"color": "rgb(210, 153, 29)"}, ALL) |
84 | | - |
85 | | -// Light theme |
86 | | -local-storage: {"rustdoc-theme": "light", "rustdoc-use-system-theme": "false"} |
87 | | -reload: |
88 | | - |
89 | | -goto: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html" |
90 | | - |
91 | | -assert-css: ( |
92 | | - ".impl", |
93 | | - {"color": "rgb(0, 0, 0)", "background-color": "rgba(0, 0, 0, 0)"}, |
94 | | - ALL, |
95 | | -) |
96 | | -assert-css: ( |
97 | | - ".impl .code-header", |
98 | | - {"color": "rgb(0, 0, 0)", "background-color": "rgba(0, 0, 0, 0)"}, |
99 | | - ALL, |
100 | | -) |
101 | | - |
102 | | -goto: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html#impl-Foo" |
103 | | -assert-css: ("#impl-Foo", {"color": "rgb(0, 0, 0)", "background-color": "rgb(253, 255, 211)"}) |
104 | | - |
105 | | -goto: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html#method.must_use" |
106 | | -assert-css: ( |
107 | | - "#method\.must_use", |
108 | | - {"color": "rgb(0, 0, 0)", "background-color": "rgb(253, 255, 211)"}, |
109 | | - ALL, |
110 | | -) |
111 | | - |
112 | | -goto: "file://" + |DOC_PATH| + "/test_docs/index.html" |
113 | | -assert-css: (".small-section-header a", {"color": "rgb(0, 0, 0)"}, ALL) |
114 | | - |
115 | | -goto: "file://" + |DOC_PATH| + "/test_docs/struct.HeavilyDocumentedStruct.html" |
116 | | -// We select headings (h2, h3, h...). |
117 | | -assert-css: (".docblock > :not(p) > a", {"color": "rgb(56, 115, 173)"}, ALL) |
0 commit comments