/** @odoo-module **/ /* global ace */ import { clickOnSave, registerWebsitePreviewTour } from "@website/js/tours/tour_utils"; var BROKEN_STEP = { // because saving a broken template opens a recovery page with no assets // there's no way for the tour to resume on the new page, and thus no way // to properly wait for the page to be saved & reloaded in order to fix the // race condition of a tour ending on a side-effect (with the possible // exception of somehow telling the harness / browser to do it) trigger: "body", }; registerWebsitePreviewTour( "test_reset_page_view_complete_flow_part1", { url: "/test_page_view", // 1. Edit the page through Edit Mode, it will COW the view edition: true, }, () => [ { content: "Drag the Intro snippet group and drop it in #oe_structure_test_website_page.", trigger: '#oe_snippets .oe_snippet[name="Intro"] .oe_snippet_thumbnail:not(.o_we_ongoing_insertion)', // id starting by 'oe_structure..' will actually create an inherited view run: "drag_and_drop :iframe #oe_structure_test_website_page", }, { content: "Click on the s_cover snippet.", trigger: ':iframe .o_snippet_preview_wrap[data-snippet-id="s_cover"]', run: "click", }, ...clickOnSave(), // 2. Edit that COW'd view in the HTML editor to break it. { content: "open site menu", trigger: 'button[data-menu-xmlid="website.menu_site"]', run: "click", }, { content: "open html editor", trigger: 'a[data-menu-xmlid="website.menu_ace_editor"]', run: "click", }, { content: "add a broken t-field in page DOM", trigger: 'div.ace_line .ace_xml:contains("placeholder")', run() { ace.edit(document.querySelector("#resource-editor div")) .getSession() .insert({row: 4, column: 1}, '<t t-field="not.exist"/>\n'); }, }, { trigger: '.ace_content:contains("not.exist")', }, { content: "save the html editor", trigger: ".o_resource_editor button:contains(Save)", run: "click", }, BROKEN_STEP, ] ); registerWebsitePreviewTour( "test_reset_page_view_complete_flow_part2", { url: "/test_page_view", }, () => [ { content: "check that the view got fixed", trigger: ":iframe p:contains(/^Test Page View$/)", }, { content: "check that the inherited COW view is still there (created during edit mode)", trigger: ":iframe #oe_structure_test_website_page .s_cover", }, //4. Now break the inherited view created when dropping a snippet { content: "open site menu", trigger: 'button[data-menu-xmlid="website.menu_site"]', run: "click", }, { content: "open html editor", trigger: 'a[data-menu-xmlid="website.menu_ace_editor"]', run: "click", }, { content: "select oe_structure view", trigger: ".o_resource_editor_title .o_select_menu_toggler", run: "click", }, { content: "select oe_structure view", trigger: ".o_select_menu_menu .o_select_menu_item:contains(Test Page View)", run: "click", }, { content: "add a broken t-field in page DOM", trigger: 'div.ace_line .ace_xml:contains("oe_structure_test_website_page")', run() { ace.edit(document.querySelector("#resource-editor div")) .getSession() .insert({row: 4, column: 1}, '<t t-field="not.exist"/>\n'); }, }, { content: "save the html editor", trigger: ".o_resource_editor button:contains(Save)", run: "click", }, BROKEN_STEP, ] );