1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
odoo.define('test_website.reset_views', function (require) {
'use strict';
var tour = require("web_tour.tour");
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',
run: function () {}
};
tour.register('test_reset_page_view_complete_flow_part1', {
test: true,
url: '/test_page_view',
},
[
// 1. Edit the page through Edit Mode, it will COW the view
{
content: "enter edit mode",
trigger: "a[data-action=edit]"
},
{
content: "drop a snippet",
trigger: "#oe_snippets .oe_snippet:has(.s_cover) .oe_snippet_thumbnail",
// id starting by 'oe_structure..' will actually create an inherited view
run: "drag_and_drop #oe_structure_test_website_page",
},
{
content: "save the page",
extra_trigger: '#oe_structure_test_website_page.o_dirty',
trigger: "button[data-action=save]",
},
// 2. Edit that COW'd view in the HTML editor to break it.
{
content: "open customize menu",
extra_trigger: "body:not(.editor_enable)",
trigger: '#customize-menu > a',
},
{
content: "open html editor",
trigger: '#html_editor',
},
{
content: "add a broken t-field in page DOM",
trigger: 'div.ace_line .ace_xml:contains("placeholder")',
run: function () {
ace.edit('ace-view-editor').getSession().insert({row: 4, column: 1}, '<t t-field="not.exist"/>\n');
},
},
{
content: "save the html editor",
extra_trigger: '.ace_content:contains("not.exist")',
trigger: ".o_ace_view_editor button[data-action=save]",
},
BROKEN_STEP
]
);
tour.register('test_reset_page_view_complete_flow_part2', {
test: true,
url: '/test_page_view',
},
[
{
content: "check that the view got fixed",
trigger: 'p:containsExact("Test Page View")',
run: function () {}, // it's a check
},
{
content: "check that the inherited COW view is still there (created during edit mode)",
trigger: '#oe_structure_test_website_page .s_cover',
run: function () {}, // it's a check
},
//4. Now break the inherited view created when dropping a snippet
{
content: "open customize menu",
trigger: '#customize-menu > a',
},
{
content: "open html editor",
trigger: '#html_editor',
},
{
content: "select oe_structure view",
trigger: '#s2id_ace-view-list', // use select2 version
run: function () {
var viewId = $('#ace-view-list option:contains("oe_structure_test_website_page")').val();
$('#ace-view-list').val(viewId).trigger('change');
},
},
{
content: "add a broken t-field in page DOM",
trigger: 'div.ace_line .ace_xml:contains("oe_structure_test_website_page")',
run: function () {
ace.edit('ace-view-editor').getSession().insert({row: 4, column: 1}, '<t t-field="not.exist"/>\n');
},
},
{
content: "save the html editor",
trigger: ".o_ace_view_editor button[data-action=save]",
},
BROKEN_STEP
]
);
});
|