Skip to content

Commit ce1b22e

Browse files
authored
test(repeatable): add case when promoting a repeatable job (#2768) ref #2744
1 parent 44a2d62 commit ce1b22e

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

tests/test_job.ts

+31
Original file line numberDiff line numberDiff line change
@@ -1362,6 +1362,37 @@ describe('Job', function () {
13621362
);
13631363
});
13641364

1365+
describe('when a repeatable job is promoted', () => {
1366+
it('add next delayed job after promoted job completion', async () => {
1367+
const job = await queue.add(
1368+
'test',
1369+
{ foo: 'bar' },
1370+
{ repeat: {
1371+
pattern: '0 0 7 * * *'
1372+
}, },
1373+
);
1374+
const isDelayed = await job.isDelayed();
1375+
expect(isDelayed).to.be.equal(true);
1376+
await job.promote();
1377+
expect(job.delay).to.be.equal(0);
1378+
1379+
const worker = new Worker(queueName, null, { connection, prefix });
1380+
1381+
const currentJob1 = (await worker.getNextJob('token')) as Job;
1382+
expect(currentJob1).to.not.be.undefined;
1383+
1384+
await currentJob1.moveToCompleted('succeeded', 'token', true);
1385+
1386+
const delayedCount = await queue.getDelayedCount();
1387+
expect(delayedCount).to.be.equal(1);
1388+
1389+
const isDelayedAfterPromote = await job.isDelayed();
1390+
expect(isDelayedAfterPromote).to.be.equal(false);
1391+
const isCompleted = await job.isCompleted();
1392+
expect(isCompleted).to.be.equal(true);
1393+
});
1394+
});
1395+
13651396
describe('when queue is paused', () => {
13661397
it('should promote delayed job to the right queue', async () => {
13671398
await queue.add('normal', { foo: 'bar' });

0 commit comments

Comments
 (0)