rust/tests/rustdoc-gui/search-reexport.goml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.6 KiB
Plaintext
Raw Normal View History

2022-05-05 19:56:40 +00:00
// Checks that the reexports are present in the search index, can have
// doc aliases and are highligted when their ID is the hash of the page.
go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
set-local-storage: {"rustdoc-theme": "dark", "rustdoc-use-system-theme": "false"}
2022-05-05 19:56:40 +00:00
reload:
// First we check that the reexport has the correct ID and no background color.
assert-text: ("//*[@id='reexport.TheStdReexport']", "pub use ::std as TheStdReexport;")
assert-css: ("//*[@id='reexport.TheStdReexport']", {"background-color": "rgba(0, 0, 0, 0)"})
write: (".search-input", "TheStdReexport")
2022-07-16 11:53:43 +00:00
// To be SURE that the search will be run.
press-key: 'Enter'
2022-05-05 19:56:40 +00:00
wait-for: "//a[@class='result-import']"
assert-attribute: (
"//a[@class='result-import']",
{"href": "../test_docs/index.html#reexport.TheStdReexport"},
)
assert-text: ("a.result-import .result-name", "re-export test_docs::TheStdReexport")
2022-05-05 19:56:40 +00:00
click: "//a[@class='result-import']"
// We check that it has the background modified thanks to the focus.
wait-for-css: ("//*[@id='reexport.TheStdReexport']", {"background-color": "#494a3d"})
2022-05-05 19:56:40 +00:00
// We now check that the alias is working as well on the reexport.
2022-07-16 11:53:43 +00:00
// To be SURE that the search will be run.
press-key: 'Enter'
2022-05-05 19:56:40 +00:00
write: (".search-input", "AliasForTheStdReexport")
wait-for: "//a[@class='result-import']"
assert-text: (
2023-05-18 14:16:13 +00:00
"a.result-import .result-name",
"AliasForTheStdReexport - see re-export test_docs::TheStdReexport",
2022-05-05 19:56:40 +00:00
)
// Same thing again, we click on it to ensure the background is once again set as expected.
click: "//a[@class='result-import']"
wait-for-css: ("//*[@id='reexport.TheStdReexport']", {"background-color": "#494a3d"})