-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathmultidatespicker.test.js
814 lines (654 loc) · 24.6 KB
/
multidatespicker.test.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
// @jest-environment jsdom
describe("MDP Initialization", function () {
let $input;
let spyDatepickerUpdate;
const normalDatepickerUpdates = 3;
beforeEach(function () {
document.body.innerHTML = '<input id="datepicker" />';
$input = $("#datepicker");
spyDatepickerUpdate = jest.spyOn($.datepicker, "_updateDatepicker");
// fix the offsetWidth to make the datepicker visible in jsdom
jest.spyOn($input[0], "offsetWidth", "get").mockReturnValue(1);
});
afterEach(function () {
jest.restoreAllMocks();
});
it("should initialize the multi-date picker correctly", function () {
$input.multiDatesPicker();
expect($input.hasClass("hasDatepicker")).toBe(true);
});
it("should call a beforeShow event with default behavior", function () {
$input.multiDatesPicker();
// triggers the beforeShow event
$input.trigger("focus");
expect(spyDatepickerUpdate).toHaveBeenCalledTimes(normalDatepickerUpdates);
});
it("should call a custom beforeShow event that interrupts the default behavior", function () {
const beforeShow = jest.fn((_) => false); // returning false to interrupt the default behavior
$input.multiDatesPicker({ beforeShow });
// triggers the beforeShow event with a custom function
$input.trigger("focus");
expect(beforeShow).toHaveBeenCalled();
expect(spyDatepickerUpdate).toHaveBeenCalledTimes(
normalDatepickerUpdates - 1,
);
});
});
describe("setMode", function () {
let $input, date;
beforeEach(function () {
// Initialize the input field
document.body.innerHTML = '<input id="datepicker" />';
$input = $("#datepicker");
date = new Date();
$input.multiDatesPicker({
mode: "normal",
maxPicks: 5,
pickableRange: 7,
adjustRangeToDisabled: true,
addDisabledDates: [
new Date(date.setDate(10)),
new Date(date.setDate(15)),
],
});
});
it("should set mode to normal and restrict selection to maxPicks", function () {
$input.multiDatesPicker("addDates", "10/10/2024");
$input.multiDatesPicker("addDates", "10/11/2024");
const selectedDates = $input.multiDatesPicker("getDates");
expect(selectedDates.length).toBe(2);
expect(selectedDates).toContain("10/10/2024");
expect(selectedDates).toContain("10/11/2024");
expect(selectedDates).not.toContain("10/12/2024");
});
it("should set pickableRange and adjust minDate and maxDate accordingly", function () {
const options = { pickableRange: 5 };
$input.multiDatesPicker("setMode", options);
const currentDate = new Date();
const maxDate = new Date(currentDate);
maxDate.setDate(currentDate.getDate() + options.pickableRange);
$input.datepicker("option", "maxDate", maxDate);
const actualMaxDate = $input.datepicker("option", "maxDate");
expect(actualMaxDate).toEqual(maxDate);
});
it("should limit the pickable range to 7 days", function () {
const options = $input.multiDatesPicker();
const mode = options[0].multiDatesPicker.mode;
var startDate = new Date();
var endDate = new Date(startDate);
endDate.setDate(startDate.getDate() + 6);
$input.multiDatesPicker("addDates", [startDate, endDate]);
var selectedDates = $input.multiDatesPicker("getDates");
var selectedStartDate = new Date(selectedDates[0]);
var selectedEndDate = new Date(selectedDates[selectedDates.length - 1]);
var range = (selectedEndDate - selectedStartDate) / (1000 * 60 * 60 * 24);
expect(range).toBeLessThanOrEqual(7);
expect(mode).toBe("normal");
});
it("should not allow selection of disabled dates in normal mode", function () {
$input.multiDatesPicker("addDates", [new Date(date.setDate(10))]);
const options = $input.multiDatesPicker();
const mode = options[0].multiDatesPicker.mode;
var selectedDates = $input.multiDatesPicker("getDates");
var disabledDates = [
new Date(date.setDate(10)),
new Date(date.setDate(15)),
];
var isDisabledDateSelected = selectedDates.some(function (date) {
return disabledDates.some(function (disabledDate) {
return new Date(date).getTime() === disabledDate.getTime();
});
});
expect(isDisabledDateSelected).toBe(false);
expect(mode).toBe("normal");
});
});
describe("init", function () {
let $input;
beforeEach(function () {
// Set up the input element before each test
document.body.innerHTML = '<input id="datepicker">';
$input = $("#datepicker");
});
it("should apply default settings when no options are provided", function () {
// Call the init function without options
$input.multiDatesPicker("init");
// Check that the datepicker was initialized with default settings
const dateFormat = $input.datepicker("option", "dateFormat");
expect(dateFormat).toEqual("mm/dd/yy"); // Default format
});
it("should merge custom options with default settings", function () {
// Call init with custom options
$input.multiDatesPicker("init", {
dateFormat: "dd-mm-yy",
minDate: new Date("10/01/2024"),
maxDate: new Date("10/20/2024"),
});
// Check that the custom dateFormat is applied
const dateFormat = $input.datepicker("option", "dateFormat");
expect(dateFormat).toEqual("dd-mm-yy");
// Check minDate and maxDate options
const minDate = $input.datepicker("option", "minDate");
const maxDate = $input.datepicker("option", "maxDate");
expect(minDate).toEqual(new Date("10/01/2024"));
expect(maxDate).toEqual(new Date("10/20/2024"));
});
it("should call custom onSelect event and toggle date on select", function () {
const onSelectSpy = jest.fn();
// Call init with custom onSelect
$input.multiDatesPicker("init", {
onSelect: onSelectSpy,
});
// Simulate selecting a date
$input.datepicker("setDate", "10/11/2024");
$input.datepicker("option", "onSelect").call($input[0], "10/11/2024");
// Check if custom onSelect is called
expect(onSelectSpy).toHaveBeenCalled();
// Check if the date was toggled in the multiDatesPicker instance
const pickedDates = $input.multiDatesPicker("getDates");
expect(pickedDates).toContain("10/11/2024");
});
it("should correctly set disabled dates and update calendar range", function () {
const $input = $('<input type="text" id="test-datepicker">').appendTo(
"body",
);
// Initialize with options that set minDate and maxDate
$input.multiDatesPicker("init", {
minDate: "01/01/2024",
maxDate: "12/31/2024",
addDisabledDates: ["01/15/2024", "01/16/2024"],
});
const minDate = $input.datepicker("option", "minDate");
const maxDate = $input.datepicker("option", "maxDate");
expect(minDate).not.toBeNull();
expect(maxDate).not.toBeNull();
// Clean up
$input.remove();
});
it("should update altField with selected dates if specified", function () {
// Set up altField
document.body.innerHTML += '<input id="altField">';
const $altField = $("#altField");
// Call init with altField option
$input.multiDatesPicker("init", {
altField: "#altField",
});
// Simulate selecting a date
$input.datepicker("setDate", "10/15/2024");
$input.datepicker("option", "onSelect").call($input[0], "10/15/2024");
// Check that the altField is updated with the selected date
expect($altField.val()).toEqual("10/15/2024");
});
});
describe("invalid methods", function () {
let $input;
beforeEach(function () {
document.body.innerHTML = '<input id="datepicker" />';
$input = $("#datepicker");
});
it("should error on non-existing method", function () {
expect(function () {
$input.multiDatesPicker("happyNewYear");
}).toThrowError(
"Method happyNewYear does not exist on jQuery.multiDatesPicker",
);
});
});
describe("dateConvert", function () {
let $input;
beforeEach(function () {
document.body.innerHTML = '<input id="datepicker" />';
$input = $("#datepicker");
});
it("should error on unsupported date conversion", function () {
expect(function () {
$input.multiDatesPicker("dateConvert", {}, "object");
}).toThrowError("Received date is in a non supported format!");
});
});
describe("addDates", function () {
let $input;
beforeEach(function () {
document.body.innerHTML = '<input id="datepicker" />';
$input = $("#datepicker");
});
it("should add a date", function () {
$input.multiDatesPicker();
try {
$input.multiDatesPicker("addDates", "05/15/2023");
const dates = $input.multiDatesPicker("getDates");
expect(dates.length).toBe(1);
expect(dates[0]).toBe("05/15/2023");
} catch (error) {
console.error("Error in add date test:", error);
throw error;
}
});
it("should ignore invalid date string", function () {
expect(function () {
$input.multiDatesPicker("addDates", "invalid-date");
}).toThrowError("Missing number");
});
it("should ignore non-date objects", function () {
expect(function () {
$input.multiDatesPicker("addDates", { someKey: "someValue" });
}).toThrowError("Empty array of dates received.");
});
it("should not allow adding a date beyond maxDate", function () {
// Set maxDate to today
var today = new Date();
$input.multiDatesPicker({
maxDate: today,
});
// Add a future date beyond the maxDate
var futureDate = new Date(today);
futureDate.setDate(today.getDate() + 10);
expect(function () {
$input.multiDatesPicker("addDates", futureDate);
}).toThrowError("Empty array of dates received.");
});
it("should handle null input as invalid date", function () {
expect(function () {
// Trying to add null as a date
$input.multiDatesPicker("addDates", null);
}).toThrowError("Cannot read properties of null (reading 'length')");
});
});
describe("compareDates", function () {
let $input;
beforeEach(function () {
document.body.innerHTML = '<input id="datepicker" />';
$input = $("#datepicker");
});
it("should return 0 when dates are the same", function () {
const date1 = new Date("2024-10-10");
const date2 = new Date("2024-10-10");
const result = $input.multiDatesPicker("compareDates", date1, date2);
expect(result).toBe(0); // They are the same day
});
it("should return a positive number when date1 is later than date2", function () {
const date1 = new Date("2024-10-15");
const date2 = new Date("2024-10-10");
const result = $input.multiDatesPicker("compareDates", date1, date2);
expect(result).toBeGreaterThan(0); // date1 is later than date2
});
it("should return a negative number when date1 is earlier than date2", function () {
const date1 = new Date("2024-10-05");
const date2 = new Date("2024-10-10");
const result = $input.multiDatesPicker("compareDates", date1, date2);
expect(result).toBeLessThan(0);
});
it("should compare dates with different years", function () {
const date1 = new Date("2025-10-10");
const date2 = new Date("2024-10-10");
const result = $input.multiDatesPicker("compareDates", date1, date2);
expect(result).toBeGreaterThan(0);
});
it("should compare dates with different months in the same year", function () {
const date1 = new Date("2024-11-10");
const date2 = new Date("2024-10-10");
const result = $input.multiDatesPicker("compareDates", date1, date2);
expect(result).toBeGreaterThan(0);
});
it("should compare dates with different days in the same month", function () {
const date1 = new Date("2024-10-12");
const date2 = new Date("2024-10-10");
const result = $input.multiDatesPicker("compareDates", date1, date2);
expect(result).toBeGreaterThan(0);
});
});
describe("removeDates", function () {
let $input;
function formatDate(date) {
if (date === undefined) return undefined; // Handle undefined input
const d = new Date(date);
let month = "" + (d.getMonth() + 1);
let day = "" + d.getDate();
const year = d.getFullYear();
if (month.length < 2) month = "0" + month;
if (day.length < 2) day = "0" + day;
return [month, day, year].join("/");
}
beforeEach(function () {
// Initialize the input with some dates
document.body.innerHTML = '<input id="datepicker" />';
$input = $("#datepicker");
$input.multiDatesPicker({
addDates: ["10/10/2024", "10/12/2024", "10/14/2024", "10/16/2024"],
});
});
it("should remove a single date", function () {
const removed = $input.multiDatesPicker("removeDates", "10/12/2024");
const formattedRemoved = removed.map(formatDate);
expect(formattedRemoved).toEqual(["10/12/2024"]);
const remainingDates = $input.multiDatesPicker("getDates");
const formattedRemaining = remainingDates.map(formatDate);
expect(formattedRemaining).toEqual([
"10/10/2024",
"10/14/2024",
"10/16/2024",
]);
});
it("should remove multiple dates", function () {
const removed = $input.multiDatesPicker("removeDates", [
"10/12/2024",
"10/16/2024",
]);
const formattedRemoved = removed.map(formatDate);
expect(formattedRemoved).toEqual(["10/12/2024", "10/16/2024"]);
const remainingDates = $input.multiDatesPicker("getDates");
const formattedRemaining = remainingDates.map(formatDate);
expect(formattedRemaining).toEqual(["10/10/2024", "10/14/2024"]);
});
it("should not remove a date that does not exist", function () {
const removed = $input.multiDatesPicker("removeDates", "10/18/2024");
const formattedRemoved = removed.map(formatDate);
expect(formattedRemoved).toEqual([undefined]);
const remainingDates = $input.multiDatesPicker("getDates");
const formattedRemaining = remainingDates.map(formatDate);
expect(formattedRemaining).toEqual([
"10/10/2024",
"10/12/2024",
"10/14/2024",
"10/16/2024",
]);
});
});
describe("toggleDate", function () {
let $input;
beforeEach(function () {
document.body.innerHTML = '<input id="datepicker" />';
$input = $("#datepicker");
$input.multiDatesPicker({
addDates: ["10/10/2024", "10/12/2024", "10/14/2024"],
});
});
it("should add a date that does not exist", function () {
$input.multiDatesPicker("toggleDate", "10/16/2024");
const remainingDates = $input.multiDatesPicker("getDates");
expect(remainingDates).toContain("10/16/2024");
expect(remainingDates.length).toBe(4);
});
it("should remove a date that exists", function () {
$input.multiDatesPicker("toggleDate", "10/12/2024");
const remainingDates = $input.multiDatesPicker("getDates");
expect(remainingDates).not.toContain("10/12/2024");
expect(remainingDates.length).toBe(2);
});
it("should handle daysRange mode", function () {
$input.multiDatesPicker("destroy");
$input.multiDatesPicker({
mode: "daysRange",
autoselectRange: [0, 2],
});
$input.multiDatesPicker("toggleDate", "10/10/2024");
const remainingDates = $input.multiDatesPicker("getDates");
expect(remainingDates.length).toBe(2);
expect(remainingDates).toContain("10/10/2024");
expect(remainingDates).toContain("10/11/2024");
});
it("should handle daysRange inverting the order of dates", function () {
$input.multiDatesPicker("destroy");
$input.multiDatesPicker({
mode: "daysRange",
autoselectRange: [2, 0],
});
const date = "10/10/2024";
$input.multiDatesPicker("toggleDate", date);
const dates = $input.multiDatesPicker("getDates");
expect(dates[0]).toBe(date);
});
it("should throw an error when no date is provided", function () {
expect(function () {
$input.multiDatesPicker("toggleDate");
}).toThrow();
});
});
describe("multiDatesPicker value function", function () {
let $input;
beforeEach(function () {
// Initialize the multiDatesPicker with a separator
$input = $("<input>").multiDatesPicker({
separator: ",",
});
// Add dates to the input
$input.multiDatesPicker("addDates", [
"10/10/2024",
"10/12/2024",
"10/14/2024",
]);
});
it("should set the value by adding dates from a string", function () {
const dateString = "10/16/2024,10/18/2024";
// Clear previous dates before setting new ones
$input.multiDatesPicker("resetDates", "picked"); // Clear previously picked dates
$input.multiDatesPicker("value", dateString); // Set new dates
const selectedDates = $input.multiDatesPicker("getDates");
expect(selectedDates).toEqual(["10/16/2024", "10/18/2024"]); // Check if new dates are added
});
it("should return the current dates as a string", function () {
const valueString = $input.multiDatesPicker("value"); // Get dates as a string
expect(valueString).toEqual("10/10/2024,10/12/2024,10/14/2024"); // Should return pre-set dates
});
it("should return an empty string when no dates are selected", function () {
// Initialize without any pre-set dates for this test
$input = $("<input>").multiDatesPicker({ separator: "," });
const valueString = $input.multiDatesPicker("value");
expect(valueString).toEqual(""); // Expect empty string when no dates are set
});
});
describe("gotDate", function () {
let $input;
beforeEach(function () {
// Initialize the multiDatesPicker with multiple dates
document.body.innerHTML = '<input id="datepicker">';
$input = $("#datepicker");
// $input.multiDatesPicker('addDates', ['10/10/2024', '10/12/2024', '10/14/2024']);
// Add picked dates
$input.multiDatesPicker("addDates", [
"10/10/2024",
"10/12/2024",
"10/14/2024",
]);
// Add disabled dates
$input.multiDatesPicker(
"addDates",
["10/11/2024", "10/13/2024"],
"disabled",
);
});
it("should return the index of an existing date in the picked dates", function () {
const index = $input.multiDatesPicker("gotDate", "10/12/2024");
expect(index).toEqual(1); // Index should be 1 for '10/12/2024'
});
it("should return false for a non-existing date", function () {
const index = $input.multiDatesPicker("gotDate", "10/15/2024");
expect(index).toEqual(false);
});
it("should return the index of an existing date in the disabled dates", function () {
const index = $input.multiDatesPicker("gotDate", "10/13/2024", "disabled");
expect(index).toEqual(1);
});
it("should default to checking picked dates when no type is provided", function () {
const index = $input.multiDatesPicker("gotDate", "10/12/2024");
expect(index).toEqual(1);
});
});
describe("removeIndexes", function () {
let $input;
beforeEach(function () {
document.body.innerHTML = '<input id="datepicker">';
$input = $("#datepicker");
$input.multiDatesPicker("addDates", [
"10/10/2024",
"10/12/2024",
"10/14/2024",
]);
});
it("should remove a single index from picked dates", function () {
$input.multiDatesPicker("removeIndexes", 1);
const pickedDates = $input.multiDatesPicker("getDates");
expect(pickedDates).toEqual(["10/10/2024", "10/14/2024"]);
});
it("should remove multiple indexes from picked dates", function () {
$input.multiDatesPicker("removeIndexes", [0, 2]);
const pickedDates = $input.multiDatesPicker("getDates");
expect(pickedDates).toEqual(["10/12/2024"]);
});
});
describe("resetDates", function () {
let $input;
beforeEach(function () {
document.body.innerHTML = '<input id="datepicker">';
$input = $("#datepicker");
$input.multiDatesPicker("addDates", [
"10/10/2024",
"10/12/2024",
"10/14/2024",
]);
});
it("should reset picked dates", function () {
let pickedDates = $input.multiDatesPicker("getDates");
expect(pickedDates).toEqual(["10/10/2024", "10/12/2024", "10/14/2024"]);
$input.multiDatesPicker("resetDates", "picked");
pickedDates = $input.multiDatesPicker("getDates");
expect(pickedDates).toEqual([]);
});
it("should reset picked dates by default if no type is provided", function () {
let pickedDates = $input.multiDatesPicker("getDates");
expect(pickedDates).toEqual(["10/10/2024", "10/12/2024", "10/14/2024"]);
$input.multiDatesPicker("resetDates");
pickedDates = $input.multiDatesPicker("getDates");
expect(pickedDates).toEqual([]);
});
});
describe("getDates", function () {
let $input;
beforeEach(function () {
document.body.innerHTML = '<input id="datepicker">';
$input = $("#datepicker");
// Add picked dates
$input.multiDatesPicker("addDates", [
"10/10/2024",
"10/12/2024",
"10/14/2024",
]);
// Add disabled dates
$input.multiDatesPicker(
"addDates",
["10/11/2024", "10/13/2024"],
"disabled",
);
});
it("should return picked dates as a string array by default", function () {
const pickedDates = $input.multiDatesPicker("getDates");
expect(pickedDates).toEqual(["10/10/2024", "10/12/2024", "10/14/2024"]);
});
it("should return disabled dates as a string array", function () {
const disabledDates = $input.multiDatesPicker(
"getDates",
"string",
"disabled",
);
expect(disabledDates).toEqual(["10/11/2024", "10/13/2024"]);
});
it('should return picked dates as objects when format is "object"', function () {
const pickedDates = $input.multiDatesPicker("getDates", "object");
expect(pickedDates).toEqual([
new Date("10/10/2024"),
new Date("10/12/2024"),
new Date("10/14/2024"),
]);
});
it('should return disabled dates as objects when format is "object"', function () {
const disabledDates = $input.multiDatesPicker(
"getDates",
"object",
"disabled",
);
expect(disabledDates).toEqual([
new Date("10/11/2024"),
new Date("10/13/2024"),
]);
});
it('should return picked dates as numbers when format is "number"', function () {
const pickedDates = $input.multiDatesPicker("getDates", "number");
expect(pickedDates).toEqual([
Date.parse("10/10/2024"),
Date.parse("10/12/2024"),
Date.parse("10/14/2024"),
]);
});
it('should return disabled dates as numbers when format is "number"', function () {
const disabledDates = $input.multiDatesPicker(
"getDates",
"number",
"disabled",
);
expect(disabledDates).toEqual([
Date.parse("10/11/2024"),
Date.parse("10/13/2024"),
]);
});
it("should throw an error for unsupported formats", function () {
expect(function () {
$input.multiDatesPicker("getDates", "unsupportedFormat");
}).toThrowError('Format "unsupportedFormat" not supported!');
});
});
describe("sumDays", function () {
let $input;
beforeEach(function () {
document.body.innerHTML = '<input id="datepicker">';
$input = $("#datepicker");
});
it("should add positive days to a Date object", function () {
const initialDate = new Date(2024, 9, 1);
const n_days = 5;
const result = $input.multiDatesPicker("sumDays", initialDate, n_days);
const expectedDate = new Date(2024, 9, 6);
expect(result).toEqual(expectedDate);
});
it("should subtract days when n_days is negative", function () {
const initialDate = new Date(2024, 9, 10);
const n_days = -3;
const result = $input.multiDatesPicker("sumDays", initialDate, n_days);
const expectedDate = new Date(2024, 9, 7);
expect(result).toEqual(expectedDate);
});
it("should handle adding days to a date in string format", function () {
const initialDate = "10/01/2024";
const n_days = 10;
const result = $input.multiDatesPicker("sumDays", initialDate, n_days);
expect(result).toBe("10/11/2024");
});
it("should handle leap years correctly", function () {
const initialDate = new Date(2024, 1, 28);
const n_days = 2;
const result = $input.multiDatesPicker("sumDays", initialDate, n_days);
const expectedDate = new Date(2024, 2, 1);
expect(result).toEqual(expectedDate);
});
it("should handle month overflow correctly", function () {
const initialDate = new Date(2024, 9, 31);
const n_days = 5;
// Call sumDays and check result
const result = $input.multiDatesPicker("sumDays", initialDate, n_days);
const expectedDate = new Date(2024, 10, 5);
expect(result).toEqual(expectedDate);
});
});
describe("destroy", function () {
let $input;
beforeEach(function () {
document.body.innerHTML = '<input id="datepicker">';
$input = $("#datepicker");
$input.multiDatesPicker();
});
it("should set multiDatesPicker instance to null and destroy the datepicker", function () {
expect($input[0].multiDatesPicker).toBeDefined();
$input.multiDatesPicker("destroy");
expect($input[0].multiDatesPicker).toBeNull();
expect($input.datepicker("getDate")).toBeNull();
});
});