[FIX] theme_test_custo: fix nightly theme preview tour

The theme preview feature before selection was disabled in [1]. This
commit disables the related tour steps that were testing it a nightly
tour... that was red since then.

[1]: https://github.com/odoo/odoo/commit/7cb71e9479df0ee9af0b7ad39302857666726177

Related to task-3454790

closes odoo/design-themes#1082

X-original-commit: b4dfb01abe
Related: odoo/odoo#210890
Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
This commit is contained in:
qsm-odoo
2025-05-15 12:56:51 +00:00
parent cdc0150ddb
commit c0d3a66313
2 changed files with 8 additions and 2 deletions
@@ -1,5 +1,3 @@
/** @odoo-module */
import { registry } from "@web/core/registry"; import { registry } from "@web/core/registry";
registry.category("web_tour.tours").add("website_theme_preview", { registry.category("web_tour.tours").add("website_theme_preview", {
@@ -22,6 +20,11 @@ registry.category("web_tour.tours").add("website_theme_preview", {
{ {
content: "Click Skip and start from scratch", content: "Click Skip and start from scratch",
trigger: "button:contains('Skip and start from scratch')", trigger: "button:contains('Skip and start from scratch')",
/*
TODO The feature that the following steps are testing is currently disabled.
It will either be restored or entirely removed at some point. See task-3454790.
Also, we simply do not go through theme choice when using "Skip and start from
scratch" in the configurator: the tour flow would have to be adapted.
run: "click", run: "click",
}, { }, {
content: "Click on the Live preview of a theme", content: "Click on the Live preview of a theme",
@@ -43,4 +46,5 @@ registry.category("web_tour.tours").add("website_theme_preview", {
content: "Check that the desktop view is active", content: "Check that the desktop view is active",
trigger: ".o_view_form_theme_preview_controller .o_field_iframe > div:not(.is_mobile):visible", trigger: ".o_view_form_theme_preview_controller .o_field_iframe > div:not(.is_mobile):visible",
run: () => null, // it's a check run: () => null, // it's a check
*/
}]}); }]});
@@ -3,6 +3,7 @@
from odoo.tests import HttpCase, tagged from odoo.tests import HttpCase, tagged
from odoo.addons.website.tests.test_configurator import TestConfiguratorCommon from odoo.addons.website.tests.test_configurator import TestConfiguratorCommon
# TODO: `test_themes` tag should not be there, runbot config should be adapted # TODO: `test_themes` tag should not be there, runbot config should be adapted
# to test this module too. There is a special config for the theme repo. # to test this module too. There is a special config for the theme repo.
@tagged('post_install', '-at_install', 'test_themes') @tagged('post_install', '-at_install', 'test_themes')
@@ -14,6 +15,7 @@ class Crawler(HttpCase):
theme_custo.with_context(load_all_views=True, apply_new_theme=True)._theme_load(website) theme_custo.with_context(load_all_views=True, apply_new_theme=True)._theme_load(website)
self.start_tour('/@/example', "theme_menu_hierarchies", login='admin') self.start_tour('/@/example', "theme_menu_hierarchies", login='admin')
@tagged('post_install', '-at_install') @tagged('post_install', '-at_install')
class TestThemeConfigurator(TestConfiguratorCommon): class TestThemeConfigurator(TestConfiguratorCommon):
def test_website_theme_preview(self): def test_website_theme_preview(self):