forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#109570 - GuillaumeGomez:add-gui-test, r=not…
…riddle Add GUI test for "Auto-hide item methods' documentation" setting Part of rust-lang#66181. r? `@notriddle`
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
tests/rustdoc-gui/setting-auto-hide-item-methods-docs.goml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// This test ensures that the "Auto-hide item methods' documentation" setting is working as | ||
// expected. | ||
|
||
define-function: ( | ||
"check-setting", | ||
(storage_value, setting_attribute_value, toggle_attribute_value), | ||
block { | ||
assert-local-storage: {"rustdoc-auto-hide-method-docs": |storage_value|} | ||
click: "#settings-menu" | ||
wait-for: "#settings" | ||
assert-property: ("#auto-hide-method-docs", {"checked": |setting_attribute_value|}) | ||
assert-attribute: (".toggle.method-toggle", {"open": |toggle_attribute_value|}) | ||
} | ||
) | ||
|
||
goto: "file://" + |DOC_PATH| + "/lib2/struct.Foo.html" | ||
|
||
// We check that the setting is disabled by default. | ||
call-function: ("check-setting", { | ||
"storage_value": null, | ||
"setting_attribute_value": "false", | ||
"toggle_attribute_value": "", | ||
}) | ||
|
||
// Now we change its value. | ||
click: "#auto-hide-method-docs" | ||
assert-local-storage: {"rustdoc-auto-hide-method-docs": "true"} | ||
|
||
// We check that the changes were applied as expected. | ||
reload: | ||
|
||
call-function: ("check-setting", { | ||
"storage_value": "true", | ||
"setting_attribute_value": "true", | ||
"toggle_attribute_value": null, | ||
}) | ||
|
||
// And now we re-disable the setting. | ||
click: "#auto-hide-method-docs" | ||
assert-local-storage: {"rustdoc-auto-hide-method-docs": "false"} | ||
|
||
// And we check everything is back the way it was before. | ||
reload: | ||
call-function: ("check-setting", { | ||
"storage_value": "false", | ||
"setting_attribute_value": "false", | ||
"toggle_attribute_value": "", | ||
}) |