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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
|
odoo.define('mail/static/src/components/discuss/tests/discuss_moderation_tests.js', function (require) {
'use strict';
const {
afterEach,
afterNextRender,
beforeEach,
start,
} = require('mail/static/src/utils/test_utils.js');
QUnit.module('mail', {}, function () {
QUnit.module('components', {}, function () {
QUnit.module('discuss', {}, function () {
QUnit.module('discuss_moderation_tests.js', {
beforeEach() {
beforeEach(this);
this.start = async params => {
const { env, widget } = await start(Object.assign({}, params, {
autoOpenDiscuss: true,
data: this.data,
hasDiscuss: true,
}));
this.env = env;
this.widget = widget;
};
},
afterEach() {
afterEach(this);
},
});
QUnit.test('as moderator, moderated channel with pending moderation message', async function (assert) {
assert.expect(37);
this.data['mail.channel'].records.push({
id: 20, // random unique id, will be used to link message and will be referenced in the test
is_moderator: true, // current user is expected to be moderator of channel
moderation: true, // for consistency, but not used in the scope of this test
name: "general", // random name, will be asserted in the test
});
this.data['mail.message'].records.push({
body: "<p>test</p>", // random body, will be asserted in the test
model: 'mail.channel', // expected value to link message to channel
moderation_status: 'pending_moderation', // message is expected to be pending moderation
res_id: 20, // id of the channel
});
await this.start();
assert.ok(
document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.messaging.moderation.localId
}"]
`),
"should display the moderation box in the sidebar"
);
const mailboxCounter = document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.messaging.moderation.localId
}"]
.o_DiscussSidebarItem_counter
`);
assert.ok(
mailboxCounter,
"there should be a counter next to the moderation mailbox in the sidebar"
);
assert.strictEqual(
mailboxCounter.textContent.trim(),
"1",
"the mailbox counter of the moderation mailbox should display '1'"
);
// 1. go to moderation mailbox
await afterNextRender(() =>
document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.messaging.moderation.localId
}"]
`).click()
);
// check message
assert.containsOnce(
document.body,
'.o_Message',
"should be only one message in moderation box"
);
assert.strictEqual(
document.querySelector('.o_Message_content').textContent,
"test",
"this message pending moderation should have the correct content"
);
assert.containsOnce(
document.body,
'.o_Message_originThreadLink',
"thee message should have one origin"
);
assert.strictEqual(
document.querySelector('.o_Message_originThreadLink').textContent,
"#general",
"the message pending moderation should have correct origin as its linked document"
);
assert.containsOnce(
document.body,
'.o_Message_checkbox',
"there should be a moderation checkbox next to the message"
);
assert.notOk(
document.querySelector('.o_Message_checkbox').checked,
"the moderation checkbox should be unchecked by default"
);
// check select all (enabled) / unselect all (disabled) buttons
assert.containsOnce(
document.body,
'.o_widget_Discuss_controlPanelButtonSelectAll',
"there should be a 'Select All' button in the control panel"
);
assert.doesNotHaveClass(
document.querySelector('.o_widget_Discuss_controlPanelButtonSelectAll'),
'disabled',
"the 'Select All' button should not be disabled"
);
assert.containsOnce(
document.body,
'.o_widget_Discuss_controlPanelButtonUnselectAll',
"there should be a 'Unselect All' button in the control panel"
);
assert.hasClass(
document.querySelector('.o_widget_Discuss_controlPanelButtonUnselectAll'),
'disabled',
"the 'Unselect All' button should be disabled"
);
// check moderate all buttons (invisible)
assert.containsN(
document.body,
'.o_widget_Discuss_controlPanelButtonModeration',
3,
"there should be 3 buttons to moderate selected messages in the control panel"
);
assert.containsOnce(
document.body,
'.o_widget_Discuss_controlPanelButtonModeration.o-accept',
"there should one moderate button to accept messages pending moderation"
);
assert.isNotVisible(
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-accept'),
"the moderate button 'Accept' should be invisible by default"
);
assert.containsOnce(
document.body,
'.o_widget_Discuss_controlPanelButtonModeration.o-reject',
"there should one moderate button to reject messages pending moderation"
);
assert.isNotVisible(
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-reject'),
"the moderate button 'Reject' should be invisible by default"
);
assert.containsOnce(
document.body,
'.o_widget_Discuss_controlPanelButtonModeration.o-discard',
"there should one moderate button to discard messages pending moderation"
);
assert.isNotVisible(
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-discard'),
"the moderate button 'Discard' should be invisible by default"
);
// click on message moderation checkbox
await afterNextRender(() => document.querySelector('.o_Message_checkbox').click());
assert.ok(
document.querySelector('.o_Message_checkbox').checked,
"the moderation checkbox should become checked after click"
);
// check select all (disabled) / unselect all buttons (enabled)
assert.hasClass(
document.querySelector('.o_widget_Discuss_controlPanelButtonSelectAll'),
'disabled',
"the 'Select All' button should be disabled"
);
assert.doesNotHaveClass(
document.querySelector('.o_widget_Discuss_controlPanelButtonUnselectAll'),
'disabled',
"the 'Unselect All' button should not be disabled"
);
// check moderate all buttons updated (visible)
assert.isVisible(
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-accept'),
"the moderate button 'Accept' should be visible"
);
assert.isVisible(
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-reject'),
"the moderate button 'Reject' should be visible"
);
assert.isVisible(
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-discard'),
"the moderate button 'Discard' should be visible"
);
// test select buttons
await afterNextRender(() =>
document.querySelector('.o_widget_Discuss_controlPanelButtonUnselectAll').click()
);
assert.notOk(
document.querySelector('.o_Message_checkbox').checked,
"the moderation checkbox should become unchecked after click"
);
await afterNextRender(() =>
document.querySelector('.o_widget_Discuss_controlPanelButtonSelectAll').click()
);
assert.ok(
document.querySelector('.o_Message_checkbox').checked,
"the moderation checkbox should become checked again after click"
);
// 2. go to channel 'general'
await afterNextRender(() =>
document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.models['mail.thread'].findFromIdentifyingData({
id: 20,
model: 'mail.channel',
}).localId
}"]
`).click()
);
// check correct message
assert.containsOnce(
document.body,
'.o_Message',
"should be only one message in general channel"
);
assert.containsOnce(
document.body,
'.o_Message_checkbox',
"there should be a moderation checkbox next to the message"
);
assert.notOk(
document.querySelector('.o_Message_checkbox').checked,
"the moderation checkbox should not be checked here"
);
await afterNextRender(() => document.querySelector('.o_Message_checkbox').click());
// Don't test moderation actions visibility, since it is similar to moderation box.
// 3. test discard button
await afterNextRender(() =>
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-discard').click()
);
assert.containsOnce(
document.body,
'.o_ModerationDiscardDialog',
"discard dialog should be open"
);
// the dialog will be tested separately
await afterNextRender(() =>
document.querySelector('.o_ModerationDiscardDialog .o-cancel').click()
);
assert.containsNone(
document.body,
'.o_ModerationDiscardDialog',
"discard dialog should be closed"
);
// 4. test reject button
await afterNextRender(() =>
document.querySelector(`
.o_widget_Discuss_controlPanelButtonModeration.o-reject
`).click()
);
assert.containsOnce(
document.body,
'.o_ModerationRejectDialog',
"reject dialog should be open"
);
// the dialog will be tested separately
await afterNextRender(() =>
document.querySelector('.o_ModerationRejectDialog .o-cancel').click()
);
assert.containsNone(
document.body,
'.o_ModerationRejectDialog',
"reject dialog should be closed"
);
// 5. test accept button
await afterNextRender(() =>
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-accept').click()
);
assert.containsOnce(
document.body,
'.o_Message',
"should still be only one message in general channel"
);
assert.containsNone(
document.body,
'.o_Message_checkbox',
"there should not be a moderation checkbox next to the message"
);
});
QUnit.test('as moderator, accept pending moderation message', async function (assert) {
assert.expect(12);
this.data['mail.channel'].records.push({
id: 20, // random unique id, will be used to link message and will be referenced in the test
is_moderator: true, // current user is expected to be moderator of channel
moderation: true, // for consistency, but not used in the scope of this test
name: "general", // random name, will be asserted in the test
});
this.data['mail.message'].records.push({
body: "<p>test</p>", // random body, will be asserted in the test
id: 100, // random unique id, will be asserted during the test
model: 'mail.channel', // expected value to link message to channel
moderation_status: 'pending_moderation', // message is expected to be pending moderation
res_id: 20, // id of the channel
});
await this.start({
async mockRPC(route, args) {
if (args.method === 'moderate') {
assert.step('moderate');
const messageIDs = args.args[0];
const decision = args.args[1];
assert.strictEqual(
messageIDs.length,
1,
"should moderate one message"
);
assert.strictEqual(
messageIDs[0],
100,
"should moderate message with ID 100"
);
assert.strictEqual(
decision,
'accept',
"should accept the message"
);
}
return this._super(...arguments);
},
});
// 1. go to moderation box
const moderationBox = document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.messaging.moderation.localId
}"]
`);
assert.ok(
moderationBox,
"should display the moderation box"
);
await afterNextRender(() => moderationBox.click());
assert.ok(
document.querySelector(`
.o_Message[data-message-local-id="${
this.env.models['mail.message'].findFromIdentifyingData({ id: 100 }).localId
}"]
`),
"should display the message to moderate"
);
const acceptButton = document.querySelector(`
.o_Message[data-message-local-id="${
this.env.models['mail.message'].findFromIdentifyingData({ id: 100 }).localId
}"]
.o_Message_moderationAction.o-accept
`);
assert.ok(acceptButton, "should display the accept button");
await afterNextRender(() => acceptButton.click());
assert.verifySteps(['moderate']);
assert.containsOnce(
document.body,
'.o_MessageList_emptyTitle',
"should now have no message displayed in moderation box"
);
// 2. go to channel 'general'
const channel = document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.models['mail.thread'].findFromIdentifyingData({
id: 20,
model: 'mail.channel',
}).localId
}"]
`);
assert.ok(
channel,
"should display the general channel"
);
await afterNextRender(() => channel.click());
const message = document.querySelector(`
.o_Message[data-message-local-id="${
this.env.models['mail.message'].findFromIdentifyingData({ id: 100 }).localId
}"]
`);
assert.ok(
message,
"should display the accepted message"
);
assert.containsNone(
message,
'.o_Message_moderationPending',
"the message should not be pending moderation"
);
});
QUnit.test('as moderator, reject pending moderation message (reject with explanation)', async function (assert) {
assert.expect(23);
this.data['mail.channel'].records.push({
id: 20, // random unique id, will be used to link message and will be referenced in the test
is_moderator: true, // current user is expected to be moderator of channel
moderation: true, // for consistency, but not used in the scope of this test
name: "general", // random name, will be asserted in the test
});
this.data['mail.message'].records.push({
body: "<p>test</p>", // random body, will be asserted in the test
id: 100, // random unique id, will be asserted during the test
model: 'mail.channel', // expected value to link message to channel
moderation_status: 'pending_moderation', // message is expected to be pending moderation
res_id: 20, // id of the channel
});
await this.start({
async mockRPC(route, args) {
if (args.method === 'moderate') {
assert.step('moderate');
const messageIDs = args.args[0];
const decision = args.args[1];
const kwargs = args.kwargs;
assert.strictEqual(
messageIDs.length,
1,
"should moderate one message"
);
assert.strictEqual(
messageIDs[0],
100,
"should moderate message with ID 100"
);
assert.strictEqual(
decision,
'reject',
"should reject the message"
);
assert.strictEqual(
kwargs.title,
"Message Rejected",
"should have correct reject message title"
);
assert.strictEqual(
kwargs.comment,
"Your message was rejected by moderator.",
"should have correct reject message body / comment"
);
}
return this._super(...arguments);
},
});
// 1. go to moderation box
const moderationBox = document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.messaging.moderation.localId
}"]
`);
assert.ok(
moderationBox,
"should display the moderation box"
);
await afterNextRender(() => moderationBox.click());
const pendingMessage = document.querySelector(`
.o_Message[data-message-local-id="${
this.env.models['mail.message'].findFromIdentifyingData({ id: 100 }).localId
}"]
`);
assert.ok(
pendingMessage,
"should display the message to moderate"
);
const rejectButton = pendingMessage.querySelector(':scope .o_Message_moderationAction.o-reject');
assert.ok(
rejectButton,
"should display the reject button"
);
await afterNextRender(() => rejectButton.click());
const dialog = document.querySelector('.o_ModerationRejectDialog');
assert.ok(
dialog,
"a dialog should be prompt to the moderator on click reject"
);
assert.strictEqual(
dialog.querySelector('.modal-title').textContent,
"Send explanation to author",
"dialog should have correct title"
);
const messageTitle = dialog.querySelector(':scope .o_ModerationRejectDialog_title');
assert.ok(
messageTitle,
"should have a title for rejecting"
);
assert.hasAttrValue(
messageTitle,
'placeholder',
"Subject",
"title for reject reason should have correct placeholder"
);
assert.strictEqual(
messageTitle.value,
"Message Rejected",
"title for reject reason should have correct default value"
);
const messageComment = dialog.querySelector(':scope .o_ModerationRejectDialog_comment');
assert.ok(
messageComment,
"should have a comment for rejecting"
);
assert.hasAttrValue(
messageComment,
'placeholder',
"Mail Body",
"comment for reject reason should have correct placeholder"
);
assert.strictEqual(
messageComment.value,
"Your message was rejected by moderator.",
"comment for reject reason should have correct default text content"
);
const confirmReject = dialog.querySelector(':scope .o-reject');
assert.ok(
confirmReject,
"should have reject button"
);
assert.strictEqual(
confirmReject.textContent,
"Reject"
);
await afterNextRender(() => confirmReject.click());
assert.verifySteps(['moderate']);
assert.containsOnce(
document.body,
'.o_MessageList_emptyTitle',
"should now have no message displayed in moderation box"
);
// 2. go to channel 'general'
const channel = document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.models['mail.thread'].findFromIdentifyingData({
id: 20,
model: 'mail.channel',
}).localId
}"]
`);
assert.ok(
channel,
'should display the general channel'
);
await afterNextRender(() => channel.click());
assert.containsNone(
document.body,
'.o_Message',
"should now have no message in channel"
);
});
QUnit.test('as moderator, discard pending moderation message (reject without explanation)', async function (assert) {
assert.expect(16);
this.data['mail.channel'].records.push({
id: 20, // random unique id, will be used to link message and will be referenced in the test
is_moderator: true, // current user is expected to be moderator of channel
moderation: true, // for consistency, but not used in the scope of this test
name: "general", // random name, will be asserted in the test
});
this.data['mail.message'].records.push({
body: "<p>test</p>", // random body, will be asserted in the test
id: 100, // random unique id, will be asserted during the test
model: 'mail.channel', // expected value to link message to channel
moderation_status: 'pending_moderation', // message is expected to be pending moderation
res_id: 20, // id of the channel
});
await this.start({
async mockRPC(route, args) {
if (args.method === 'moderate') {
assert.step('moderate');
const messageIDs = args.args[0];
const decision = args.args[1];
assert.strictEqual(messageIDs.length, 1, "should moderate one message");
assert.strictEqual(messageIDs[0], 100, "should moderate message with ID 100");
assert.strictEqual(decision, 'discard', "should discard the message");
}
return this._super(...arguments);
},
});
// 1. go to moderation box
const moderationBox = document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.messaging.moderation.localId
}"]
`);
assert.ok(
moderationBox,
"should display the moderation box"
);
await afterNextRender(() => moderationBox.click());
const pendingMessage = document.querySelector(`
.o_Message[data-message-local-id="${
this.env.models['mail.message'].findFromIdentifyingData({ id: 100 }).localId
}"]
`);
assert.ok(
pendingMessage,
"should display the message to moderate"
);
const discardButton = pendingMessage.querySelector(`
:scope .o_Message_moderationAction.o-discard
`);
assert.ok(
discardButton,
"should display the discard button"
);
await afterNextRender(() => discardButton.click());
const dialog = document.querySelector('.o_ModerationDiscardDialog');
assert.ok(
dialog,
"a dialog should be prompt to the moderator on click discard"
);
assert.strictEqual(
dialog.querySelector('.modal-title').textContent,
"Confirmation",
"dialog should have correct title"
);
assert.strictEqual(
dialog.textContent,
"Confirmation×You are going to discard 1 message.Do you confirm the action?DiscardCancel",
"should warn the user on discard action"
);
const confirmDiscard = dialog.querySelector(':scope .o-discard');
assert.ok(
confirmDiscard,
"should have discard button"
);
assert.strictEqual(
confirmDiscard.textContent,
"Discard"
);
await afterNextRender(() => confirmDiscard.click());
assert.verifySteps(['moderate']);
assert.containsOnce(
document.body,
'.o_MessageList_emptyTitle',
"should now have no message displayed in moderation box"
);
// 2. go to channel 'general'
const channel = document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.models['mail.thread'].findFromIdentifyingData({
id: 20,
model: 'mail.channel',
}).localId
}"]
`);
assert.ok(
channel,
"should display the general channel"
);
await afterNextRender(() => channel.click());
assert.containsNone(
document.body,
'.o_Message',
"should now have no message in channel"
);
});
QUnit.test('as author, send message in moderated channel', async function (assert) {
assert.expect(4);
this.data['mail.channel'].records.push({
id: 20, // random unique id, will be used to link message and will be referenced in the test
moderation: true, // channel must be moderated to test the feature
name: "general", // random name, will be asserted in the test
});
await this.start();
const channel = document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.models['mail.thread'].findFromIdentifyingData({
id: 20,
model: 'mail.channel',
}).localId
}"]
`);
assert.ok(
channel,
"should display the general channel"
);
// go to channel 'general'
await afterNextRender(() => channel.click());
assert.containsNone(
document.body,
'.o_Message',
"should have no message in channel"
);
// post a message
await afterNextRender(() => {
const textInput = document.querySelector('.o_ComposerTextInput_textarea');
textInput.focus();
document.execCommand('insertText', false, "Some Text");
});
await afterNextRender(() => document.querySelector('.o_Composer_buttonSend').click());
const messagePending = document.querySelector('.o_Message_moderationPending');
assert.ok(
messagePending,
"should display the pending message with pending info"
);
assert.hasClass(
messagePending,
'o-author',
"the message should be pending moderation as author"
);
});
QUnit.test('as author, sent message accepted in moderated channel', async function (assert) {
assert.expect(5);
this.data['mail.channel'].records.push({
id: 20, // random unique id, will be used to link message and will be referenced in the test
moderation: true, // for consistency, but not used in the scope of this test
name: "general", // random name, will be asserted in the test
});
this.data['mail.message'].records.push({
body: "not empty",
id: 100, // random unique id, will be referenced in the test
model: 'mail.channel', // expected value to link message to channel
moderation_status: 'pending_moderation', // message is expected to be pending
res_id: 20, // id of the channel
});
await this.start();
const channel = document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.models['mail.thread'].findFromIdentifyingData({
id: 20,
model: 'mail.channel',
}).localId
}"]
`);
assert.ok(
channel,
"should display the general channel"
);
await afterNextRender(() => channel.click());
const messagePending = document.querySelector(`
.o_Message[data-message-local-id="${
this.env.models['mail.message'].findFromIdentifyingData({ id: 100 }).localId
}"]
.o_Message_moderationPending
`);
assert.ok(
messagePending,
"should display the pending message with pending info"
);
assert.hasClass(
messagePending,
'o-author',
"the message should be pending moderation as author"
);
// simulate accepted message
await afterNextRender(() => {
const messageData = {
id: 100,
moderation_status: 'accepted',
};
const notification = [[false, 'mail.channel', 20], messageData];
this.widget.call('bus_service', 'trigger', 'notification', [notification]);
});
// check message is accepted
const message = document.querySelector(`
.o_Message[data-message-local-id="${
this.env.models['mail.message'].findFromIdentifyingData({ id: 100 }).localId
}"]
`);
assert.ok(
message,
"should still display the message"
);
assert.containsNone(
message,
'.o_Message_moderationPending',
"the message should not be in pending moderation anymore"
);
});
QUnit.test('as author, sent message rejected in moderated channel', async function (assert) {
assert.expect(4);
this.data['mail.channel'].records.push({
id: 20, // random unique id, will be used to link message and will be referenced in the test
moderation: true, // for consistency, but not used in the scope of this test
name: "general", // random name, will be asserted in the test
});
this.data['mail.message'].records.push({
body: "not empty",
id: 100, // random unique id, will be referenced in the test
model: 'mail.channel', // expected value to link message to channel
moderation_status: 'pending_moderation', // message is expected to be pending
res_id: 20, // id of the channel
});
await this.start();
const channel = document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.models['mail.thread'].findFromIdentifyingData({
id: 20,
model: 'mail.channel',
}).localId
}"]
`);
assert.ok(
channel,
"should display the general channel"
);
await afterNextRender(() => channel.click());
const messagePending = document.querySelector(`
.o_Message[data-message-local-id="${
this.env.models['mail.message'].findFromIdentifyingData({ id: 100 }).localId
}"]
.o_Message_moderationPending
`);
assert.ok(
messagePending,
"should display the pending message with pending info"
);
assert.hasClass(
messagePending,
'o-author',
"the message should be pending moderation as author"
);
// simulate reject from moderator
await afterNextRender(() => {
const notifData = {
type: 'deletion',
message_ids: [100],
};
const notification = [[false, 'res.partner', this.env.messaging.currentPartner.id], notifData];
this.widget.call('bus_service', 'trigger', 'notification', [notification]);
});
// check no message
assert.containsNone(
document.body,
'.o_Message',
"message should be removed from channel after reject"
);
});
QUnit.test('as moderator, pending moderation message accessibility', async function (assert) {
// pending moderation message should appear in moderation box and in origin thread
assert.expect(3);
this.data['mail.channel'].records.push({
id: 20, // random unique id, will be used to link message and will be referenced in the test
is_moderator: true, // current user is expected to be moderator of channel
moderation: true, // channel must be moderated to test the feature
});
this.data['mail.message'].records.push({
body: "not empty",
id: 100, // random unique id, will be referenced in the test
model: 'mail.channel', // expected value to link message to channel
moderation_status: 'pending_moderation', // message is expected to be pending
res_id: 20, // id of the channel
});
await this.start();
const thread = this.env.models['mail.thread'].findFromIdentifyingData({ id: 20, model: 'mail.channel' });
assert.ok(
document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.messaging.moderation.localId
}"]
`),
"should display the moderation box in the sidebar"
);
await afterNextRender(() =>
document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${thread.localId}"]
`).click()
);
const message = this.env.models['mail.message'].findFromIdentifyingData({ id: 100 });
assert.containsOnce(
document.body,
`.o_Message[data-message-local-id="${message.localId}"]`,
"the pending moderation message should be in the channel"
);
await afterNextRender(() =>
document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.messaging.moderation.localId
}"]
`).click()
);
assert.containsOnce(
document.body,
`.o_Message[data-message-local-id="${message.localId}"]`,
"the pending moderation message should be in moderation box"
);
});
QUnit.test('as author, pending moderation message should appear in origin thread', async function (assert) {
assert.expect(1);
this.data['mail.channel'].records.push({
id: 20, // random unique id, will be used to link message and will be referenced in the test
moderation: true, // channel must be moderated to test the feature
});
this.data['mail.message'].records.push({
author_id: this.data.currentPartnerId, // test as author of message
body: "not empty",
id: 100, // random unique id, will be referenced in the test
model: 'mail.channel', // expected value to link message to channel
moderation_status: 'pending_moderation', // message is expected to be pending
res_id: 20, // id of the channel
});
await this.start();
const thread = this.env.models['mail.thread'].findFromIdentifyingData({ id: 20, model: 'mail.channel' });
await afterNextRender(() =>
document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${thread.localId}"]
`).click()
);
const message = this.env.models['mail.message'].findFromIdentifyingData({ id: 100 });
assert.containsOnce(
document.body,
`.o_Message[data-message-local-id="${message.localId}"]`,
"the pending moderation message should be in the channel"
);
});
QUnit.test('as moderator, new pending moderation message posted by someone else', async function (assert) {
// the message should appear in origin thread and moderation box if I moderate it
assert.expect(3);
this.data['mail.channel'].records.push({
id: 20, // random unique id, will be used to link message and will be referenced in the test
is_moderator: true, // current user is expected to be moderator of channel
moderation: true, // channel must be moderated to test the feature
});
await this.start();
const thread = this.env.models['mail.thread'].findFromIdentifyingData({ id: 20, model: 'mail.channel' });
await afterNextRender(() =>
document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${thread.localId}"]
`).click()
);
assert.containsNone(
document.body,
`.o_Message`,
"should have no message in the channel initially"
);
// simulate receiving the message
const messageData = {
author_id: [10, 'john doe'], // random id, different than current partner
body: "not empty",
channel_ids: [], // server do NOT return channel_id of the message if pending moderation
id: 1, // random unique id
model: 'mail.channel', // expected value to link message to channel
moderation_status: 'pending_moderation', // message is expected to be pending
res_id: 20, // id of the channel
};
await afterNextRender(() => {
const notifications = [[
['my-db', 'res.partner', this.env.messaging.currentPartner.id],
{ type: 'moderator', message: messageData },
]];
this.widget.call('bus_service', 'trigger', 'notification', notifications);
});
const message = this.env.models['mail.message'].findFromIdentifyingData({ id: 1 });
assert.containsOnce(
document.body,
`.o_Message[data-message-local-id="${message.localId}"]`,
"the pending moderation message should be in the channel"
);
await afterNextRender(() =>
document.querySelector(`
.o_DiscussSidebar_item[data-thread-local-id="${
this.env.messaging.moderation.localId
}"]
`).click()
);
assert.containsOnce(
document.body,
`.o_Message[data-message-local-id="${message.localId}"]`,
"the pending moderation message should be in moderation box"
);
});
QUnit.test('accept multiple moderation messages', async function (assert) {
assert.expect(5);
this.data['mail.channel'].records.push({
id: 20, // random unique id, will be used to link message and will be referenced in the test
is_moderator: true, // current user is expected to be moderator of channel
moderation: true, // channel must be moderated to test the feature
});
this.data['mail.message'].records.push(
{
body: "not empty",
model: 'mail.channel',
moderation_status: 'pending_moderation',
res_id: 20,
},
{
body: "not empty",
model: 'mail.channel',
moderation_status: 'pending_moderation',
res_id: 20,
},
{
body: "not empty",
model: 'mail.channel',
moderation_status: 'pending_moderation',
res_id: 20,
}
);
await this.start({
discuss: {
params: {
default_active_id: 'mail.box_moderation',
},
},
});
assert.containsN(
document.body,
'.o_Message',
3,
"should initially display 3 messages"
);
await afterNextRender(() => {
document.querySelectorAll('.o_Message_checkbox')[0].click();
document.querySelectorAll('.o_Message_checkbox')[1].click();
});
assert.containsN(
document.body,
'.o_Message_checkbox:checked',
2,
"2 messages should have been checked after clicking on their respective checkbox"
);
assert.doesNotHaveClass(
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-accept'),
'o_hidden',
"global accept button should be displayed as two messages are selected"
);
await afterNextRender(() =>
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-accept').click()
);
assert.containsN(
document.body,
'.o_Message',
1,
"should display 1 message as the 2 others have been accepted"
);
assert.hasClass(
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-accept'),
'o_hidden',
"global accept button should no longer be displayed as messages have been unselected"
);
});
QUnit.test('accept multiple moderation messages after having accepted other messages', async function (assert) {
assert.expect(5);
this.data['mail.channel'].records.push({
id: 20, // random unique id, will be used to link message and will be referenced in the test
is_moderator: true, // current user is expected to be moderator of channel
moderation: true, // channel must be moderated to test the feature
});
this.data['mail.message'].records.push(
{
body: "not empty",
model: 'mail.channel',
moderation_status: 'pending_moderation',
res_id: 20,
},
{
body: "not empty",
model: 'mail.channel',
moderation_status: 'pending_moderation',
res_id: 20,
},
{
body: "not empty",
model: 'mail.channel',
moderation_status: 'pending_moderation',
res_id: 20,
}
);
await this.start({
discuss: {
params: {
default_active_id: 'mail.box_moderation',
},
},
});
assert.containsN(
document.body,
'.o_Message',
3,
"should initially display 3 messages"
);
await afterNextRender(() => {
document.querySelectorAll('.o_Message_checkbox')[0].click();
});
await afterNextRender(() =>
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-accept').click()
);
await afterNextRender(() => document.querySelectorAll('.o_Message_checkbox')[0].click());
assert.containsOnce(
document.body,
'.o_Message_checkbox:checked',
"a message should have been checked after clicking on its checkbox"
);
assert.doesNotHaveClass(
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-accept'),
'o_hidden',
"global accept button should be displayed as a message is selected"
);
await afterNextRender(() =>
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-accept').click()
);
assert.containsOnce(
document.body,
'.o_Message',
"should display only one message left after the two others has been accepted"
);
assert.hasClass(
document.querySelector('.o_widget_Discuss_controlPanelButtonModeration.o-accept'),
'o_hidden',
"global accept button should no longer be displayed as message has been unselected"
);
});
});
});
});
});
|