Skip to content

Commit

Permalink
[es/healthcheck] ensure that healthcheck stops when server is stopped (
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger authored Aug 8, 2017
1 parent b5e13ff commit 9245488
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 2 deletions.
32 changes: 30 additions & 2 deletions src/core_plugins/elasticsearch/lib/__tests__/health_check.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,13 @@ describe('plugins/elasticsearch', () => {
let health;
let plugin;
let cluster;
let server;
const sandbox = sinon.sandbox.create();

function getTimerCount() {
return Object.keys(sandbox.clock.timers || {}).length;
}

beforeEach(() => {
const COMPATIBLE_VERSION_NUMBER = '5.0.0';

Expand Down Expand Up @@ -66,7 +71,7 @@ describe('plugins/elasticsearch', () => {
const set = sinon.stub();

// Setup the server mock
const server = {
server = {
log: sinon.stub(),
info: { port: 5601 },
config: function () { return { get, set }; },
Expand All @@ -77,14 +82,37 @@ describe('plugins/elasticsearch', () => {
},
getKibanaIndexMappingsDsl() {
return mappings;
}
},
ext: sinon.stub()
};

health = healthCheck(plugin, server);
});

afterEach(() => sandbox.restore());

it('should stop when cluster is shutdown', () => {
sandbox.useFakeTimers();

// ensure that health.start() is responsible for the timer we are observing
expect(getTimerCount()).to.be(0);
health.start();
expect(getTimerCount()).to.be(1);

// ensure that a server extension was registered
sinon.assert.calledOnce(server.ext);
sinon.assert.calledWithExactly(server.ext, sinon.match.string, sinon.match.func);

// call the server extension
const reply = sinon.stub();
const [,handler] = server.ext.firstCall.args;
handler({}, reply);

// ensure that the handler called reply and unregistered the time
sinon.assert.calledOnce(reply);
expect(getTimerCount()).to.be(0);
});

it('should set the cluster green if everything is ready', function () {
cluster.callWithInternalUser.withArgs('ping').returns(Promise.resolve());
cluster.callWithInternalUser.withArgs('cluster.health', sinon.match.any).returns(
Expand Down
5 changes: 5 additions & 0 deletions src/core_plugins/elasticsearch/lib/health_check.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,11 @@ export default function (plugin, server) {
return true;
}

server.ext('onPreStop', (request, reply) => {
stopChecking();
reply();
});

return {
waitUntilReady: waitUntilReady,
run: check,
Expand Down

0 comments on commit 9245488

Please sign in to comment.