-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathdate_utils_test.test.ts
More file actions
1906 lines (1589 loc) · 61 KB
/
date_utils_test.test.ts
File metadata and controls
1906 lines (1589 loc) · 61 KB
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
import {
addYears,
setSeconds,
addQuarters,
setHours,
setMinutes,
} from "date-fns";
import { ptBR } from "date-fns/locale/pt-BR";
import {
newDate,
addHours,
addDays,
subDays,
isEqual,
isSameMinute,
isSameDay,
isSameMonth,
isSameQuarter,
isSameYear,
isDayDisabled,
isDayExcluded,
isMonthDisabled,
isQuarterDisabled,
isYearDisabled,
isValid,
monthDisabledBefore,
monthDisabledAfter,
yearDisabledBefore,
yearDisabledAfter,
getEffectiveMinDate,
getEffectiveMaxDate,
addZero,
isTimeDisabled,
isTimeInDisabledRange,
isDayInRange,
parseDate,
isMonthInRange,
isQuarterInRange,
isYearInRange,
getStartOfYear,
getYearsPeriod,
setDefaultLocale,
yearsDisabledAfter,
yearsDisabledBefore,
quarterDisabledBefore,
quarterDisabledAfter,
getWeek,
safeDateRangeFormat,
safeDateFormat,
getHolidaysMap,
arraysAreEqual,
startOfMinute,
isDateBefore,
getMidnightDate,
registerLocale,
isMonthYearDisabled,
getDefaultLocale,
safeToDate,
parseDateForNavigation,
} from "../date_utils";
registerLocale("pt-BR", ptBR);
describe("date_utils", () => {
describe("newDate", () => {
it("should return new Date() for invalid value passed", () => {
jest.useFakeTimers();
expect(newDate("21123asd")).toEqual(new Date());
jest.useRealTimers();
});
});
describe("isEqual", () => {
it("should return true for null dates", () => {
expect(isEqual(null, null)).toBe(true);
});
it("should return false for a null and non-null date", () => {
expect(isEqual(newDate(), null)).toBe(false);
expect(isEqual(null, newDate())).toBe(false);
});
it("should return false for non-equal dates", () => {
expect(isEqual(newDate("2016-02-10"), newDate("2016-02-11"))).toBe(false);
});
it("should return false for non-equal date and date with time", () => {
expect(isEqual(newDate("2016-02-10"), newDate("2016-02-11 13:13"))).toBe(
false,
);
});
it("should return false for non-equal time", () => {
expect(
isEqual(newDate("2016-02-10 13:13"), newDate("2016-02-11 13:14")),
).toBe(false);
});
it("should return true for equal dates", () => {
expect(isEqual(newDate("2016-02-10"), newDate("2016-02-10"))).toBe(true);
});
it("should return true for equal time", () => {
expect(
isEqual(newDate("2016-02-10 13:13"), newDate("2016-02-10 13:13")),
).toBe(true);
});
});
describe("isSameDay", () => {
it("should return true for null dates", () => {
expect(isSameDay(null, null)).toBe(true);
});
it("should return false for a null and non-null date", () => {
expect(isSameDay(newDate(), null)).toBe(false);
expect(isSameDay(null, newDate())).toBe(false);
});
it("should return false for non-equal dates", () => {
expect(isSameDay(newDate("2016-02-10"), newDate("2016-02-11"))).toBe(
false,
);
});
it("should return true for equal dates", () => {
expect(isSameDay(newDate("2016-02-10"), newDate("2016-02-10"))).toBe(
true,
);
});
});
describe("isSameMonth", () => {
it("should return true for null dates", () => {
expect(isSameMonth(null, null)).toBe(true);
});
it("should return false for a null and non-null date", () => {
expect(isSameMonth(newDate(), null)).toBe(false);
expect(isSameMonth(null, newDate())).toBe(false);
});
it("should return false for non-equal months", () => {
expect(isSameMonth(newDate("2016-02-10"), newDate("2016-03-10"))).toBe(
false,
);
});
it("should return true for equal months", () => {
expect(isSameMonth(newDate("2016-02-10"), newDate("2016-02-29"))).toBe(
true,
);
});
});
describe("isSameQuarter", () => {
it("should return true for null dates", () => {
expect(isSameQuarter(null, null)).toBe(true);
});
it("should return false for a null and non-null date", () => {
expect(isSameQuarter(newDate(), null)).toBe(false);
expect(isSameQuarter(null, newDate())).toBe(false);
});
it("should return false for non-equal quarters", () => {
expect(isSameQuarter(newDate("2016-02-10"), newDate("2016-04-10"))).toBe(
false,
);
});
it("should return true for equal quarters", () => {
expect(isSameQuarter(newDate("2016-02-10"), newDate("2016-03-29"))).toBe(
true,
);
});
});
describe("isSameYear", () => {
it("should return true for null dates", () => {
expect(isSameYear(null, null)).toBe(true);
});
it("should return false for a null and non-null date", () => {
expect(isSameYear(newDate(), null)).toBe(false);
expect(isSameYear(null, newDate())).toBe(false);
});
it("should return false for non-equal years", () => {
expect(isSameYear(newDate("2016-02-10"), newDate("2015-02-10"))).toBe(
false,
);
});
it("should return true for equal years", () => {
expect(isSameYear(newDate("2016-02-10"), newDate("2016-12-24"))).toBe(
true,
);
});
});
describe("isDayDisabled", () => {
it("should be enabled by default", () => {
const day = newDate();
expect(isDayDisabled(day)).toBe(false);
});
it("should be enabled if on the min date", () => {
const day = newDate();
expect(isDayDisabled(day, { minDate: day })).toBe(false);
});
it("should be disabled if before the min date", () => {
const day = newDate();
const minDate = addDays(day, 1);
expect(isDayDisabled(day, { minDate })).toBe(true);
});
it("should be enabled if on the max date", () => {
const day = newDate();
expect(isDayDisabled(day, { maxDate: day })).toBe(false);
});
it("should be disabled if after the max date", () => {
const day = newDate();
const maxDate = subDays(day, 1);
expect(isDayDisabled(day, { maxDate })).toBe(true);
});
it("should be disabled if in excluded dates", () => {
const day = newDate();
expect(isDayDisabled(day, { excludeDates: [day] })).toBe(true);
});
it("should be disabled if on excluded date interval start", () => {
const day = newDate();
expect(
isDayDisabled(day, {
excludeDateIntervals: [{ start: day, end: addDays(day, 1) }],
}),
).toBe(true);
});
it("should be disabled if within excluded date interval", () => {
const day = newDate();
expect(
isDayDisabled(day, {
excludeDateIntervals: [
{ start: subDays(day, 1), end: addDays(day, 1) },
],
}),
).toBe(true);
});
it("should be disabled if on excluded date interval end", () => {
const day = newDate();
expect(
isDayDisabled(day, {
excludeDateIntervals: [{ start: subDays(day, 1), end: day }],
}),
).toBe(true);
});
it("should be enabled and normalize negative intervals correctly", () => {
const day = newDate();
expect(
isDayDisabled(day, {
excludeDateIntervals: [
{ start: addDays(day, 1), end: subDays(day, 1) },
],
}),
).toBe(true);
});
it("should be enabled if excluded date interval is empty", () => {
const day = newDate();
expect(isDayDisabled(day, { excludeDateIntervals: [] })).toBe(false);
});
it("should be enabled if not in excluded date interval", () => {
const day = newDate();
expect(
isDayDisabled(day, {
excludeDateIntervals: [
{ start: addDays(day, 1), end: addDays(day, 2) },
],
}),
).toBe(false);
});
it("should be enabled if in included dates", () => {
const day = newDate();
expect(isDayDisabled(day, { includeDates: [day] })).toBe(false);
});
it("should be enabled if in included date intervals", () => {
const day = newDate();
expect(
isDayDisabled(day, {
includeDateIntervals: [
{ start: subDays(day, 1), end: addDays(day, 1) },
],
}),
).toBe(false);
});
it("should be disabled if not in included dates", () => {
const day = newDate();
const includeDates = [addDays(day, 1)];
expect(isDayDisabled(day, { includeDates })).toBe(true);
});
// eslint-disable-next-line jest/no-identical-title
it("should be disabled if not in included dates", () => {
const day = newDate();
expect(
isDayDisabled(day, {
includeDateIntervals: [
{ start: subDays(day, 10), end: subDays(day, 5) },
],
}),
).toBe(true);
});
it("should be enabled if date filter returns true", () => {
const day = newDate();
const filterDate = (d: Date) => isEqual(d, day);
expect(isDayDisabled(day, { filterDate })).toBe(false);
});
it("should be disabled if date filter returns false", () => {
const day = newDate();
const filterDate = (d: Date) => !isEqual(d, day);
expect(isDayDisabled(day, { filterDate })).toBe(true);
});
it("should not allow date filter to modify input date", () => {
const day = newDate();
const dayClone = newDate(day);
const filterDate = (d: Date) => {
addDays(d, 1);
return true;
};
isDayDisabled(day, { filterDate });
expect(isEqual(day, dayClone)).toBe(true);
});
});
describe("isDayExcluded", () => {
it("should not be excluded by default", () => {
const day = newDate();
expect(isDayExcluded(day)).toBe(false);
});
it("should be excluded if within excluded date interval", () => {
const day = newDate();
expect(
isDayExcluded(day, {
excludeDateIntervals: [
{ start: subDays(day, 1), end: addDays(day, 1) },
],
}),
).toBe(true);
});
it("should not be excluded if excluded date interval is empty", () => {
const day = newDate();
expect(isDayExcluded(day, { excludeDateIntervals: [] })).toBe(false);
});
it("should not be excluded if not within excluded date intervals", () => {
const day = newDate();
expect(
isDayExcluded(day, {
excludeDateIntervals: [
{ start: addDays(day, 1), end: addDays(day, 2) },
],
}),
).toBe(false);
});
it("should be enabled and normalize negative intervals correctly", () => {
const day = newDate();
expect(
isDayExcluded(day, {
excludeDateIntervals: [
{ start: addDays(day, 1), end: subDays(day, 1) },
],
}),
).toBe(true);
});
it("should not be excluded if in excluded dates and not within excluded date intervals", () => {
const day = newDate();
expect(
isDayExcluded(day, {
excludeDates: [day],
excludeDateIntervals: [
{ start: addDays(day, 1), end: addDays(day, 2) },
],
}),
).toBe(false);
});
it("should be excluded if in excluded dates and there are no excluded date intervals", () => {
const day = newDate();
expect(isDayExcluded(day, { excludeDates: [day] })).toBe(true);
});
it("should not be excluded if not in excluded dates and there are no excluded date intervals", () => {
const day = newDate();
const excludedDay = newDate();
const currentMonth = excludedDay.getMonth();
excludedDay.setMonth(currentMonth === 11 ? 0 : currentMonth + 1);
expect(isDayExcluded(day, { excludeDates: [] })).toBeFalsy();
});
});
describe("isMonthDisabled", () => {
it("should be enabled by default", () => {
const day = newDate();
expect(isMonthDisabled(day)).toBe(false);
});
it("should be enabled if on the min date", () => {
const day = newDate();
expect(isMonthDisabled(day, { minDate: day })).toBe(false);
});
it("should be disabled if before the min date", () => {
const day = newDate();
const minDate = addDays(day, 40);
expect(isMonthDisabled(day, { minDate })).toBe(true);
});
it("should be enabled if on the max date", () => {
const day = newDate();
expect(isMonthDisabled(day, { maxDate: day })).toBe(false);
});
it("should be disabled if after the max date", () => {
const day = newDate();
const maxDate = subDays(day, 40);
expect(isMonthDisabled(day, { maxDate })).toBe(true);
});
it("should be disabled if in excluded dates", () => {
const day = newDate();
expect(isMonthDisabled(day, { excludeDates: [day] })).toBe(true);
});
it("should be enabled if in included dates", () => {
const day = newDate();
expect(isMonthDisabled(day, { includeDates: [day] })).toBe(false);
});
it("should be disabled if not in included dates", () => {
const day = newDate();
const includeDates = [addDays(day, 40)];
expect(isMonthDisabled(day, { includeDates })).toBe(true);
});
it("should be enabled if date filter returns true", () => {
const day = newDate();
const filterDate = (d: Date) => isEqual(d, day);
expect(isMonthDisabled(day, { filterDate })).toBe(false);
});
it("should be disabled if date filter returns false", () => {
const day = newDate();
const filterDate = (d: Date) => !isEqual(d, day);
expect(isMonthDisabled(day, { filterDate })).toBe(true);
});
it("should not allow date filter to modify input date", () => {
const day = newDate();
const dayClone = newDate(day);
const filterDate = (d: Date) => {
addDays(d, 40);
return true;
};
isMonthDisabled(day, { filterDate });
expect(isEqual(day, dayClone)).toBe(true);
});
it("should be enabled if before minDate but same month", () => {
const day = newDate("2023-01-01");
expect(isMonthDisabled(day, { minDate: newDate("2023-01-02") })).toBe(
false,
);
});
it("should be enabled if after maxDate but same month", () => {
const day = newDate("2023-01-02");
expect(
isMonthDisabled(day, {
maxDate: newDate("2023-01-01"),
}),
).toBe(false);
});
});
describe("isQuarterDisabled", () => {
it("should be enabled by default", () => {
const day = newDate();
expect(isQuarterDisabled(day)).toBe(false);
});
it("should be enabled if on the min date", () => {
const day = newDate();
expect(isQuarterDisabled(day, { minDate: day })).toBe(false);
});
it("should be disabled if before the min date", () => {
const day = newDate();
const minDate = addDays(day, 40);
expect(isQuarterDisabled(day, { minDate })).toBe(true);
});
it("should be enabled if on the max date", () => {
const day = newDate();
expect(isQuarterDisabled(day, { maxDate: day })).toBe(false);
});
it("should be disabled if after the max date", () => {
const day = newDate();
const maxDate = subDays(day, 40);
expect(isQuarterDisabled(day, { maxDate })).toBe(true);
});
it("should be disabled if in excluded dates", () => {
const day = newDate();
expect(isQuarterDisabled(day, { excludeDates: [day] })).toBe(true);
});
it("should be enabled if in included dates", () => {
const day = newDate();
expect(isQuarterDisabled(day, { includeDates: [day] })).toBe(false);
});
it("should be disabled if not in included dates", () => {
const day = newDate();
const includeDates = [addQuarters(day, 1)];
expect(isQuarterDisabled(day, { includeDates })).toBe(true);
});
it("should be enabled if date filter returns true", () => {
const day = newDate();
const filterDate = (d: Date) => isEqual(d, day);
expect(isQuarterDisabled(day, { filterDate })).toBe(false);
});
it("should be disabled if date filter returns false", () => {
const day = newDate();
const filterDate = (d: Date) => !isEqual(d, day);
expect(isQuarterDisabled(day, { filterDate })).toBe(true);
});
it("should not allow date filter to modify input date", () => {
const day = newDate();
const dayClone = newDate(day);
const filterDate = (d: Date) => {
addDays(d, 40);
return true;
};
isQuarterDisabled(day, { filterDate });
expect(isEqual(day, dayClone)).toBe(true);
});
});
describe("isYearDisabled", () => {
const year = 2023;
const newYearsDay = newDate(`${year}-01-01`);
it("should be enabled by default", () => {
expect(isYearDisabled(year)).toBe(false);
});
it("should be enabled if on the min date", () => {
expect(isYearDisabled(year, { minDate: newYearsDay })).toBe(false);
});
it("should be disabled if before the min date", () => {
expect(isYearDisabled(year, { minDate: addYears(newYearsDay, 1) })).toBe(
true,
);
});
it("should be enabled if on the max date", () => {
expect(isYearDisabled(year, { maxDate: newYearsDay })).toBe(false);
});
it("should be disabled if after the max date", () => {
expect(isYearDisabled(year, { maxDate: addYears(newYearsDay, -1) })).toBe(
true,
);
});
it("should be disabled if in excluded dates", () => {
const day = newDate(`${year}-02-01`);
expect(isYearDisabled(year, { excludeDates: [day] })).toBe(true);
});
it("should be enabled if in included dates", () => {
expect(isYearDisabled(year, { includeDates: [newYearsDay] })).toBe(false);
});
it("should be disabled if not in included dates", () => {
const includeDates = [addYears(newYearsDay, 1)];
expect(isYearDisabled(year, { includeDates })).toBe(true);
});
it("should be enabled if date filter returns true", () => {
const filterDate = (d: Date) => isSameYear(d, newYearsDay);
expect(isYearDisabled(year, { filterDate })).toBe(false);
});
it("should be disabled if date filter returns false", () => {
const filterDate = (d: Date) => !isSameYear(d, newYearsDay);
expect(isYearDisabled(year, { filterDate })).toBe(true);
});
});
describe("isValid", () => {
it("should return true for valid dates", () => {
expect(isValid(newDate("2021-11-15"))).toBe(true);
expect(isValid(newDate("1350-03-20"))).toBe(true);
expect(isValid(newDate("1000-01-01"))).toBe(true);
});
it("should return false for invalid dates", () => {
expect(isValid(new Date("invalid"))).toBe(false);
expect(isValid(new Date(NaN))).toBe(false);
});
});
describe("monthDisabledBefore", () => {
it("should return false by default", () => {
expect(monthDisabledBefore(newDate())).toBe(false);
});
it("should return true if min date is in the same month", () => {
const day = newDate("2016-03-19");
const minDate = newDate("2016-03-01");
expect(monthDisabledBefore(day, { minDate })).toBe(true);
});
it("should return false if min date is in the previous month", () => {
const day = newDate("2016-03-19");
const minDate = newDate("2016-02-29");
expect(monthDisabledBefore(day, { minDate })).toBe(false);
});
it("should return true if previous month is before include dates", () => {
const day = newDate("2016-03-19");
const includeDates = [newDate("2016-03-01")];
expect(monthDisabledBefore(day, { includeDates })).toBe(true);
});
});
describe("monthDisabledAfter", () => {
it("should return false by default", () => {
expect(monthDisabledAfter(newDate())).toBe(false);
});
it("should return true if max date is in the same month", () => {
const day = newDate("2016-03-19");
const maxDate = newDate("2016-03-31");
expect(monthDisabledAfter(day, { maxDate })).toBe(true);
});
it("should return false if max date is in the next month", () => {
const day = newDate("2016-03-19");
const maxDate = newDate("2016-04-01");
expect(monthDisabledAfter(day, { maxDate })).toBe(false);
});
it("should return true if next month is after include dates", () => {
const day = newDate("2016-03-19");
const includeDates = [newDate("2016-03-01")];
expect(monthDisabledAfter(day, { includeDates })).toBe(true);
});
});
describe("quarterDisabledBefore", () => {
it("should return false by default", () => {
expect(quarterDisabledBefore(newDate())).toBe(false);
});
it("should return true if min date is in the same year", () => {
const day = newDate("2016-02-19");
const minDate = newDate("2016-03-01");
expect(quarterDisabledBefore(day, { minDate })).toBe(true);
});
it("should return false if min date is in the previous year", () => {
const day = newDate("2016-03-19");
const minDate = newDate("2015-03-29");
expect(quarterDisabledBefore(day, { minDate })).toBe(false);
});
it("should return true if previous year is before include dates", () => {
const day = newDate("2016-03-19");
const includeDates = [newDate("2016-03-01")];
expect(quarterDisabledBefore(day, { includeDates })).toBe(true);
});
});
describe("quarterDisabledAfter", () => {
it("should return false by default", () => {
expect(quarterDisabledAfter(newDate())).toBe(false);
});
it("should return true if max date is in the same year", () => {
const day = newDate("2016-03-19");
const maxDate = newDate("2016-08-31");
expect(quarterDisabledAfter(day, { maxDate })).toBe(true);
});
it("should return false if max date is in the next year", () => {
const day = newDate("2016-03-19");
const maxDate = newDate("2017-04-01");
expect(quarterDisabledAfter(day, { maxDate })).toBe(false);
});
it("should return true if next year is after include dates", () => {
const day = newDate("2016-03-19");
const includeDates = [newDate("2016-03-01")];
expect(quarterDisabledAfter(day, { includeDates })).toBe(true);
});
});
describe("yearDisabledBefore", () => {
it("should return false by default", () => {
expect(yearDisabledBefore(newDate())).toBe(false);
});
it("should return true if min date is in the same year", () => {
const day = newDate("2016-02-19");
const minDate = newDate("2016-03-01");
expect(yearDisabledBefore(day, { minDate })).toBe(true);
});
it("should return false if min date is in the previous year", () => {
const day = newDate("2016-03-19");
const minDate = newDate("2015-03-29");
expect(yearDisabledBefore(day, { minDate })).toBe(false);
});
it("should return true if previous year is before include dates", () => {
const day = newDate("2016-03-19");
const includeDates = [newDate("2016-03-01")];
expect(yearDisabledBefore(day, { includeDates })).toBe(true);
});
});
describe("yearDisabledAfter", () => {
it("should return false by default", () => {
expect(yearDisabledAfter(newDate())).toBe(false);
});
it("should return true if max date is in the same year", () => {
const day = newDate("2016-03-19");
const maxDate = newDate("2016-08-31");
expect(yearDisabledAfter(day, { maxDate })).toBe(true);
});
it("should return false if max date is in the next year", () => {
const day = newDate("2016-03-19");
const maxDate = newDate("2017-04-01");
expect(yearDisabledAfter(day, { maxDate })).toBe(false);
});
it("should return true if next year is after include dates", () => {
const day = newDate("2016-03-19");
const includeDates = [newDate("2016-03-01")];
expect(yearDisabledAfter(day, { includeDates })).toBe(true);
});
});
describe("getEffectiveMinDate", () => {
it("should return null by default", () => {
expect(getEffectiveMinDate({})).toBeFalsy();
});
it("should return the min date", () => {
const minDate = newDate("2016-03-30");
const result = getEffectiveMinDate({ minDate });
expect(minDate).toEqual(result);
});
it("should return the minimum include date", () => {
const date1 = newDate("2016-03-30");
const date2 = newDate("2016-04-01");
const includeDates = [date1, date2];
expect(getEffectiveMinDate({ includeDates })).toEqual(date1);
});
it("should return the minimum include date satisfying the min date", () => {
const minDate = newDate("2016-03-31");
const date1 = newDate("2016-03-30");
const date2 = newDate("2016-04-01");
const includeDates = [date1, date2];
expect(getEffectiveMinDate({ minDate, includeDates })).toEqual(date2);
});
});
describe("getEffectiveMaxDate", () => {
it("should return null by default", () => {
expect(getEffectiveMaxDate({})).toBeFalsy();
});
it("should return the max date", () => {
const maxDate = newDate("2016-03-30");
expect(getEffectiveMaxDate({ maxDate })).toEqual(maxDate);
});
it("should return the maximum include date", () => {
const date1 = newDate("2016-03-30");
const date2 = newDate("2016-04-01");
const includeDates = [date1, date2];
expect(getEffectiveMaxDate({ includeDates })).toEqual(date2);
});
it("should return the maximum include date satisfying the max date", () => {
const maxDate = newDate("2016-03-31");
const date1 = newDate("2016-03-30");
const date2 = newDate("2016-04-01");
const includeDates = [date1, date2];
expect(getEffectiveMaxDate({ maxDate, includeDates })).toEqual(date1);
});
});
describe("addZero", () => {
it("should return the same number if greater than 10", () => {
const input = 11;
const expected = "11";
const result = addZero(input);
expect(result).toEqual(expected);
});
it("should return the number prefixed with zero if less than 10", () => {
const input = 1;
const expected = "01";
const result = addZero(input);
expect(result).toEqual(expected);
});
});
describe("isTimeDisabled", () => {
it("should be enabled by default", () => {
const date = newDate();
const time = setHours(setMinutes(date, 30), 1);
expect(isTimeDisabled(time)).toBe(false);
});
it("should be disabled if in excluded times", () => {
const date = newDate();
const time = setHours(setMinutes(date, 30), 1);
expect(isTimeDisabled(time, { excludeTimes: [time] })).toBe(true);
});
it("should be enabled if in included times", () => {
const date = newDate();
const time = setHours(setMinutes(date, 30), 1);
expect(isTimeDisabled(time, { includeTimes: [time] })).toBe(false);
});
it("should be disabled if not in included times", () => {
const date = newDate();
const time = setHours(setMinutes(date, 30), 1);
const includeTimes = [addHours(time, 1)];
expect(isTimeDisabled(time, { includeTimes })).toBe(true);
});
it("should be enabled if time filter returns true", () => {
const date = newDate();
const time = setHours(setMinutes(date, 30), 1);
const filterTime = (t: Date) => isEqual(t, time);
expect(isTimeDisabled(time, { filterTime })).toBe(false);
});
it("should be disabled if time filter returns false", () => {
const date = newDate();
const time = setHours(setMinutes(date, 30), 1);
const filterTime = (t: Date) => !isEqual(t, time);
expect(isTimeDisabled(time, { filterTime })).toBe(true);
});
it("should not allow time filter to modify input time", () => {
const date = newDate();
const time = setHours(setMinutes(date, 30), 1);
const timeClone = newDate(time);
const filterTime = (t: Date) => {
addHours(t, 1);
return true;
};
isTimeDisabled(time, { filterTime });
expect(isEqual(time, timeClone)).toBe(true);
});
});
describe("isTimeInDisabledRange", () => {
it("should tell if time is in disabled range", () => {
const date = newDate("2016-03-15");
let time = setHours(date, 1);
time = setMinutes(time, 30);
time = setSeconds(time, 30); // 2016-03-15 01:30:30
const minTime = setHours(setMinutes(date, 30), 0); //2016-03-15 00:30:00
const maxTime = setHours(setMinutes(setSeconds(date, 35), 30), 1); //2016-03-15 01:30:35
expect(isTimeInDisabledRange(time, { minTime, maxTime })).toBe(false);
});
it("should tell if time is not in disabled range", () => {
const date = newDate("2016-03-15");
const time = setHours(setMinutes(date, 30), 0);
const minTime = setHours(setMinutes(date, 30), 1);
const maxTime = setHours(setMinutes(date, 30), 5);
expect(isTimeInDisabledRange(time, { minTime, maxTime })).toBe(true);
});
it("should correctly handle max time is before min time", () => {
const date = newDate("2016-03-15");
const time = setHours(setMinutes(date, 30), 10);
const minTime = setHours(setMinutes(date, 30), 5);
const maxTime = setHours(setMinutes(date, 30), 0);
expect(isTimeInDisabledRange(time, { minTime, maxTime })).toBe(true);
});
});
describe("isTimeInDisabledRange edge cases", () => {
it("throws when either minTime or maxTime is missing", () => {
expect(() =>
isTimeInDisabledRange(newDate(), { minTime: newDate() }),
).toThrow("Both minTime and maxTime props required");
});
it("returns false when isWithinInterval throws", async () => {
jest.doMock("date-fns", () => {
const actual = jest.requireActual("date-fns");
return {
...actual,
isWithinInterval: () => {
throw new Error("boom");
},
};
});
try {
const { isTimeInDisabledRange: mockedIsTimeInDisabledRange } =
await import("../date_utils");
expect(
mockedIsTimeInDisabledRange(new Date(), {
minTime: new Date(),
maxTime: new Date(),
}),
).toBe(false);
} finally {
jest.resetModules();
jest.dontMock("date-fns");
}
});
});
describe("isDayInRange", () => {
it("should tell if day is in range", () => {
const day = newDate("2016-02-15 09:40");
const startDate = newDate("2016-02-01 09:40");
const endDate = newDate("2016-03-15 08:40");
expect(isDayInRange(day, startDate, endDate)).toBe(true);
});
it("should tell if day is in range, max bound test", () => {
const day = newDate("2016-03-15 09:40");
const startDate = newDate("2016-02-01 09:40");
const endDate = newDate("2016-03-15 08:40");
expect(isDayInRange(day, startDate, endDate)).toBe(true);
});
it("should tell if day is in range, min bound test", () => {
const day = newDate("2016-02-01 08:40");
const startDate = newDate("2016-02-01 09:40");
const endDate = newDate("2016-03-15 08:40");
expect(isDayInRange(day, startDate, endDate)).toBe(true);
});
it("should tell if day is not in range", () => {
const day = newDate("2016-07-15 09:40");
const startDate = newDate("2016-02-15 09:40");
const endDate = newDate("2016-03-15 08:40");
expect(isDayInRange(day, startDate, endDate)).toBe(false);
});
it("should correctly handle max time is before min time", () => {
const day = newDate("2016-02-01 09:40");
const startDate = newDate("2016-02-15 09:40");
const endDate = newDate("2016-01-15 08:40");