2022-01-21 13:41:47 -06:00
|
|
|
// Ensures that the theme change is working as expected.
|
2024-04-05 14:38:55 -05:00
|
|
|
include: "utils.goml"
|
2023-04-11 12:11:34 -05:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
|
2024-04-05 14:38:55 -05:00
|
|
|
call-function: ("switch-theme", {"theme": "dark"})
|
2022-11-13 14:37:42 -06:00
|
|
|
|
2023-06-07 10:42:04 -05:00
|
|
|
store-value: (background_light, "white")
|
|
|
|
store-value: (background_dark, "#353535")
|
|
|
|
store-value: (background_ayu, "#0f1419")
|
2022-11-13 14:37:42 -06:00
|
|
|
|
2022-05-11 16:11:31 -05:00
|
|
|
click: "#settings-menu"
|
|
|
|
wait-for: "#theme-ayu"
|
|
|
|
click: "#theme-ayu"
|
|
|
|
// should be the ayu theme so let's check the color.
|
2022-11-13 14:37:42 -06:00
|
|
|
wait-for-css: ("body", { "background-color": |background_ayu| })
|
2022-05-11 16:11:31 -05:00
|
|
|
assert-local-storage: { "rustdoc-theme": "ayu" }
|
|
|
|
click: "#theme-light"
|
|
|
|
// should be the light theme so let's check the color.
|
2022-11-13 14:37:42 -06:00
|
|
|
wait-for-css: ("body", { "background-color": |background_light| })
|
2022-05-11 16:11:31 -05:00
|
|
|
assert-local-storage: { "rustdoc-theme": "light" }
|
|
|
|
click: "#theme-dark"
|
|
|
|
// Should be the dark theme so let's check the color.
|
2022-11-13 14:37:42 -06:00
|
|
|
wait-for-css: ("body", { "background-color": |background_dark| })
|
2022-05-11 16:11:31 -05:00
|
|
|
assert-local-storage: { "rustdoc-theme": "dark" }
|
2022-01-29 03:44:27 -06:00
|
|
|
|
2023-04-11 12:11:34 -05:00
|
|
|
set-local-storage: {
|
2022-11-13 14:37:42 -06:00
|
|
|
"rustdoc-preferred-light-theme": "light",
|
|
|
|
"rustdoc-preferred-dark-theme": "light",
|
|
|
|
}
|
2023-04-11 12:11:34 -05:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/settings.html"
|
2022-11-13 14:37:42 -06:00
|
|
|
|
2022-01-19 16:06:17 -06:00
|
|
|
wait-for: "#settings"
|
2022-01-29 03:44:27 -06:00
|
|
|
click: "#theme-light"
|
2022-11-13 14:37:42 -06:00
|
|
|
wait-for-css: ("body", { "background-color": |background_light| })
|
2022-01-29 03:44:27 -06:00
|
|
|
assert-local-storage: { "rustdoc-theme": "light" }
|
|
|
|
|
|
|
|
click: "#theme-dark"
|
2022-11-13 14:37:42 -06:00
|
|
|
wait-for-css: ("body", { "background-color": |background_dark| })
|
2022-01-29 03:44:27 -06:00
|
|
|
assert-local-storage: { "rustdoc-theme": "dark" }
|
|
|
|
|
|
|
|
click: "#theme-ayu"
|
2022-11-13 14:37:42 -06:00
|
|
|
wait-for-css: ("body", { "background-color": |background_ayu| })
|
2022-01-29 03:44:27 -06:00
|
|
|
assert-local-storage: { "rustdoc-theme": "ayu" }
|
2022-11-13 14:37:42 -06:00
|
|
|
|
|
|
|
assert-local-storage-false: { "rustdoc-use-system-theme": "true" }
|
|
|
|
click: "#theme-system-preference"
|
2023-01-23 11:44:01 -06:00
|
|
|
wait-for: "#preferred-light-theme.setting-line:not(.hidden)"
|
2022-11-13 14:37:42 -06:00
|
|
|
assert-local-storage: { "rustdoc-use-system-theme": "true" }
|
|
|
|
// We click on both preferred light and dark themes to be sure that there is a change.
|
|
|
|
click: "#preferred-light-theme-dark"
|
|
|
|
click: "#preferred-dark-theme-dark"
|
|
|
|
wait-for-css: ("body", { "background-color": |background_dark| })
|
|
|
|
|
|
|
|
reload:
|
|
|
|
// Ensure that the "preferred themes" are still displayed.
|
2023-01-23 11:44:01 -06:00
|
|
|
wait-for: "#preferred-light-theme.setting-line:not(.hidden)"
|
2022-11-13 14:37:42 -06:00
|
|
|
click: "#theme-light"
|
|
|
|
wait-for-css: ("body", { "background-color": |background_light| })
|
|
|
|
assert-local-storage: { "rustdoc-theme": "light" }
|
|
|
|
// Ensure it's now hidden again
|
2023-01-23 11:44:01 -06:00
|
|
|
wait-for: "#preferred-light-theme.setting-line.hidden"
|
2022-11-13 14:37:42 -06:00
|
|
|
// And ensure the theme was rightly set.
|
|
|
|
wait-for-css: ("body", { "background-color": |background_light| })
|
|
|
|
assert-local-storage: { "rustdoc-theme": "light" }
|
|
|
|
|
|
|
|
reload:
|
|
|
|
wait-for: "#settings"
|
2023-01-23 11:44:01 -06:00
|
|
|
assert: "#preferred-light-theme.setting-line.hidden"
|
2023-09-14 15:24:23 -05:00
|
|
|
|
|
|
|
// Ensures that the custom theme feature is working as expected.
|
|
|
|
go-to: "file://" + |DOC_PATH| + "/theme_css/index.html"
|
2024-04-05 14:38:55 -05:00
|
|
|
call-function: ("switch-theme", {"theme": "dark"})
|
2023-09-14 15:24:23 -05:00
|
|
|
|
|
|
|
store-value: (background_light, "white")
|
|
|
|
store-value: (background_dark, "#353535")
|
|
|
|
store-value: (background_ayu, "#0f1419")
|
|
|
|
store-value: (background_custom_theme, "red")
|
|
|
|
|
|
|
|
click: "#settings-menu"
|
|
|
|
wait-for: "#theme-ayu"
|
|
|
|
click: "#theme-ayu"
|
|
|
|
// should be the ayu theme so let's check the color.
|
|
|
|
wait-for-css: ("body", { "background-color": |background_ayu| })
|
|
|
|
assert-local-storage: { "rustdoc-theme": "ayu" }
|
|
|
|
assert-text: (".custom-text", "custom text")
|
|
|
|
click: "#theme-light"
|
|
|
|
// should be the light theme so let's check the color.
|
|
|
|
wait-for-css: ("body", { "background-color": |background_light| })
|
|
|
|
assert-local-storage: { "rustdoc-theme": "light" }
|
|
|
|
assert-text: (".custom-text", "custom text")
|
|
|
|
click: "#theme-dark"
|
|
|
|
// Should be the dark theme so let's check the color.
|
|
|
|
wait-for-css: ("body", { "background-color": |background_dark| })
|
|
|
|
assert-local-storage: { "rustdoc-theme": "dark" }
|
|
|
|
assert-text: (".custom-text", "custom text")
|
|
|
|
click: "#theme-custom-theme"
|
|
|
|
// Should be the custom theme so let's check the color.
|
|
|
|
wait-for-css: ("body", { "background-color": |background_custom_theme| })
|
|
|
|
assert-local-storage: { "rustdoc-theme": "custom-theme" }
|
|
|
|
assert-text: (".custom-text", "custom text")
|