summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-gui/search-no-result.goml
blob: 46d1856b4d68d5687c412f5078ea3a35664f9939 (plain)
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
// The goal of this test is to check the color of the "no result" links.
go-to: "file://" + |DOC_PATH| + "/lib2/index.html?search=sdkfskjfsdks"
show-text: true

define-function: (
    "check-no-result",
    (theme, link, link_hover),
    block {
        // Changing theme.
        set-local-storage: {"rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false"}
        reload:
        wait-for: "#results"
        assert: ".search-failed.active"
        assert-css: ("#results a", {"color": |link|}, ALL)
        move-cursor-to: "#results a"
        assert-css: ("#results a:hover", {"color": |link_hover|})
        // Moving the cursor to some other place to not create issues with next function run.
        move-cursor-to: ".search-input"
    },
)

call-function: ("check-no-result", {
    "theme": "ayu",
    "link": "rgb(57, 175, 215)",
    "link_hover": "rgb(57, 175, 215)",
})
call-function: ("check-no-result", {
    "theme": "dark",
    "link": "rgb(210, 153, 29)",
    "link_hover": "rgb(210, 153, 29)",
})
call-function: ("check-no-result", {
    "theme": "light",
    "link": "rgb(56, 115, 173)",
    "link_hover": "rgb(56, 115, 173)",
})