queue should track and tear down workers, with tests

This commit is contained in:
2016-04-25 16:36:21 -07:00
parent 482ea68692
commit eb033d9676
2 changed files with 23 additions and 4 deletions

View File

@@ -19,6 +19,7 @@ export default class Elastique extends events.EventEmitter {
timeout: 10000,
}, omit(options, [ 'client' ]));
this.client = createClient(options.client || {});
this.workers = [];
this._initTasks().catch((err) => this.emit('error', err));
}
@@ -42,12 +43,16 @@ export default class Elastique extends events.EventEmitter {
timeout: this.settings.timeout
}, opts);
const job = new Job(this.client, index, type, payload, options);
return job;
return new Job(this.client, index, type, payload, options);
}
registerWorker(type, workerFn) {
const worker = new Worker(this, type, workerFn);
registerWorker(type, workerFn, opts) {
const worker = new Worker(this, type, workerFn, opts);
this.workers.push(worker);
return worker;
}
destroy() {
this.workers.forEach((worker) => worker.destroy());
}
}

View File

@@ -1,6 +1,7 @@
import events from 'events';
import expect from 'expect.js';
import sinon from 'sinon';
import { noop } from 'lodash';
import elasticsearchMock from '../fixtures/elasticsearch';
import Elastique from '../../lib/index';
@@ -47,4 +48,17 @@ describe('Elastique class', function () {
});
});
describe('Registering workers', function () {
it('should keep track of workers', function () {
const queue = new Elastique('elastique', { client });
expect(queue.workers).to.eql([]);
expect(queue.workers).to.have.length(0);
queue.registerWorker('test', noop);
queue.registerWorker('test', noop);
queue.registerWorker('test2', noop);
expect(queue.workers).to.have.length(3);
});
});
});