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
|
odoo.define('mail.Many2OneAvatarUserTests', function (require) {
"use strict";
const { afterEach, beforeEach, start } = require('mail/static/src/utils/test_utils.js');
const KanbanView = require('web.KanbanView');
const ListView = require('web.ListView');
const { Many2OneAvatarUser } = require('mail.Many2OneAvatarUser');
const { dom, mock } = require('web.test_utils');
QUnit.module('mail', {}, function () {
QUnit.module('Many2OneAvatarUser', {
beforeEach() {
beforeEach(this);
// reset the cache before each test
Many2OneAvatarUser.prototype.partnerIds = {};
Object.assign(this.data, {
'foo': {
fields: {
user_id: { string: "User", type: 'many2one', relation: 'res.users' },
},
records: [
{ id: 1, user_id: 11 },
{ id: 2, user_id: 7 },
{ id: 3, user_id: 11 },
{ id: 4, user_id: 23 },
],
},
});
this.data['res.partner'].records.push(
{ id: 11, display_name: "Partner 1" },
{ id: 12, display_name: "Partner 2" },
{ id: 13, display_name: "Partner 3" }
);
this.data['res.users'].records.push(
{ id: 11, name: "Mario", partner_id: 11 },
{ id: 7, name: "Luigi", partner_id: 12 },
{ id: 23, name: "Yoshi", partner_id: 13 }
);
},
afterEach() {
afterEach(this);
},
});
QUnit.test('many2one_avatar_user widget in list view', async function (assert) {
assert.expect(5);
const { widget: list } = await start({
hasView: true,
View: ListView,
model: 'foo',
data: this.data,
arch: '<tree><field name="user_id" widget="many2one_avatar_user"/></tree>',
mockRPC(route, args) {
if (args.method === 'read') {
assert.step(`read ${args.model} ${args.args[0]}`);
}
return this._super(...arguments);
},
});
mock.intercept(list, 'open_record', () => {
assert.step('open record');
});
assert.strictEqual(list.$('.o_data_cell span').text(), 'MarioLuigiMarioYoshi');
// sanity check: later on, we'll check that clicking on the avatar doesn't open the record
await dom.click(list.$('.o_data_row:first span'));
await dom.click(list.$('.o_data_cell:nth(0) .o_m2o_avatar'));
await dom.click(list.$('.o_data_cell:nth(1) .o_m2o_avatar'));
await dom.click(list.$('.o_data_cell:nth(2) .o_m2o_avatar'));
assert.verifySteps([
'open record',
'read res.users 11',
// 'call service openDMChatWindow 1',
'read res.users 7',
// 'call service openDMChatWindow 2',
// 'call service openDMChatWindow 1',
]);
list.destroy();
});
QUnit.test('many2one_avatar_user widget in kanban view', async function (assert) {
assert.expect(6);
const { widget: kanban } = await start({
hasView: true,
View: KanbanView,
model: 'foo',
data: this.data,
arch: `
<kanban>
<templates>
<t t-name="kanban-box">
<div>
<field name="user_id" widget="many2one_avatar_user"/>
</div>
</t>
</templates>
</kanban>`,
});
assert.strictEqual(kanban.$('.o_kanban_record').text().trim(), '');
assert.containsN(kanban, '.o_m2o_avatar', 4);
assert.strictEqual(kanban.$('.o_m2o_avatar:nth(0)').data('src'), '/web/image/res.users/11/image_128');
assert.strictEqual(kanban.$('.o_m2o_avatar:nth(1)').data('src'), '/web/image/res.users/7/image_128');
assert.strictEqual(kanban.$('.o_m2o_avatar:nth(2)').data('src'), '/web/image/res.users/11/image_128');
assert.strictEqual(kanban.$('.o_m2o_avatar:nth(3)').data('src'), '/web/image/res.users/23/image_128');
kanban.destroy();
});
});
});
|