add tests for various failure types

This commit is contained in:
2016-06-28 18:03:15 -07:00
parent 257645f11c
commit eba6748ba9

View File

@@ -500,69 +500,127 @@ describe('Worker class', function () {
}); });
}); });
it('should call the workerFn with the payload', function (done) { describe('worker success', function () {
const workerFn = function (jobPayload) { it('should call the workerFn with the payload', function (done) {
expect(jobPayload).to.eql(payload); const workerFn = function (jobPayload) {
}; expect(jobPayload).to.eql(payload);
const worker = new Worker(mockQueue, 'test', workerFn); };
const worker = new Worker(mockQueue, 'test', workerFn);
worker._performJob(job) worker._performJob(job)
.then(() => done()); .then(() => done());
});
it('should update the job with the workerFn output', function () {
const workerFn = function (jobPayload) {
expect(jobPayload).to.eql(payload);
return payload;
};
const worker = new Worker(mockQueue, 'test', workerFn);
return worker._performJob(job)
.then(() => {
sinon.assert.calledOnce(updateSpy);
const query = updateSpy.firstCall.args[0];
expect(query).to.have.property('index', job._index);
expect(query).to.have.property('type', job._type);
expect(query).to.have.property('id', job._id);
expect(query).to.have.property('version', job._version);
expect(query.body.doc).to.have.property('output');
expect(query.body.doc.output).to.have.property('content_type', false);
expect(query.body.doc.output).to.have.property('content', payload);
}); });
});
it('should update the job status and completed time', function () { it('should update the job with the workerFn output', function () {
const startTime = moment().valueOf(); const workerFn = function (jobPayload) {
const workerFn = function (jobPayload) { expect(jobPayload).to.eql(payload);
expect(jobPayload).to.eql(payload); return payload;
return new Promise(function (resolve) { };
setTimeout(() => resolve(payload), 10); const worker = new Worker(mockQueue, 'test', workerFn);
return worker._performJob(job)
.then(() => {
sinon.assert.calledOnce(updateSpy);
const query = updateSpy.firstCall.args[0];
expect(query).to.have.property('index', job._index);
expect(query).to.have.property('type', job._type);
expect(query).to.have.property('id', job._id);
expect(query).to.have.property('version', job._version);
expect(query.body.doc).to.have.property('output');
expect(query.body.doc.output).to.have.property('content_type', false);
expect(query.body.doc.output).to.have.property('content', payload);
}); });
}; });
const worker = new Worker(mockQueue, 'test', workerFn);
worker._performJob(job) it('should update the job status and completed time', function () {
.then(() => { const startTime = moment().valueOf();
sinon.assert.calledOnce(updateSpy); const workerFn = function (jobPayload) {
const doc = updateSpy.firstCall.args[0].body.doc; expect(jobPayload).to.eql(payload);
expect(doc).to.have.property('status', constants.JOB_STATUS_COMPLETED); return new Promise(function (resolve) {
expect(doc).to.have.property('completed_at'); setTimeout(() => resolve(payload), 10);
const completedTimestamp = moment(doc.completed_at).valueOf(); });
expect(completedTimestamp).to.be.greaterThan(startTime); };
const worker = new Worker(mockQueue, 'test', workerFn);
worker._performJob(job)
.then(() => {
sinon.assert.calledOnce(updateSpy);
const doc = updateSpy.firstCall.args[0].body.doc;
expect(doc).to.have.property('status', constants.JOB_STATUS_COMPLETED);
expect(doc).to.have.property('completed_at');
const completedTimestamp = moment(doc.completed_at).valueOf();
expect(completedTimestamp).to.be.greaterThan(startTime);
});
}); });
}); });
it('should append error output to job', function () { describe('worker failure', function () {
const workerFn = function () { it('should append error output to job', function () {
throw new Error('test error'); const workerFn = function () {
}; throw new Error('test error');
const worker = new Worker(mockQueue, 'test', workerFn); };
const failStub = sinon.stub(worker, '_failJob'); const worker = new Worker(mockQueue, 'test', workerFn);
const failStub = sinon.stub(worker, '_failJob');
return worker._performJob(job) return worker._performJob(job)
.then(() => { .then(() => {
sinon.assert.calledOnce(failStub); sinon.assert.calledOnce(failStub);
sinon.assert.calledWith(failStub, job, 'Error: test error'); sinon.assert.calledWith(failStub, job, 'Error: test error');
});
});
it('should handle async errors', function () {
const workerFn = function () {
return new Promise((resolve, reject) => {
reject(new Error('test error'));
});
};
const worker = new Worker(mockQueue, 'test', workerFn);
const failStub = sinon.stub(worker, '_failJob');
return worker._performJob(job)
.then(() => {
sinon.assert.calledOnce(failStub);
sinon.assert.calledWith(failStub, job, 'Error: test error');
});
});
it('should handle rejecting with strings', function () {
const errorMessage = 'this is a string error';
const workerFn = function () {
return new Promise((resolve, reject) => {
reject(errorMessage);
});
};
const worker = new Worker(mockQueue, 'test', workerFn);
const failStub = sinon.stub(worker, '_failJob');
return worker._performJob(job)
.then(() => {
sinon.assert.calledOnce(failStub);
sinon.assert.calledWith(failStub, job, errorMessage);
});
});
it('should handle empty rejection', function (done) {
const workerFn = function () {
return new Promise((resolve, reject) => {
reject();
});
};
const worker = new Worker(mockQueue, 'test', workerFn);
const failStub = sinon.stub(worker, '_failJob');
worker.once('job_error', (err) => {
try {
expect(err).to.have.property('type', 'UnspecifiedWorkerError');
done();
} catch (e) {
done(e);
}
});
worker._performJob(job);
}); });
}); });
}); });