-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathjobScheduler.test.js
More file actions
806 lines (648 loc) · 25.5 KB
/
jobScheduler.test.js
File metadata and controls
806 lines (648 loc) · 25.5 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
'use strict';
const cds = require('@sap/cds');
const { expect } = cds.test(__dirname + '/../../..');
const sinon = require('sinon');
// Jobs client package
const jobSchedulerClient = require('@sap/jobs-client');
// Lib reuse files
const JobScheduler = require('../../../srv/lib/jobScheduler');
const serviceCredentials = require('../../../srv/lib/serviceCredentials');
describe('JobScheduler Class - initialize Method', () => {
let serviceCredentialsStub;
let errorLogStub;
beforeEach(() => {
// Stub to simulate service credentials with a URL
serviceCredentialsStub = sinon
.stub(serviceCredentials, 'getServiceCredentials')
.returns({
url: 'http://example.com'
});
errorLogStub = sinon.stub(console, 'error');
});
afterEach(() => {
// Restore all stubs back to their original methods
serviceCredentialsStub.restore();
errorLogStub.restore();
});
describe('JobScheduler Class - initialize method success', () => {
let serviceTokenStub;
beforeEach(() => {
// Stub to simulate getting a JWT token
serviceTokenStub = sinon
.stub(serviceCredentials, 'getServiceToken')
.resolves('mockToken');
});
afterEach(() => {
serviceTokenStub.restore();
});
it('should initialize jobSchedulerClient with JWT and service URL', async () => {
const jobScheduler = await JobScheduler.create({}, 'mockConsumerID');
// Validate that the jobScheduler has correct JWT and jobSchedulerClient initialized
expect(jobScheduler.jwt).to.equal('mockToken');
expect(jobScheduler.jobSchedulerClient).to.be.instanceOf(
jobSchedulerClient.Scheduler
);
expect(serviceCredentialsStub.calledOnce).to.be.true;
expect(serviceTokenStub.calledOnce).to.be.true;
expect(jobScheduler.jobSchedulerClient._accessToken).to.equal(
'mockToken'
);
});
});
describe('JobScheduler Class - initialize method failure', () => {
let serviceTokenStub;
beforeEach(() => {
// Stub to simulate getting a JWT token
serviceTokenStub = sinon
.stub(serviceCredentials, 'getServiceToken')
.rejects();
});
afterEach(() => {
serviceTokenStub.restore();
});
it('should throw an error if initialization fails', async () => {
try {
await JobScheduler.create({}, 'mockConsumerID');
} catch (error) {
expect(error.message).to.equal('Error');
expect(serviceCredentialsStub.calledOnce).to.be.true;
expect(errorLogStub.calledOnce).to.be.true;
}
});
});
});
describe('JobScheduler Class - startJob Method', () => {
let jobScheduler;
let getJobByNameStub;
let getJobScheduleStub;
let createJobScheduleStub;
let updateJobScheduleStub;
let createJobStub;
let errorLogStub;
let serviceCredentialsStub;
let serviceTokenStub;
let stubConsoleLog;
beforeEach(async () => {
// Stub to simulate service credentials with a URL
serviceCredentialsStub = sinon
.stub(serviceCredentials, 'getServiceCredentials')
.returns({
url: 'http://example.com'
});
errorLogStub = sinon.stub(console, 'error');
serviceTokenStub = sinon
.stub(serviceCredentials, 'getServiceToken')
.resolves('mockToken');
// Create instance of JobScheduler with dummy data
jobScheduler = await JobScheduler.create({}, 'mockConsumerID');
// Stub methods that interact with job scheduler
getJobByNameStub = sinon.stub(jobScheduler, 'getJobByName');
getJobScheduleStub = sinon.stub(jobScheduler, 'getJobSchedule');
createJobScheduleStub = sinon.stub(jobScheduler, 'createJobSchedule');
updateJobScheduleStub = sinon.stub(jobScheduler, 'updateJobSchedule');
createJobStub = sinon.stub(jobScheduler, 'createJob');
stubConsoleLog = sinon.stub(console, 'log');
});
afterEach(() => {
// Restore all the stubs back to their original methods
getJobByNameStub.restore();
getJobScheduleStub.restore();
createJobScheduleStub.restore();
updateJobScheduleStub.restore();
createJobStub.restore();
serviceCredentialsStub.restore();
errorLogStub.restore();
serviceTokenStub.restore();
stubConsoleLog.restore();
});
it('should create a new schedule if not existing', async () => {
const jobId = 'mockJobID';
const scheduleId = 'mockScheduleID';
// Simulating that a job was found, but no schedule exists
getJobByNameStub.resolves({ _id: jobId });
getJobScheduleStub.resolves(null);
createJobScheduleStub.resolves({ scheduleId });
const result = await jobScheduler.startJob('newJob', {}, 'anAction');
// Assert that createJobSchedule was called once and returned the correct ids
expect(createJobScheduleStub.calledOnce).to.be.true;
expect(createJobScheduleStub.calledWithExactly(jobId, {})).to.be.true;
// Assert that correct jobId and scheduleId are returned
expect(result).to.deep.equal(jobId);
// Verify that the correct log message was produced
expect(stubConsoleLog.calledOnce).to.be.true;
});
it('should update an existing schedule', async () => {
const jobId = 'mockJobID';
const scheduleId = 'mockScheduleID';
// Simulating that a job and an existing schedule were found
getJobByNameStub.resolves({ _id: jobId });
getJobScheduleStub.resolves({ scheduleId: scheduleId });
updateJobScheduleStub.resolves({ scheduleId });
const result = await jobScheduler.startJob('updateJob', {}, 'anAction');
// Assert that updateJobSchedule was called once and returned the correct ids
expect(updateJobScheduleStub.calledOnce).to.be.true;
expect(updateJobScheduleStub.calledWithExactly(jobId, scheduleId, {})).to.be
.true;
// Assert that correct jobId and scheduleId are returned
expect(result).to.deep.equal(jobId);
// Verify that the correct log message was produced
expect(
stubConsoleLog.calledOnceWithExactly(
`JobScheduler: Schedule updated successfully for job: 'updateJob`
)
).to.be.true;
});
it('should create a new job if none exists', async () => {
const jobId = 'mockNewJobId';
const scheduleId = 'mockNewScheduleId';
// Simulating that no job was found initially
getJobByNameStub.resolves(null);
createJobStub.resolves({
_id: jobId,
schedules: [{ scheduleId }]
});
const newJob = {
_id: jobId,
schedules: [{ scheduleId }]
};
const result = await jobScheduler.startJob('noExistingJob', {}, 'anAction');
// Assert that createJob was called once
expect(createJobStub.calledOnce).to.be.true;
// Assert that correct jobId and scheduleId are returned
expect(result).to.deep.equal(jobId);
// Verify that the correct log message was produced
expect(
stubConsoleLog.calledOnceWithExactly(
`JobScheduler: New job created successfully: ${newJob}`
)
).to.be.true;
});
});
describe('JobScheduler Class - getJobByName Method', () => {
let jobScheduler;
let fetchJobStub;
let consoleErrorStub;
beforeEach(async () => {
// Stub to simulate service credentials with a URL
sinon.stub(serviceCredentials, 'getServiceCredentials').returns({
url: 'http://example.com'
});
sinon.stub(serviceCredentials, 'getServiceToken').resolves('mockToken');
// Create instance of JobScheduler for testing
jobScheduler = await JobScheduler.create({}, 'mockConsumerID');
// Stub jobSchedulerClient.fetchJob method
fetchJobStub = sinon.stub(jobScheduler.jobSchedulerClient, 'fetchJob');
// Stub console.log and console.error to verify logging
sinon.stub(console, 'log');
consoleErrorStub = sinon.stub(console, 'error');
});
afterEach(() => {
// Restore all the stubs back to their original methods
sinon.restore();
});
it('should fetch job successfully and log the result', async () => {
const jobName = 'mockJobName';
const jobResult = { message: 'Success!', _id: 'mockJobID' };
// Simulate successful job fetching
fetchJobStub.callsArgWith(1, null, jobResult);
const result = await jobScheduler.getJobByName(jobName);
// Assert that fetchJob was called
expect(fetchJobStub.calledOnce).to.be.true;
// Verify the correct job result and log message were produced
expect(result).to.deep.equal(jobResult);
expect(result).to.equal(jobResult);
});
it('should log an error if fetching job fails', async () => {
const jobName = 'mockJobName';
const errorMsg = 'Fetch Error';
// Simulate an error during job fetching
fetchJobStub.callsArgWith(1, new Error(errorMsg));
await expect(jobScheduler.getJobByName(jobName)).to.rejected;
expect(fetchJobStub.calledOnce).to.be.true;
// Verify the correct error message was logged
expect(
consoleErrorStub.calledOnceWithExactly(
`JobScheduler: Error retrieving jobs: Fetch Error`
)
).to.be.true;
});
});
describe('JobScheduler Class - getJobSchedule Method', () => {
let jobScheduler;
let fetchJobSchedulesStub;
let consoleErrorStub;
beforeEach(async () => {
// Stub to simulate service credentials with a URL
sinon.stub(serviceCredentials, 'getServiceCredentials').returns({
url: 'http://example.com'
});
sinon.stub(serviceCredentials, 'getServiceToken').resolves('mockToken');
// Create an instance of JobScheduler for testing
jobScheduler = await JobScheduler.create({}, 'mockConsumerID');
// Stub jobSchedulerClient.fetchJobSchedules method
fetchJobSchedulesStub = sinon.stub(
jobScheduler.jobSchedulerClient,
'fetchJobSchedules'
);
// Stub console.log and console.error to verify logging
sinon.stub(console, 'log');
consoleErrorStub = sinon.stub(console, 'error');
});
afterEach(() => {
// Restore all the stubs back to their original methods
sinon.restore();
});
it('should retrieve schedule successfully with poetrySlamID', async () => {
const jobID = 'mockJobID';
const poetrySlamID = 'mockPoetrySlamID';
const mockSchedule = {
description: 'mockDescription',
data: JSON.stringify({ poetrySlamID })
};
// Simulate successful schedule retrieval
fetchJobSchedulesStub.callsArgWith(1, null, { results: [mockSchedule] });
const result = await jobScheduler.getJobSchedule(jobID, poetrySlamID);
// Assert that fetchJobSchedules was called correctly
expect(fetchJobSchedulesStub.calledOnce).to.be.true;
// Verify the correct schedule is retrieved
expect(result).to.deep.equal(mockSchedule);
});
it('should retrieve schedule successfully with description "Immediately"', async () => {
const jobID = 'mockJobID';
const mockSchedule = {
description: 'Immediately',
data: JSON.stringify({ poetrySlamID: 'mockDifferentID' })
};
// Simulate successful schedule retrieval
fetchJobSchedulesStub.callsArgWith(1, null, { results: [mockSchedule] });
const result = await jobScheduler.getJobSchedule(jobID);
// Assert that fetchJobSchedules was called correctly
expect(fetchJobSchedulesStub.calledOnce).to.be.true;
// Verify the correct schedule is retrieved
expect(result).to.deep.equal(mockSchedule);
});
it('should log an error if JSON parsing fails', async () => {
const jobID = 'mockJobID';
const malformedSchedule = {
description: 'mockDescription',
data: 'not-json'
};
// Simulate schedule retrieval with malformed JSON
fetchJobSchedulesStub.callsArgWith(1, null, {
results: [malformedSchedule]
});
const result = await jobScheduler.getJobSchedule(jobID, 'mockPoetrySlamID');
// Assert that fetchJobSchedules was called correctly
expect(fetchJobSchedulesStub.calledOnce).to.be.true;
// Verify no schedule is returned due to JSON parsing failure
expect(result).to.be.undefined;
// Verify the error message for JSON parsing
expect(consoleErrorStub.calledWithMatch(/Error parsing schedule data JSON/))
.to.be.true;
});
it('should log an error if fetching schedules fails', async () => {
const jobID = 'mockJobID';
const errorMsg = 'Fetch Error';
// Simulate an error during schedule fetching
fetchJobSchedulesStub.callsArgWith(1, new Error(errorMsg));
await expect(jobScheduler.getJobSchedule(jobID, 'mockPoetrySlamID')).to
.rejected;
expect(fetchJobSchedulesStub.calledOnce).to.be.true;
// Verify the correct error message was logged
expect(
consoleErrorStub.calledOnceWithExactly(
`JobScheduler: Error retrieving all schedules: ${errorMsg}`
)
).to.be.true;
});
});
describe('JobScheduler Class - updateJobSchedule Method', () => {
let jobScheduler;
let updateJobScheduleStub;
let consoleErrorStub;
beforeEach(async () => {
// Stub to simulate service credentials with a URL
sinon.stub(serviceCredentials, 'getServiceCredentials').returns({
url: 'http://example.com'
});
sinon.stub(serviceCredentials, 'getServiceToken').resolves('mockToken');
// Create instance of JobScheduler for testing
jobScheduler = await JobScheduler.create({}, 'mockConsumerID');
// Stub jobSchedulerClient.updateJobSchedule method
updateJobScheduleStub = sinon.stub(
jobScheduler.jobSchedulerClient,
'updateJobSchedule'
);
// Stub console.log and console.error to verify logging
sinon.stub(console, 'log');
consoleErrorStub = sinon.stub(console, 'error');
});
afterEach(() => {
// Restore all the stubs back to their original methods
sinon.restore();
});
it('should update the job schedule successfully and return the result', async () => {
const jobID = 'mockJobID';
const scheduleID = 'mockScheduleID';
const scheduleData = { data: 'updateData' };
const updateResult = { success: true };
// Simulate successful schedule update
updateJobScheduleStub.callsArgWith(1, null, updateResult);
const result = await jobScheduler.updateJobSchedule(
jobID,
scheduleID,
scheduleData
);
// Assert that updateJobSchedule was called with correct arguments
expect(updateJobScheduleStub.calledOnce).to.be.true;
// Verify the correct result is returned
expect(result).to.deep.equal(updateResult);
});
it('should log an error if schedule update fails', async () => {
const jobID = 'mockJobID';
const scheduleID = 'mockScheduleID';
const scheduleData = { data: 'updateData' };
const errorMsg = 'Update Error';
// Simulate an error during schedule update
updateJobScheduleStub.callsArgWith(1, new Error(errorMsg));
await expect(
jobScheduler.updateJobSchedule(jobID, scheduleID, scheduleData)
).to.rejected;
expect(updateJobScheduleStub.calledOnce).to.be.true;
// Verify the correct error message was logged
expect(
consoleErrorStub.calledOnceWithExactly(
`JobScheduler: Error updating job schedule: ${errorMsg}`
)
).to.be.true;
});
});
describe('JobScheduler Class - createJobSchedule Method', () => {
let jobScheduler;
let createJobScheduleStub;
let consoleErrorStub;
beforeEach(async () => {
// Stub to simulate service credentials with a URL
sinon.stub(serviceCredentials, 'getServiceCredentials').returns({
url: 'http://example.com'
});
sinon.stub(serviceCredentials, 'getServiceToken').resolves('mockToken');
// Create instance of JobScheduler for testing
jobScheduler = await JobScheduler.create({}, 'mockConsumerID');
// Stub jobSchedulerClient.createJobSchedule method
createJobScheduleStub = sinon.stub(
jobScheduler.jobSchedulerClient,
'createJobSchedule'
);
// Stub console.log and console.error to verify logging
sinon.stub(console, 'log'); // For completeness if needed later
consoleErrorStub = sinon.stub(console, 'error');
});
afterEach(() => {
// Restore all the stubs back to their original methods
sinon.restore();
});
it('should successfully create a job schedule and return the result', async () => {
const jobID = 'mockJobID';
const scheduleData = { data: 'scheduleData' };
const createResult = { success: true };
// Simulate successful schedule creation
createJobScheduleStub.callsArgWith(1, null, createResult);
const result = await jobScheduler.createJobSchedule(jobID, scheduleData);
// Assert that createJobSchedule was called with correct arguments
expect(createJobScheduleStub.calledOnce).to.be.true;
// Verify the correct result is returned
expect(result).to.deep.equal(createResult);
});
it('should log an error if job schedule creation fails', async () => {
const jobID = 'mockJobID';
const scheduleData = { data: 'scheduleData' };
const errorMsg = 'Creation Error';
// Simulate an error during schedule creation
createJobScheduleStub.callsArgWith(1, new Error(errorMsg));
await expect(jobScheduler.createJobSchedule(jobID, scheduleData)).to
.rejected;
expect(createJobScheduleStub.calledOnce).to.be.true;
// Verify the correct error message was logged
expect(
consoleErrorStub.calledOnceWithExactly(
`JobScheduler: Error creating job schedule: ${errorMsg}`
)
).to.be.true;
});
});
describe('JobScheduler Class - getJobSchedule Method', () => {
let jobScheduler;
let fetchJobSchedulesStub;
let consoleErrorStub;
beforeEach(async () => {
// Stub to simulate service credentials with a URL
sinon.stub(serviceCredentials, 'getServiceCredentials').returns({
url: 'http://example.com'
});
sinon.stub(serviceCredentials, 'getServiceToken').resolves('mockToken');
// Create instance of JobScheduler for testing
jobScheduler = await JobScheduler.create({}, 'mockConsumerID');
// Stub jobSchedulerClient.fetchJobSchedules method
fetchJobSchedulesStub = sinon.stub(
jobScheduler.jobSchedulerClient,
'fetchJobSchedules'
);
// Stub console.log and console.error to verify logging
sinon.stub(console, 'log');
consoleErrorStub = sinon.stub(console, 'error');
});
afterEach(() => {
// Restore all the stubs back to their original methods
sinon.restore();
});
it('should retrieve the schedule successfully based on schedule description', async () => {
const jobID = 'mockJobID';
const mockSchedule = {
description: 'Immediately',
data: JSON.stringify({ poetrySlamID: 'mockDifferentID' })
};
// Simulate successful schedule retrieval with description
fetchJobSchedulesStub.callsArgWith(1, null, { results: [mockSchedule] });
const result = await jobScheduler.getJobSchedule(jobID);
// Assert that fetchJobSchedules received the correct arguments
expect(fetchJobSchedulesStub.calledOnce).to.be.true;
// Verify that the correct schedule is chosen and returned
expect(result).to.deep.equal(mockSchedule);
});
it('should retrieve the schedule successfully based on poetrySlamID', async () => {
const jobID = 'mockJobID';
const poetrySlamID = 'mockPoetrySlamID';
const mockSchedule = {
description: 'mockDescription',
data: JSON.stringify({ poetrySlamID })
};
// Simulate successful schedule retrieval with poetrySlamID
fetchJobSchedulesStub.callsArgWith(1, null, { results: [mockSchedule] });
const result = await jobScheduler.getJobSchedule(jobID, poetrySlamID);
// Assert that fetchJobSchedules was called
expect(fetchJobSchedulesStub.calledOnce).to.be.true;
// Verify that the correct schedule is identified and returned
expect(result).to.deep.equal(mockSchedule);
});
it('should log an error if JSON parsing fails during schedule retrieval', async () => {
const jobID = 'mockJobID';
const malformedSchedule = {
description: 'mockDescription',
data: 'not-json'
};
// Simulate schedule retrieval leading to JSON parsing error
fetchJobSchedulesStub.callsArgWith(1, null, {
results: [malformedSchedule]
});
const result = await jobScheduler.getJobSchedule(jobID, 'mockPoetrySlamID');
// Assert that fetchJobSchedules processed the right arguments
expect(fetchJobSchedulesStub.calledOnce).to.be.true;
// Verify parsing error results in undefined output
expect(result).to.be.undefined;
// Confirm JSON parsing error log occurrence
expect(consoleErrorStub.calledWithMatch(/Error parsing schedule data JSON/))
.to.be.true;
});
it('should log an error if fetching schedules fails', async () => {
const jobID = 'mockJobID';
const errorMsg = 'Fetch Error';
// Simulate error during schedule fetching
fetchJobSchedulesStub.callsArgWith(1, new Error(errorMsg));
try {
await jobScheduler.getJobSchedule(jobID, 'mockPoetrySlamID');
} catch (error) {
// Assert correct error handling and logging
expect(fetchJobSchedulesStub.calledOnce).to.be.true;
expect(error.message).to.equal(errorMsg);
expect(
consoleErrorStub.calledOnceWithExactly(
`JobScheduler: Error retrieving all schedules: ${errorMsg}`
)
).to.be.true;
}
});
});
describe('JobScheduler Class - updateSchedulerRunLog Method', () => {
let jobScheduler;
let updateJobRunLogStub;
let consoleErrorStub;
beforeEach(async () => {
// Stub to simulate service credentials with a URL
sinon.stub(serviceCredentials, 'getServiceCredentials').returns({
url: 'http://example.com'
});
sinon.stub(serviceCredentials, 'getServiceToken').resolves('mockToken');
// Create instance of JobScheduler for testing
jobScheduler = await JobScheduler.create({}, 'mockConsumerID');
// Stub jobSchedulerClient.updateJobRunLog method
updateJobRunLogStub = sinon.stub(
jobScheduler.jobSchedulerClient,
'updateJobRunLog'
);
// Stub console.log and console.error to verify logging
sinon.stub(console, 'log'); // For success messages
consoleErrorStub = sinon.stub(console, 'error');
});
afterEach(() => {
// Restore all the stubs back to their original methods
sinon.restore();
});
it('should successfully update a run log and return the result', async () => {
const jobID = 'mockJobID';
const scheduleID = 'mockScheduleID';
const runID = 'mockRunID';
const data = { key: 'mockValue' };
const updateResult = { success: true };
// Simulate successful run log update
updateJobRunLogStub.callsArgWith(1, null, updateResult);
const result = await jobScheduler.updateSchedulerRunLog(
jobID,
scheduleID,
runID,
data
);
// Assert that updateJobRunLog was called
expect(updateJobRunLogStub.calledOnce).to.be.true;
// Verify the correct result is returned
expect(result).to.deep.equal(updateResult);
});
it('should log an error if run log update fails', async () => {
const jobID = 'mockJobID';
const scheduleID = 'mockScheduleID';
const runID = 'mockRunID';
const data = { key: 'mockValue' };
const errorMsg = 'Update Error';
// Simulate an error during run log update
updateJobRunLogStub.callsArgWith(1, new Error(errorMsg));
await expect(
jobScheduler.updateSchedulerRunLog(jobID, scheduleID, runID, data)
).to.rejected;
expect(updateJobRunLogStub.calledOnce).to.be.true;
// Verify the correct error message was logged
expect(
consoleErrorStub.calledOnceWithExactly(
`JobScheduler: Error updating run log: ${errorMsg}`
)
).to.be.true;
});
});
describe('JobScheduler Class - createJob Method', () => {
let jobScheduler;
let createJobStub;
let consoleErrorStub;
beforeEach(async () => {
// Stub to simulate service credentials with a URL
sinon.stub(serviceCredentials, 'getServiceCredentials').returns({
url: 'http://example.com'
});
sinon.stub(serviceCredentials, 'getServiceToken').resolves('mockToken');
// Create instance of JobScheduler for testing
jobScheduler = await JobScheduler.create({}, 'mockConsumerID');
// Stub jobSchedulerClient.createJob method
createJobStub = sinon.stub(jobScheduler.jobSchedulerClient, 'createJob');
// Stub serviceCredentialsUtil.getAppUrl to return a fixed URL
sinon.stub(serviceCredentials, 'getAppUrl').returns('http://example.com');
// Stub console.log and console.error to verify logging
sinon.stub(console, 'log'); // Typically used for success messages
consoleErrorStub = sinon.stub(console, 'error');
});
afterEach(() => {
// Restore all the stubs back to their original methods
sinon.restore();
});
it('should successfully create a job and return the result', async () => {
const jobName = 'mockJobName';
const scheduleData = { frequency: 'Daily' };
const actionName = 'sendReminder';
const createResult = { success: true };
// Simulate successful job creation
createJobStub.callsArgWith(1, null, createResult);
const result = await jobScheduler.createJob(
jobName,
scheduleData,
actionName
);
// Assert that createJob was called
expect(createJobStub.calledOnce).to.be.true;
// Verify that the correct result is returned
expect(result).to.deep.equal(createResult);
});
it('should log an error if job creation fails', async () => {
const jobName = 'mockJobName';
const scheduleData = { frequency: 'Daily' };
const actionName = 'sendReminder';
const errorMsg = 'Creation Error';
// Simulate an error during job creation
createJobStub.callsArgWith(1, new Error(errorMsg));
await expect(jobScheduler.createJob(jobName, scheduleData, actionName)).to
.rejected;
expect(createJobStub.calledOnce).to.be.true;
// Verify the correct error message was logged
expect(
consoleErrorStub.calledOnceWithExactly(
`JobScheduler: Error registering new job: ${errorMsg}`
)
).to.be.true;
});
});