Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[es/healthcheck] ensure that healthcheck stops when server is stopped #13201

Merged
merged 2 commits into from
Aug 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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