-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
SidebarFilterTest.js
875 lines (769 loc) · 42.3 KB
/
SidebarFilterTest.js
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
import {cleanup, screen} from '@testing-library/react-native';
import lodashGet from 'lodash/get';
import Onyx from 'react-native-onyx';
import CONST from '../../src/CONST';
import DateUtils from '../../src/libs/DateUtils';
import * as Localize from '../../src/libs/Localize';
import * as LHNTestUtils from '../utils/LHNTestUtils';
import waitForBatchedUpdates from '../utils/waitForBatchedUpdates';
import wrapOnyxWithWaitForBatchedUpdates from '../utils/wrapOnyxWithWaitForBatchedUpdates';
// Be sure to include the mocked permissions library, as some components that are rendered
// during the test depend on its methods.
jest.mock('../../src/libs/Permissions');
jest.mock('../../src/hooks/usePermissions.ts');
const ONYXKEYS = {
PERSONAL_DETAILS_LIST: 'personalDetailsList',
IS_LOADING_APP: 'isLoadingApp',
NVP_PRIORITY_MODE: 'nvp_priorityMode',
SESSION: 'session',
BETAS: 'betas',
COLLECTION: {
REPORT: 'report_',
REPORT_ACTIONS: 'reportActions_',
POLICY: 'policy_',
},
NETWORK: 'network',
};
// We need to fix this test as a follow up. There seems to be some problems with memory after filtering got more complicated.
xdescribe('Sidebar', () => {
beforeAll(() =>
Onyx.init({
keys: ONYXKEYS,
registerStorageEventListener: () => {},
safeEvictionKeys: [ONYXKEYS.COLLECTION.REPORT_ACTIONS],
}),
);
beforeEach(() => {
// Wrap Onyx each onyx action with waitForBatchedUpdates
wrapOnyxWithWaitForBatchedUpdates(Onyx);
// Initialize the network key for OfflineWithFeedback
return Onyx.merge(ONYXKEYS.NETWORK, {isOffline: false});
});
// Cleanup (ie. unmount) all rendered components and clear out Onyx after each test so that each test starts with a clean slate
afterEach(() => {
cleanup();
return Onyx.clear();
});
describe('in default (most recent) mode', () => {
it('excludes a report with no participants', () => {
LHNTestUtils.getDefaultRenderedSidebarLinks();
// Given a report with no participants
const report = LHNTestUtils.getFakeReport([]);
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that report
.then(() =>
Onyx.multiSet({
[`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`]: report,
}),
)
// Then no reports are rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(0);
})
);
});
it('excludes an empty chat report', () => {
LHNTestUtils.getDefaultRenderedSidebarLinks();
// Given a new report
const report = LHNTestUtils.getFakeReport(['emptychat+1@test.com', 'emptychat+2@test.com'], 0);
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that report
.then(() =>
Onyx.multiSet({
[`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`]: report,
[ONYXKEYS.IS_LOADING_APP]: false,
}),
)
// Then no reports are rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.chatUserDisplayNames');
const displayNames = screen.queryAllByLabelText(hintText);
expect(displayNames).toHaveLength(0);
})
);
});
it('includes an empty chat report if it has a draft', () => {
LHNTestUtils.getDefaultRenderedSidebarLinks();
// Given a new report with a draft text
const report = {
...LHNTestUtils.getFakeReport([1, 2], 0),
hasDraft: true,
};
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that report
.then(() =>
Onyx.multiSet({
[`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`]: report,
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
}),
)
// Then the report should be rendered in the LHN since it has a draft
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.chatUserDisplayNames');
const displayNames = screen.queryAllByLabelText(hintText);
expect(displayNames).toHaveLength(1);
})
);
});
it('includes or excludes user created policy rooms depending on the beta', () => {
LHNTestUtils.getDefaultRenderedSidebarLinks();
// Given a user created policy room report
// and the user not being in any betas
const report = {
...LHNTestUtils.getFakeReport(),
chatType: CONST.REPORT.CHAT_TYPE.POLICY_ROOM,
};
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.BETAS]: [],
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`]: report,
}),
)
// Then the report appears in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(1);
})
);
});
it('includes or excludes default policy rooms depending on the beta', () => {
LHNTestUtils.getDefaultRenderedSidebarLinks();
// Given three reports with the three different types of default policy rooms
// and the user not being in any betas
const report1 = {
...LHNTestUtils.getFakeReport(),
chatType: CONST.REPORT.CHAT_TYPE.POLICY_ADMINS,
};
const report2 = {
...LHNTestUtils.getFakeReport([3, 4]),
chatType: CONST.REPORT.CHAT_TYPE.POLICY_ANNOUNCE,
};
const report3 = {
...LHNTestUtils.getFakeReport([5, 6]),
chatType: CONST.REPORT.CHAT_TYPE.DOMAIN_ALL,
};
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.BETAS]: [],
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${report1.reportID}`]: report1,
[`${ONYXKEYS.COLLECTION.REPORT}${report2.reportID}`]: report2,
[`${ONYXKEYS.COLLECTION.REPORT}${report3.reportID}`]: report3,
}),
)
// Then all non-domain rooms are rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(2);
})
// When the user is added to the default policy rooms beta and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.BETAS]: [CONST.BETAS.DEFAULT_ROOMS],
}),
)
// Then all three reports are showing in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(3);
})
);
});
it('includes default policy rooms for free policies, regardless of the beta', () => {
LHNTestUtils.getDefaultRenderedSidebarLinks();
// Given a default policy room report on a free policy
// and the user not being in any betas
const policy = {
policyID: '1',
type: CONST.POLICY.TYPE.FREE,
};
const report = {
...LHNTestUtils.getFakeReport(),
chatType: CONST.REPORT.CHAT_TYPE.POLICY_ADMINS,
policyID: policy.policyID,
};
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.BETAS]: [],
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`]: report,
[`${ONYXKEYS.COLLECTION.POLICY}${policy.policyID}`]: policy,
}),
)
// Then the report is rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(1);
})
// When the policy is a paid policy
.then(() => Onyx.merge(`${ONYXKEYS.COLLECTION.POLICY}${policy.policyID}`, {type: CONST.POLICY.TYPE.CORPORATE}))
// Then the report is still rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(1);
})
);
});
// NOTE: This is also for #focus mode, should we move this test block?
describe('all combinations of isArchived, isUserCreatedPolicyRoom, hasAddWorkspaceError, isUnread, isPinned, hasDraft', () => {
// Given a report that is the active report and doesn't change
const report1 = LHNTestUtils.getFakeReport([3, 4]);
// Given a free policy that doesn't change
const policy = {
name: 'Policy One',
policyID: '1',
type: CONST.POLICY.TYPE.FREE,
};
// Given the user is in all betas
const betas = [CONST.BETAS.DEFAULT_ROOMS];
// Given there are 6 boolean variables tested in the filtering logic:
// 1. isArchived
// 2. isUserCreatedPolicyRoom
// 3. hasAddWorkspaceError
// 4. isUnread
// 5. isPinned
// 6. hasDraft
// Given these combinations of booleans which result in the report being filtered out (not shown).
const booleansWhichRemovesActiveReport = [
JSON.stringify([false, false, false, false, false, false]),
JSON.stringify([false, true, false, false, false, false]),
JSON.stringify([true, false, false, false, false, false]),
JSON.stringify([true, true, false, false, false, false]),
];
// When every single combination of those booleans is tested
// Taken from https://stackoverflow.com/a/39734979/9114791 to generate all possible boolean combinations
const AMOUNT_OF_VARIABLES = 6;
// eslint-disable-next-line no-bitwise
for (let i = 0; i < 1 << AMOUNT_OF_VARIABLES; i++) {
const boolArr = [];
for (let j = AMOUNT_OF_VARIABLES - 1; j >= 0; j--) {
// eslint-disable-next-line no-bitwise
boolArr.push(Boolean(i & (1 << j)));
}
// To test a failing set of conditions, comment out the for loop above and then use a hardcoded array
// for the specific case that's failing. You can then debug the code to see why the test is not passing.
// const boolArr = [false, false, false, false, false];
it(`the booleans ${boolArr}`, () => {
const report2 = {
...LHNTestUtils.getAdvancedFakeReport(...boolArr),
policyID: policy.policyID,
};
LHNTestUtils.getDefaultRenderedSidebarLinks(report1.reportID);
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.NVP_PRIORITY_MODE]: CONST.PRIORITY_MODE.GSD,
[ONYXKEYS.BETAS]: betas,
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${report1.reportID}`]: report1,
[`${ONYXKEYS.COLLECTION.REPORT}${report2.reportID}`]: report2,
[`${ONYXKEYS.COLLECTION.POLICY}${policy.policyID}`]: policy,
}),
)
// Then depending on the outcome, either one or two reports are visible
.then(() => {
if (booleansWhichRemovesActiveReport.indexOf(JSON.stringify(boolArr)) > -1) {
// Only one report visible
const displayNamesHintText = Localize.translateLocal('accessibilityHints.chatUserDisplayNames');
const displayNames = screen.queryAllByLabelText(displayNamesHintText);
const navigatesToChatHintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
expect(screen.queryAllByAccessibilityHint(navigatesToChatHintText)).toHaveLength(1);
expect(displayNames).toHaveLength(1);
expect(lodashGet(displayNames, [0, 'props', 'children', 0])).toBe('Three, Four');
} else {
// Both reports visible
const navigatesToChatHintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
expect(screen.queryAllByAccessibilityHint(navigatesToChatHintText)).toHaveLength(2);
}
})
);
});
}
});
});
describe('in #focus mode', () => {
it('hides unread chats', () => {
// Given the sidebar is rendered in #focus mode (hides read chats)
// with report 1 and 2 having unread actions
const report1 = LHNTestUtils.getFakeReport([1, 2], 0, true);
const report2 = LHNTestUtils.getFakeReport([3, 4], 0, true);
const report3 = LHNTestUtils.getFakeReport([5, 6]);
LHNTestUtils.getDefaultRenderedSidebarLinks(report1.reportID);
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.NVP_PRIORITY_MODE]: CONST.PRIORITY_MODE.GSD,
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${report1.reportID}`]: report1,
[`${ONYXKEYS.COLLECTION.REPORT}${report2.reportID}`]: report2,
[`${ONYXKEYS.COLLECTION.REPORT}${report3.reportID}`]: report3,
}),
)
// Then the reports 1 and 2 are shown and 3 is not
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.chatUserDisplayNames');
const displayNames = screen.queryAllByLabelText(hintText);
expect(displayNames).toHaveLength(2);
expect(lodashGet(displayNames, [0, 'props', 'children', 0])).toBe('One, Two');
expect(lodashGet(displayNames, [1, 'props', 'children', 0])).toBe('Three, Four');
})
// When report3 becomes unread
.then(() => {
jest.advanceTimersByTime(10);
return Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${report3.reportID}`, {lastVisibleActionCreated: DateUtils.getDBTime()});
})
// Then all three chats are showing
.then(() => {
const navigatesToChatHintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
expect(screen.queryAllByAccessibilityHint(navigatesToChatHintText)).toHaveLength(3);
})
// When report 1 becomes read (it's the active report)
.then(() => Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${report1.reportID}`, {lastReadTime: DateUtils.getDBTime()}))
// Then all three chats are still showing
.then(() => {
const navigatesToChatHintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
expect(screen.queryAllByAccessibilityHint(navigatesToChatHintText)).toHaveLength(3);
})
// When report 2 becomes the active report
.then(() => {
LHNTestUtils.getDefaultRenderedSidebarLinks(report2.reportID);
return waitForBatchedUpdates();
})
// Then report 1 should now disappear
.then(() => {
const navigatesToChatHintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
expect(screen.queryAllByAccessibilityHint(navigatesToChatHintText)).toHaveLength(2);
expect(screen.queryAllByText(/One, Two/)).toHaveLength(0);
})
);
});
it('always shows pinned and draft chats', () => {
// Given a draft report and a pinned report
const draftReport = {
...LHNTestUtils.getFakeReport([1, 2]),
hasDraft: true,
};
const pinnedReport = {
...LHNTestUtils.getFakeReport([3, 4]),
isPinned: true,
};
LHNTestUtils.getDefaultRenderedSidebarLinks(draftReport.reportID);
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.NVP_PRIORITY_MODE]: CONST.PRIORITY_MODE.GSD,
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${draftReport.reportID}`]: draftReport,
[`${ONYXKEYS.COLLECTION.REPORT}${pinnedReport.reportID}`]: pinnedReport,
}),
)
// Then both reports are visible
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.chatUserDisplayNames');
const displayNames = screen.queryAllByLabelText(hintText);
expect(displayNames).toHaveLength(2);
expect(lodashGet(displayNames, [0, 'props', 'children', 0])).toBe('Three, Four');
expect(lodashGet(displayNames, [1, 'props', 'children', 0])).toBe('One, Two');
})
);
});
it('archived rooms are displayed only when they have unread messages', () => {
// Given an archived chat report, an archived default policy room, and an archived user created policy room
const archivedReport = {
...LHNTestUtils.getFakeReport([1, 2]),
statusNum: CONST.REPORT.STATUS_NUM.CLOSED,
stateNum: CONST.REPORT.STATE_NUM.APPROVED,
};
const archivedPolicyRoomReport = {
...LHNTestUtils.getFakeReport([1, 2]),
chatType: CONST.REPORT.CHAT_TYPE.POLICY_ANNOUNCE,
statusNum: CONST.REPORT.STATUS_NUM.CLOSED,
stateNum: CONST.REPORT.STATE_NUM.APPROVED,
};
const archivedUserCreatedPolicyRoomReport = {
...LHNTestUtils.getFakeReport([1, 2]),
chatType: CONST.REPORT.CHAT_TYPE.POLICY_ROOM,
statusNum: CONST.REPORT.STATUS_NUM.CLOSED,
stateNum: CONST.REPORT.STATE_NUM.APPROVED,
};
LHNTestUtils.getDefaultRenderedSidebarLinks();
const betas = [CONST.BETAS.DEFAULT_ROOMS];
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.NVP_PRIORITY_MODE]: CONST.PRIORITY_MODE.GSD,
[ONYXKEYS.BETAS]: betas,
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${archivedReport.reportID}`]: archivedReport,
[`${ONYXKEYS.COLLECTION.REPORT}${archivedPolicyRoomReport.reportID}`]: archivedPolicyRoomReport,
[`${ONYXKEYS.COLLECTION.REPORT}${archivedUserCreatedPolicyRoomReport.reportID}`]: archivedUserCreatedPolicyRoomReport,
}),
)
// Then neither reports are visible
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.chatUserDisplayNames');
const displayNames = screen.queryAllByLabelText(hintText);
expect(displayNames).toHaveLength(0);
})
// When they have unread messages
.then(() => {
jest.advanceTimersByTime(10);
return Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${archivedReport.reportID}`, {
lastVisibleActionCreated: DateUtils.getDBTime(),
});
})
.then(() =>
Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${archivedPolicyRoomReport.reportID}`, {
lastVisibleActionCreated: DateUtils.getDBTime(),
}),
)
.then(() =>
Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${archivedUserCreatedPolicyRoomReport.reportID}`, {
lastVisibleActionCreated: DateUtils.getDBTime(),
}),
)
// Then they are all visible
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.chatUserDisplayNames');
const displayNames = screen.queryAllByLabelText(hintText);
expect(displayNames).toHaveLength(3);
})
);
});
it('policy rooms are displayed only when they have unread messages', () => {
// Given a default policy room and user created policy room
const policyRoomReport = {
...LHNTestUtils.getFakeReport([1, 2]),
chatType: CONST.REPORT.CHAT_TYPE.POLICY_ANNOUNCE,
};
const userCreatedPolicyRoomReport = {
...LHNTestUtils.getFakeReport([1, 2]),
chatType: CONST.REPORT.CHAT_TYPE.POLICY_ROOM,
};
LHNTestUtils.getDefaultRenderedSidebarLinks();
const betas = [CONST.BETAS.DEFAULT_ROOMS];
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.NVP_PRIORITY_MODE]: CONST.PRIORITY_MODE.GSD,
[ONYXKEYS.BETAS]: betas,
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${policyRoomReport.reportID}`]: policyRoomReport,
[`${ONYXKEYS.COLLECTION.REPORT}${userCreatedPolicyRoomReport.reportID}`]: userCreatedPolicyRoomReport,
}),
)
// Then neither reports are visible
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.chatUserDisplayNames');
const displayNames = screen.queryAllByLabelText(hintText);
expect(displayNames).toHaveLength(0);
})
// When they both have unread messages
.then(() => {
jest.advanceTimersByTime(10);
return Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${policyRoomReport.reportID}`, {
lastVisibleActionCreated: DateUtils.getDBTime(),
});
})
.then(() =>
Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${userCreatedPolicyRoomReport.reportID}`, {
lastVisibleActionCreated: DateUtils.getDBTime(),
}),
)
// Then both rooms are visible
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.chatUserDisplayNames');
const displayNames = screen.queryAllByLabelText(hintText);
expect(displayNames).toHaveLength(2);
})
);
});
});
describe('all combinations of isArchived, isUserCreatedPolicyRoom, hasAddWorkspaceError, isUnread, isPinned, hasDraft', () => {
// Given a report that is the active report and doesn't change
const report1 = LHNTestUtils.getFakeReport([3, 4]);
// Given a free policy that doesn't change
const policy = {
name: 'Policy One',
policyID: '1',
type: CONST.POLICY.TYPE.FREE,
};
// Given the user is in all betas
const betas = [CONST.BETAS.DEFAULT_ROOMS];
// Given there are 6 boolean variables tested in the filtering logic:
// 1. isArchived
// 2. isUserCreatedPolicyRoom
// 3. hasAddWorkspaceError
// 4. isUnread
// 5. isPinned
// 6. hasDraft
// Given these combinations of booleans which result in the report being filtered out (not shown).
const booleansWhichRemovesActiveReport = [
JSON.stringify([false, false, false, false, false, false]),
JSON.stringify([false, true, false, false, false, false]),
JSON.stringify([true, false, false, false, false, false]),
JSON.stringify([true, true, false, false, false, false]),
];
// When every single combination of those booleans is tested
// Taken from https://stackoverflow.com/a/39734979/9114791 to generate all possible boolean combinations
const AMOUNT_OF_VARIABLES = 6;
// eslint-disable-next-line no-bitwise
for (let i = 0; i < 1 << AMOUNT_OF_VARIABLES; i++) {
const boolArr = [];
for (let j = AMOUNT_OF_VARIABLES - 1; j >= 0; j--) {
// eslint-disable-next-line no-bitwise
boolArr.push(Boolean(i & (1 << j)));
}
// To test a failing set of conditions, comment out the for loop above and then use a hardcoded array
// for the specific case that's failing. You can then debug the code to see why the test is not passing.
// const boolArr = [false, false, false, true, false, false, false];
it(`the booleans ${JSON.stringify(boolArr)}`, () => {
const report2 = {
...LHNTestUtils.getAdvancedFakeReport(...boolArr),
policyID: policy.policyID,
};
LHNTestUtils.getDefaultRenderedSidebarLinks(report1.reportID);
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.NVP_PRIORITY_MODE]: CONST.PRIORITY_MODE.GSD,
[ONYXKEYS.BETAS]: betas,
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${report1.reportID}`]: report1,
[`${ONYXKEYS.COLLECTION.REPORT}${report2.reportID}`]: report2,
[`${ONYXKEYS.COLLECTION.POLICY}${policy.policyID}`]: policy,
}),
)
// Then depending on the outcome, either one or two reports are visible
.then(() => {
if (booleansWhichRemovesActiveReport.indexOf(JSON.stringify(boolArr)) > -1) {
// Only one report visible
const displayNamesHintText = Localize.translateLocal('accessibilityHints.chatUserDisplayNames');
const displayNames = screen.queryAllByLabelText(displayNamesHintText);
const navigatesToChatHintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
expect(screen.queryAllByAccessibilityHint(navigatesToChatHintText)).toHaveLength(1);
expect(displayNames).toHaveLength(1);
expect(lodashGet(displayNames, [0, 'props', 'children', 0])).toBe('Three, Four');
} else {
// Both reports visible
const navigatesToChatHintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
expect(screen.queryAllByAccessibilityHint(navigatesToChatHintText)).toHaveLength(2);
}
})
);
});
}
});
describe('Archived chat', () => {
describe('in default (most recent) mode', () => {
it('is shown regardless if it has comments or not', () => {
LHNTestUtils.getDefaultRenderedSidebarLinks();
// Given an archived report with no comments
const report = {
...LHNTestUtils.getFakeReport(),
lastVisibleActionCreated: '2022-11-22 03:48:27.267',
statusNum: CONST.REPORT.STATUS_NUM.CLOSED,
stateNum: CONST.REPORT.STATE_NUM.APPROVED,
};
// Given the user is in all betas
const betas = [CONST.BETAS.DEFAULT_ROOMS];
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.NVP_PRIORITY_MODE]: CONST.PRIORITY_MODE.DEFAULT,
[ONYXKEYS.BETAS]: betas,
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`]: report,
}),
)
// Then the report is rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(1);
})
// When the report has comments
.then(() =>
Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`, {
lastVisibleActionCreated: DateUtils.getDBTime(),
}),
)
// Then the report is rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(1);
})
);
});
});
describe('in GSD (focus) mode', () => {
it('is shown when it is unread', () => {
LHNTestUtils.getDefaultRenderedSidebarLinks();
// Given an archived report that has all comments read
const report = {
...LHNTestUtils.getFakeReport(),
statusNum: CONST.REPORT.STATUS_NUM.CLOSED,
stateNum: CONST.REPORT.STATE_NUM.APPROVED,
};
// Given the user is in all betas
const betas = [CONST.BETAS.DEFAULT_ROOMS];
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.NVP_PRIORITY_MODE]: CONST.PRIORITY_MODE.GSD,
[ONYXKEYS.BETAS]: betas,
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`]: report,
}),
)
// Then the report is not rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(0);
})
// When the report has a new comment and is now unread
.then(() => {
jest.advanceTimersByTime(10);
return Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`, {lastVisibleActionCreated: DateUtils.getDBTime()});
})
// Then the report is rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(1);
})
);
});
it('is shown when it is pinned', () => {
LHNTestUtils.getDefaultRenderedSidebarLinks();
// Given an archived report that is not pinned
const report = {
...LHNTestUtils.getFakeReport(),
isPinned: false,
statusNum: CONST.REPORT.STATUS_NUM.CLOSED,
stateNum: CONST.REPORT.STATE_NUM.APPROVED,
};
// Given the user is in all betas
const betas = [CONST.BETAS.DEFAULT_ROOMS];
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.NVP_PRIORITY_MODE]: CONST.PRIORITY_MODE.GSD,
[ONYXKEYS.BETAS]: betas,
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`]: report,
}),
)
// Then the report is not rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(0);
})
// When the report is pinned
.then(() => Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`, {isPinned: true}))
// Then the report is rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(1);
})
);
});
it('is shown when it is the active report', () => {
LHNTestUtils.getDefaultRenderedSidebarLinks();
// Given an archived report that is not the active report
const report = {
...LHNTestUtils.getFakeReport(),
statusNum: CONST.REPORT.STATUS_NUM.CLOSED,
stateNum: CONST.REPORT.STATE_NUM.APPROVED,
};
// Given the user is in all betas
const betas = [CONST.BETAS.DEFAULT_ROOMS];
return (
waitForBatchedUpdates()
// When Onyx is updated to contain that data and the sidebar re-renders
.then(() =>
Onyx.multiSet({
[ONYXKEYS.NVP_PRIORITY_MODE]: CONST.PRIORITY_MODE.GSD,
[ONYXKEYS.BETAS]: betas,
[ONYXKEYS.PERSONAL_DETAILS_LIST]: LHNTestUtils.fakePersonalDetails,
[ONYXKEYS.IS_LOADING_APP]: false,
[`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`]: report,
}),
)
// Then the report is not rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(0);
})
// When sidebar is rendered with the active report ID matching the archived report in Onyx
.then(() => {
LHNTestUtils.getDefaultRenderedSidebarLinks(report.reportID);
return waitForBatchedUpdates();
})
// Then the report is rendered in the LHN
.then(() => {
const hintText = Localize.translateLocal('accessibilityHints.navigatesToChat');
const optionRows = screen.queryAllByAccessibilityHint(hintText);
expect(optionRows).toHaveLength(1);
})
);
});
});
});
});