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
|
odoo.define('mail/static/src/components/dialog_manager/dialog_manager_tests.js', function (require) {
'use strict';
const { makeDeferred } = require('mail/static/src/utils/deferred/deferred.js');
const {
afterEach,
beforeEach,
nextAnimationFrame,
start,
} = require('mail/static/src/utils/test_utils.js');
QUnit.module('mail', {}, function () {
QUnit.module('components', {}, function () {
QUnit.module('dialog_manager', {}, function () {
QUnit.module('dialog_manager_tests.js', {
beforeEach() {
beforeEach(this);
this.start = async params => {
const { env, widget } = await start(Object.assign(
{ hasDialog: true },
params,
{ data: this.data }
));
this.env = env;
this.widget = widget;
};
},
afterEach() {
afterEach(this);
},
});
QUnit.test('[technical] messaging not created', async function (assert) {
/**
* Creation of messaging in env is async due to generation of models being
* async. Generation of models is async because it requires parsing of all
* JS modules that contain pieces of model definitions.
*
* Time of having no messaging is very short, almost imperceptible by user
* on UI, but the display should not crash during this critical time period.
*/
assert.expect(2);
const messagingBeforeCreationDeferred = makeDeferred();
await this.start({
messagingBeforeCreationDeferred,
waitUntilMessagingCondition: 'none',
});
assert.containsOnce(
document.body,
'.o_DialogManager',
"should have dialog manager even when messaging is not yet created"
);
// simulate messaging being created
messagingBeforeCreationDeferred.resolve();
await nextAnimationFrame();
assert.containsOnce(
document.body,
'.o_DialogManager',
"should still contain dialog manager after messaging has been created"
);
});
QUnit.test('initial mount', async function (assert) {
assert.expect(1);
await this.start();
assert.containsOnce(
document.body,
'.o_DialogManager',
"should have dialog manager"
);
});
});
});
});
});
|