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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
odoo.define('mail/static/src/models/messaging/messaging_tests.js', function (require) {
'use strict';
const { afterEach, beforeEach, start } = require('mail/static/src/utils/test_utils.js');
QUnit.module('mail', {}, function () {
QUnit.module('models', {}, function () {
QUnit.module('messaging', {}, function () {
QUnit.module('messaging_tests.js', {
beforeEach() {
beforeEach(this);
this.start = async params => {
const { env, widget } = await start(Object.assign({}, params, {
data: this.data,
}));
this.env = env;
this.widget = widget;
};
},
afterEach() {
afterEach(this);
},
}, function () {
QUnit.test('openChat: display notification for partner without user', async function (assert) {
assert.expect(2);
this.data['res.partner'].records.push({ id: 14 });
await this.start();
await this.env.messaging.openChat({ partnerId: 14 });
assert.containsOnce(
document.body,
'.toast .o_notification_content',
"should display a toast notification after failing to open chat"
);
assert.strictEqual(
document.querySelector('.o_notification_content').textContent,
"You can only chat with partners that have a dedicated user.",
"should display the correct information in the notification"
);
});
QUnit.test('openChat: display notification for wrong user', async function (assert) {
assert.expect(2);
await this.start();
// user id not in this.data
await this.env.messaging.openChat({ userId: 14 });
assert.containsOnce(
document.body,
'.toast .o_notification_content',
"should display a toast notification after failing to open chat"
);
assert.strictEqual(
document.querySelector('.o_notification_content').textContent,
"You can only chat with existing users.",
"should display the correct information in the notification"
);
});
QUnit.test('openChat: open new chat for user', async function (assert) {
assert.expect(3);
this.data['res.partner'].records.push({ id: 14 });
this.data['res.users'].records.push({ id: 11, partner_id: 14 });
await this.start();
const existingChat = this.env.models['mail.thread'].find(thread =>
thread.channel_type === 'chat' &&
thread.correspondent &&
thread.correspondent.id === 14 &&
thread.model === 'mail.channel' &&
thread.public === 'private'
);
assert.notOk(existingChat, 'a chat should not exist with the target partner initially');
await this.env.messaging.openChat({ partnerId: 14 });
const chat = this.env.models['mail.thread'].find(thread =>
thread.channel_type === 'chat' &&
thread.correspondent &&
thread.correspondent.id === 14 &&
thread.model === 'mail.channel' &&
thread.public === 'private'
);
assert.ok(chat, 'a chat should exist with the target partner');
assert.strictEqual(chat.threadViews.length, 1, 'the chat should be displayed in a `mail.thread_view`');
});
QUnit.test('openChat: open existing chat for user', async function (assert) {
assert.expect(5);
this.data['res.partner'].records.push({ id: 14 });
this.data['res.users'].records.push({ id: 11, partner_id: 14 });
this.data['mail.channel'].records.push({
channel_type: "chat",
id: 10,
members: [this.data.currentPartnerId, 14],
public: 'private',
});
await this.start();
const existingChat = this.env.models['mail.thread'].find(thread =>
thread.channel_type === 'chat' &&
thread.correspondent &&
thread.correspondent.id === 14 &&
thread.model === 'mail.channel' &&
thread.public === 'private'
);
assert.ok(existingChat, 'a chat should initially exist with the target partner');
assert.strictEqual(existingChat.threadViews.length, 0, 'the chat should not be displayed in a `mail.thread_view`');
await this.env.messaging.openChat({ partnerId: 14 });
assert.ok(existingChat, 'a chat should still exist with the target partner');
assert.strictEqual(existingChat.id, 10, 'the chat should be the existing chat');
assert.strictEqual(existingChat.threadViews.length, 1, 'the chat should now be displayed in a `mail.thread_view`');
});
});
});
});
});
});
|