-
Notifications
You must be signed in to change notification settings - Fork 12.9k
/
scrape-examples-color.goml
95 lines (89 loc) · 3.14 KB
/
scrape-examples-color.goml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Check that scrape example code blocks have the expected colors.
include: "utils.goml"
go-to: "file://" + |DOC_PATH| + "/scrape_examples/fn.test_many.html"
show-text: true
define-function: (
"check-colors",
[theme, highlight, highlight_focus, help_border, help_color, help_hover_border,
help_hover_color],
block {
call-function: ("switch-theme", {"theme": |theme|})
wait-for: ".more-examples-toggle"
assert-css: (".scraped-example .rust span.highlight:not(.focus)", {
"background-color": |highlight|,
}, ALL)
assert-css: (".scraped-example .rust span.highlight.focus", {
"background-color": |highlight_focus|,
}, ALL)
assert-css: (".scraped-example-list .scrape-help", {
"border-color": |help_border|,
"color": |help_color|,
})
move-cursor-to: ".scraped-example-list .scrape-help"
assert-css: (".scraped-example-list .scrape-help:hover", {
"border-color": |help_hover_border|,
"color": |help_hover_color|,
})
// Moving the cursor to another item to not break next runs.
move-cursor-to: ".search-input"
}
)
call-function: ("check-colors", {
"theme": "ayu",
"highlight": "#5b3b01",
"highlight_focus": "#7c4b0f",
"help_border": "#aaa",
"help_color": "#eee",
"help_hover_border": "#fff",
"help_hover_color": "#fff",
})
call-function: ("check-colors", {
"theme": "dark",
"highlight": "#5b3b01",
"highlight_focus": "#7c4b0f",
"help_border": "#aaa",
"help_color": "#eee",
"help_hover_border": "#fff",
"help_hover_color": "#fff",
})
call-function: ("check-colors", {
"theme": "light",
"highlight": "#fcffd6",
"highlight_focus": "#f6fdb0",
"help_border": "#555",
"help_color": "#333",
"help_hover_border": "#000",
"help_hover_color": "#000",
})
// Now testing the top and bottom background in case there is only one scraped examples.
go-to: "file://" + |DOC_PATH| + "/scrape_examples/fn.test.html"
define-function: (
"check-background",
[theme, background_color_start, background_color_end],
block {
call-function: ("switch-theme", {"theme": |theme|})
assert-css: (".scraped-example:not(.expanded) .example-wrap::before", {
"background-image": "linear-gradient(" + |background_color_start| + ", " +
|background_color_end| + ")",
})
assert-css: (".scraped-example:not(.expanded) .example-wrap::after", {
"background-image": "linear-gradient(to top, " + |background_color_start| + ", " +
|background_color_end| + ")",
})
},
)
call-function: ("check-background", {
"theme": "ayu",
"background_color_start": "rgba(15, 20, 25, 1)",
"background_color_end": "rgba(15, 20, 25, 0)",
})
call-function: ("check-background", {
"theme": "dark",
"background_color_start": "rgba(53, 53, 53, 1)",
"background_color_end": "rgba(53, 53, 53, 0)",
})
call-function: ("check-background", {
"theme": "light",
"background_color_start": "rgba(255, 255, 255, 1)",
"background_color_end": "rgba(255, 255, 255, 0)",
})