-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.test.js
866 lines (631 loc) · 35.5 KB
/
functions.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
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
const {
handlePingCommand,
handleTimeCommand,
handleUnknownCommand,
handleHelpCommand,
handleTimerCommand,
handleShowCommand,
handleResetCommand,
handleSoonCommand
} = require('./functions');
const { sendMessage } = require('./discord');
jest.mock('./discord', () => ({
sendMessage: jest.fn(),
}));
beforeEach(() => {
jest.clearAllMocks();
jest.spyOn(console, 'error').mockImplementation(() => {});
});
afterAll(() => {
console.error.mockRestore();
});
describe('handlePingCommand', () => {
it('should respond with pong when args length is 2', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'ping'];
const result = await handlePingCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'pong!');
});
it('should return false when args length is greater than 2', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'ping', 'extra'];
const result = await handlePingCommand(message, args);
expect(result).toBe(false);
expect(sendMessage).not.toHaveBeenCalled();
});
it('should handle error when sending pong message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'ping'];
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handlePingCommand(message, args);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending pong message:', expect.any(Error));
});
});
describe('handleTimeCommand', () => {
it('should prompt for timezone when args length is less than 3', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'time'];
const result = await handleTimeCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Please provide a timezone.');
});
it('should send current time for valid timezone', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'time', 'UTC'];
const result = await handleTimeCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(
message,
expect.stringContaining('The current time in UTC is:')
);
});
it('should handle invalid timezone', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'time', 'Invalid/Timezone'];
const result = await handleTimeCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(
message,
'Invalid/Timezone is not a timezone. (Example: utc)'
);
});
it('should handle error when sending timezone prompt', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'time'];
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleTimeCommand(message, args);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending timezone prompt:', expect.any(Error));
});
it('should handle error when sending invalid timezone message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'time', 'Invalid/Timezone'];
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleTimeCommand(message, args);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending invalid timezone message:', expect.any(Error));
});
});
describe('handleUnknownCommand', () => {
it('should respond with unknown command message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const result = await handleUnknownCommand(message);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(
message,
'Unknown command - use `!clockwatch help` for a list of commands.'
);
});
it('should handle error when sending unknown command message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleUnknownCommand(message);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending unknown command message:', expect.any(Error));
});
});
describe('handleHelpCommand', () => {
it('should respond with help message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const result = await handleHelpCommand(message);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(
message,
'Available commands:\n' +
'`!clockwatch ping` - check if the bot is online\n' +
'`!clockwatch time [timezone]` - get the current time in a timezone\n' +
'`!clockwatch timer [duration] [unit]` - set a timer for a duration (e.g., 5 min, 2 hours)\n' +
'`!clockwatch soon [unit]` - set a timer for a random duration (seconds for up to 15 minutes, minutes for up to 90 minutes, hours for up to 6 hours )\n' +
'`!clockwatch show` - shows all active timers and alarms\n' +
'`!clockwatch reset` - reset all timers'
);
});
it('should handle error when sending help message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleHelpCommand(message);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending help message:', expect.any(Error));
});
});
describe('handleTimerCommand', () => {
it('should prompt for duration and unit when args length is less than 4', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Please provide a duration and unit (e.g., 5 min, 2 hours).');
});
it('should respond with invalid duration message for non-numeric duration', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', 'abc', 'min'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Invalid duration. Please provide a positive whole number.');
});
it('should respond with invalid unit message for unsupported unit', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '5', 'days'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Invalid unit. Please use seconds, minutes, or hours.');
});
it('should respond with duration too long message for duration greater than 24 hours', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '25', 'hours'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(false);
expect(sendMessage).toHaveBeenCalledWith(message, 'Duration is too long. Please provide a time less than 24 hours.');
});
it('should set a timer and notify when time is up', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '1', 'min'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Timer set for 1 min.');
jest.advanceTimersByTime(60000);
expect(sendMessage).toHaveBeenCalledWith(message, '<@12345> : 1 min have passed.');
jest.useRealTimers();
});
it('should handle "sec" unit correctly', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '5', 'sec'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Timer set for 5 sec.');
jest.advanceTimersByTime(5000);
expect(sendMessage).toHaveBeenCalledWith(message, '<@12345> : 5 sec have passed.');
jest.useRealTimers();
});
it('should handle "second" unit correctly', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '5', 'second'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Timer set for 5 second.');
jest.advanceTimersByTime(5000);
expect(sendMessage).toHaveBeenCalledWith(message, '<@12345> : 5 second have passed.');
jest.useRealTimers();
});
it('should handle "seconds" unit correctly', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '5', 'seconds'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Timer set for 5 seconds.');
jest.advanceTimersByTime(5000);
expect(sendMessage).toHaveBeenCalledWith(message, '<@12345> : 5 seconds have passed.');
jest.useRealTimers();
});
it('should handle "min" unit correctly', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '5', 'min'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Timer set for 5 min.');
jest.advanceTimersByTime(300000);
expect(sendMessage).toHaveBeenCalledWith(message, '<@12345> : 5 min have passed.');
jest.useRealTimers();
});
it('should handle "minute" unit correctly', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '5', 'minute'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Timer set for 5 minute.');
jest.advanceTimersByTime(300000);
expect(sendMessage).toHaveBeenCalledWith(message, '<@12345> : 5 minute have passed.');
jest.useRealTimers();
});
it('should handle "minutes" unit correctly', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '5', 'minutes'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Timer set for 5 minutes.');
jest.advanceTimersByTime(300000);
expect(sendMessage).toHaveBeenCalledWith(message, '<@12345> : 5 minutes have passed.');
jest.useRealTimers();
});
it('should handle "hour" unit correctly', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '1', 'hour'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Timer set for 1 hour.');
jest.advanceTimersByTime(3600000);
expect(sendMessage).toHaveBeenCalledWith(message, '<@12345> : 1 hour have passed.');
jest.useRealTimers();
});
it('should handle "hours" unit correctly', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '1', 'hours'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Timer set for 1 hours.');
jest.advanceTimersByTime(3600000);
expect(sendMessage).toHaveBeenCalledWith(message, '<@12345> : 1 hours have passed.');
jest.useRealTimers();
});
it('should handle error when sending invalid unit message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '5', 'invalidUnit'];
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleTimerCommand(message, args);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending unit message:', expect.any(Error));
});
it('should handle error when sending timer message', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '1', 'min'];
sendMessage.mockImplementationOnce(() => Promise.resolve());
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Timer set for 1 min.');
jest.advanceTimersByTime(60000);
expect(sendMessage).toHaveBeenCalledWith(message, '<@12345> : 1 min have passed.');
expect(console.error).toHaveBeenCalledWith('Error sending timer message:', expect.any(Error));
jest.useRealTimers();
});
it('should handle error when sending invalid duration message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '-5', 'min'];
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleTimerCommand(message, args);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending invalid duration message:', expect.any(Error));
});
it('should handle error when sending duration too long message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '25', 'hours'];
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleTimerCommand(message, args);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending duration message:', expect.any(Error));
});
it('should handle error when sending timer prompt message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer'];
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleTimerCommand(message, args);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending timer prompt:', expect.any(Error));
});
it('should handle error when sending initial timer message', async () => {
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '1', 'min'];
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleTimerCommand(message, args);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending timer message:', expect.any(Error));
});
it('should set a timer and notify when time is up', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '1', 'min'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Timer set for 1 min.');
jest.advanceTimersByTime(60000);
expect(sendMessage).toHaveBeenCalledWith(message, '<@12345> : 1 min have passed.');
jest.useRealTimers();
});
describe('handleTimerCommand with reset', () => {
it('should not send a timer elapsed message if the timer is reset before it elapses', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'timer', '1', 'min'];
const result = await handleTimerCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Timer set for 1 min.');
// Run the reset command before the timer elapses
await handleResetCommand(message);
// Advance the timers by 1 minute
jest.advanceTimersByTime(60000);
// Check that no timer elapsed message was sent
expect(sendMessage).not.toHaveBeenCalledWith(message, '<@12345> : 1 min have passed.');
jest.useRealTimers();
});
});
});
describe('handleShowCommand', () => {
beforeEach(() => {
handleResetCommand({ channel: { send: jest.fn() }, guild: { id: 'guild123' } });
sendMessage.mockClear();
});
it('should respond with no active timers message when there are no timers', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const result = await handleShowCommand(message);
expect(result).toBe(true);
const calls = sendMessage.mock.calls.filter(call => call[0] === message);
expect(calls).toEqual([[message, 'No active timers.']]);
});
it('should respond with active timers list when there are timers', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
jest.useFakeTimers();
// Make some timers
const message1 = { channel: { send: jest.fn() }, author: { username: 'user1' }, guild: { id: 'guild123' } };
const args1 = ['!clockwatch', 'timer', '5', 'min'];
await handleTimerCommand(message1, args1);
const message2 = { channel: { send: jest.fn() }, author: { username: 'user2' }, guild: { id: 'guild123' } };
const args2 = ['!clockwatch', 'timer', '1', 'hour'];
await handleTimerCommand(message2, args2);
const result = await handleShowCommand(message);
expect(result).toBe(true);
const calls = sendMessage.mock.calls.filter(call => call[0] === message);
expect(calls).toEqual(expect.arrayContaining([
[message, expect.stringContaining('Active timers:\nuser1: 5 min')],
[message, expect.stringContaining('user2: 1 hour')]
]));
});
it('should handle error when sending show command message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
sendMessage.mockImplementationOnce(() => { throw new Error('Mocked error'); });
const result = await handleShowCommand(message);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending show command message:', expect.any(Error));
});
});
describe('handleResetCommand', () => {
it('should reset all timers and send reset message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
// Make some timers
const message1 = { channel: { send: jest.fn() }, author: { id: 'user1' }, guild: { id: 'guild123' } };
const args1 = ['!clockwatch', 'timer', '5', 'min'];
await handleTimerCommand(message1, args1);
const message2 = { channel: { send: jest.fn() }, author: { id: 'user2' }, guild: { id: 'guild123' } };
const args2 = ['!clockwatch', 'timer', '1', 'hour'];
await handleTimerCommand(message2, args2);
const result = await handleResetCommand(message);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'All timers reset.');
});
it('should handle error when sending reset message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
sendMessage.mockImplementationOnce(() => { throw new Error('Test error'); });
const result = await handleResetCommand(message);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending reset command message:', expect.any(Error));
});
});
describe('handleSoonCommand', () => {
it('should prompt for unit when args length is less than 3', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Please provide a unit (seconds for up to 15 minutes, minutes for up to 90 minutes, or hours for up to 6 hours).');
});
it('should set a timer for a random duration in seconds', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345', username: 'user1' }, guild: { id: 'guild1234' } };
const args = ['!clockwatch', 'soon', 'seconds'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('Timer set for a random duration of'));
// Advance the timers by a random duration (simulate the timer elapsing)
const timerDuration = sendMessage.mock.calls[0][1].match(/(\d+) seconds/)[1] * 1000;
jest.advanceTimersByTime(timerDuration);
// Check that the timer elapsed message was sent
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('<@12345> :'));
jest.useRealTimers();
});
it('should set a timer for a random duration in minutes', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345', username: 'user1' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'minutes'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('Timer set for a random duration of'));
// Advance the timers by a random duration (simulate the timer elapsing)
const timerDuration = sendMessage.mock.calls[0][1].match(/(\d+) minutes/)[1] * 60 * 1000;
jest.advanceTimersByTime(timerDuration);
// Check that the timer elapsed message was sent
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('<@12345> :'));
jest.useRealTimers();
});
it('should set a timer for a random duration in hours', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345', username: 'user1' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'hours'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('Timer set for a random duration of'));
// Advance the timers by a random duration (simulate the timer elapsing)
const timerDuration = sendMessage.mock.calls[0][1].match(/(\d+) hours/)[1] * 60 * 60 * 1000;
jest.advanceTimersByTime(timerDuration);
// Check that the timer elapsed message was sent
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('<@12345> :'));
jest.useRealTimers();
});
it('should handle invalid unit', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'invalidUnit'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, 'Invalid unit. Please use seconds, minutes, or hours.');
});
it('should handle error when sending unit prompt', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon'];
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleSoonCommand(message, args);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending unit prompt:', expect.any(Error));
});
it('should handle error when sending invalid unit message', async () => {
const message = { channel: { send: jest.fn() }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'invalidUnit'];
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleSoonCommand(message, args);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending invalid unit message:', expect.any(Error));
});
it('should handle error when sending timer message', async () => {
const message = { channel: { send: jest.fn() }, author: { id: '12345', username: 'user1' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'minutes'];
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
const result = await handleSoonCommand(message, args);
expect(result).toBe(false);
expect(console.error).toHaveBeenCalledWith('Error sending timer message:', expect.any(Error));
});
it('should handle error when sending timer elapsed message', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345', username: 'user1' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'minutes'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('Timer set for a random duration of'));
// Mock error when sending the timer elapsed message
sendMessage.mockImplementationOnce(() => {
throw new Error('Mocked error');
});
// Advance the timers by a random duration (simulate the timer elapsing)
const timerDuration = sendMessage.mock.calls[0][1].match(/(\d+) minutes/)[1] * 60 * 1000;
jest.advanceTimersByTime(timerDuration);
// Check that the error was logged
expect(console.error).toHaveBeenCalledWith('Error sending timer message:', expect.any(Error));
jest.useRealTimers();
});
it('should not send a timer elapsed message if the timer is reset before it elapses', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345', username: 'user1' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'minutes'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('Timer set for a random duration of'));
// Run the reset command before the timer elapses
await handleResetCommand(message);
// Advance the timers by a random duration (simulate the timer elapsing)
const timerDuration = sendMessage.mock.calls[0][1].match(/(\d+) minutes/)[1] * 60 * 1000;
jest.advanceTimersByTime(timerDuration);
// Check that no timer elapsed message was sent
expect(sendMessage).not.toHaveBeenCalledWith(message, expect.stringContaining('<@12345> :'));
jest.useRealTimers();
});
it('should set a timer for a random duration in sec', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345', username: 'user1' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'sec'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('Timer set for a random duration of'));
// Advance the timers by a random duration (simulate the timer elapsing)
const timerDuration = sendMessage.mock.calls[0][1].match(/(\d+) seconds/)[1] * 1000;
jest.advanceTimersByTime(timerDuration);
// Check that the timer elapsed message was sent
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('<@12345> :'));
jest.useRealTimers();
});
it('should set a timer for a random duration in second', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345', username: 'user1' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'second'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('Timer set for a random duration of'));
// Advance the timers by a random duration (simulate the timer elapsing)
const timerDuration = sendMessage.mock.calls[0][1].match(/(\d+) seconds/)[1] * 1000;
jest.advanceTimersByTime(timerDuration);
// Check that the timer elapsed message was sent
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('<@12345> :'));
jest.useRealTimers();
});
it('should set a timer for a random duration in min', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345', username: 'user1' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'min'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('Timer set for a random duration of'));
// Advance the timers by a random duration (simulate the timer elapsing)
const timerDuration = sendMessage.mock.calls[0][1].match(/(\d+) minutes/)[1] * 60 * 1000;
jest.advanceTimersByTime(timerDuration);
// Check that the timer elapsed message was sent
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('<@12345> :'));
jest.useRealTimers();
});
it('should set a timer for a random duration in minute', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345', username: 'user1' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'minute'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('Timer set for a random duration of'));
// Advance the timers by a random duration (simulate the timer elapsing)
const timerDuration = sendMessage.mock.calls[0][1].match(/(\d+) minutes/)[1] * 60 * 1000;
jest.advanceTimersByTime(timerDuration);
// Check that the timer elapsed message was sent
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('<@12345> :'));
jest.useRealTimers();
});
it('should set a timer for a random duration in hour', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345', username: 'user1' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'hour'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('Timer set for a random duration of'));
// Advance the timers by a random duration (simulate the timer elapsing)
const timerDuration = sendMessage.mock.calls[0][1].match(/(\d+) hours/)[1] * 60 * 60 * 1000;
jest.advanceTimersByTime(timerDuration);
// Check that the timer elapsed message was sent
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('<@12345> :'));
jest.useRealTimers();
});
it('should set a timer for a random duration in hours', async () => {
jest.useFakeTimers();
const message = { channel: { send: jest.fn() }, author: { id: '12345', username: 'user1' }, guild: { id: 'guild123' } };
const args = ['!clockwatch', 'soon', 'hours'];
const result = await handleSoonCommand(message, args);
expect(result).toBe(true);
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('Timer set for a random duration of'));
// Advance the timers by a random duration (simulate the timer elapsing)
const timerDuration = sendMessage.mock.calls[0][1].match(/(\d+) hours/)[1] * 60 * 60 * 1000;
jest.advanceTimersByTime(timerDuration);
// Check that the timer elapsed message was sent
expect(sendMessage).toHaveBeenCalledWith(message, expect.stringContaining('<@12345> :'));
jest.useRealTimers();
});
});