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('calendar.systray.ActivityMenuTests', function (require) {
"use strict";
const { afterEach, beforeEach, start } = require('mail/static/src/utils/test_utils.js');
var ActivityMenu = require('mail.systray.ActivityMenu');
var testUtils = require('web.test_utils');
QUnit.module('calendar', {}, function () {
QUnit.module('ActivityMenu', {
beforeEach() {
beforeEach(this);
Object.assign(this.data, {
'calendar.event': {
fields: { // those are all fake, this is the mock of a formatter
meetings: { type: 'binary' },
model: { type: 'char' },
name: { type: 'char', required: true },
type: { type: 'char' },
},
records: [{
name: "Today's meeting (3)",
model: "calendar.event",
type: 'meeting',
meetings: [{
id: 1,
res_model: "calendar.event",
name: "meeting1",
start: "2018-04-20 06:30:00",
allday: false,
}, {
id: 2,
res_model: "calendar.event",
name: "meeting2",
start: "2018-04-20 09:30:00",
allday: false,
}]
}],
},
});
},
afterEach() {
afterEach(this);
},
});
QUnit.test('activity menu widget:today meetings', async function (assert) {
assert.expect(6);
var self = this;
const { widget } = await start({
data: this.data,
mockRPC: function (route, args) {
if (args.method === 'systray_get_activities') {
return Promise.resolve(self.data['calendar.event']['records']);
}
return this._super(route, args);
},
});
const activityMenu = new ActivityMenu(widget);
await activityMenu.appendTo($('#qunit-fixture'));
assert.hasClass(activityMenu.$el, 'o_mail_systray_item', 'should be the instance of widget');
await testUtils.dom.click(activityMenu.$('.dropdown-toggle'));
testUtils.mock.intercept(activityMenu, 'do_action', function (event) {
assert.strictEqual(event.data.action, "calendar.action_calendar_event", 'should open meeting calendar view in day mode');
});
await testUtils.dom.click(activityMenu.$('.o_mail_preview'));
assert.ok(activityMenu.$('.o_meeting_filter'), "should be a meeting");
assert.containsN(activityMenu, '.o_meeting_filter', 2, 'there should be 2 meetings');
assert.hasClass(activityMenu.$('.o_meeting_filter').eq(0), 'o_meeting_bold', 'this meeting is yet to start');
assert.doesNotHaveClass(activityMenu.$('.o_meeting_filter').eq(1), 'o_meeting_bold', 'this meeting has been started');
widget.destroy();
});
});
});
|