Remove query tables api dependency from health check

remotes/origin/bin-rhel65
Raul Ochoa 10 years ago
parent aad2a1e098
commit 3f1aa9955b

@ -666,7 +666,7 @@ var CartodbWindshaft = function(serverOptions) {
// ---- Template maps interface ends @}
var healthCheck = new HealthCheck(cartoData, serverOptions.queryTablesApi, Windshaft.tilelive);
var healthCheck = new HealthCheck(cartoData, Windshaft.tilelive);
ws.get('/health', function(req, res) {
var healthConfig = global.environment.health || {};

@ -4,9 +4,8 @@ var _ = require('underscore'),
path = require('path'),
Step = require('step');
function HealthCheck(metadataBackend, queryTablesApi, tilelive) {
function HealthCheck(metadataBackend, tilelive) {
this.metadataBackend = metadataBackend;
this.queryTablesApi = queryTablesApi;
this.tilelive = tilelive;
}

@ -71,8 +71,7 @@ module.exports = function(redisPool) {
varnish_secret: global.environment.varnish.secret,
cache_enabled: global.environment.cache_enabled,
log_format: global.environment.log_format,
useProfiler: global.environment.useProfiler,
queryTablesApi: queryTablesApi
useProfiler: global.environment.useProfiler
};
// Do not send unwatch on release

@ -5,72 +5,68 @@ var CartodbWindshaft = require(__dirname + '/../../lib/cartodb/cartodb_windshaft
var serverOptions = require(__dirname + '/../../lib/cartodb/server_options')();
var server = new CartodbWindshaft(serverOptions);
var SQLAPIEmu = require(__dirname + '/../support/SQLAPIEmu.js');
suite('health checks', function () {
beforeEach(function (done) {
global.environment.health = {
enabled: true,
username: 'localhost',
z: 0,
x: 0,
y: 0
};
done();
});
var healthCheckRequest = {
url: '/health',
method: 'GET',
headers: {
host: 'localhost'
}
suite('health checks', function () {
beforeEach(function (done) {
global.environment.health = {
enabled: true,
username: 'localhost',
z: 0,
x: 0,
y: 0
};
done();
});
var healthCheckRequest = {
url: '/health',
method: 'GET',
headers: {
host: 'localhost'
}
};
test('returns 200 and ok=true with enabled configuration', function (done) {
assert.response(server,
healthCheckRequest,
{
status: 200
},
function (res, err) {
console.log(res.body);
assert.ok(!err);
var parsed = JSON.parse(res.body);
assert.ok(parsed.enabled);
assert.ok(parsed.ok);
done();
}
);
});
test('returns 200 and ok=true with enabled configuration', function (done) {
assert.response(server,
healthCheckRequest,
{
status: 200
},
function (res, err) {
console.log(res.body);
assert.ok(!err);
var parsed = JSON.parse(res.body);
assert.ok(parsed.enabled);
assert.ok(parsed.ok);
done();
}
);
});
test('fails for invalid user because it is not in redis', function (done) {
global.environment.health.username = 'invalid';
assert.response(server,
healthCheckRequest,
{
status: 503
},
function (res, err) {
assert.ok(!err);
test('fails for invalid user because it is not in redis', function (done) {
global.environment.health.username = 'invalid';
var parsed = JSON.parse(res.body);
assert.response(server,
healthCheckRequest,
{
status: 503
},
function (res, err) {
assert.ok(!err);
assert.equal(parsed.enabled, true);
assert.equal(parsed.ok, false);
var parsed = JSON.parse(res.body);
assert.equal(parsed.result.redis.ok, false);
assert.equal(parsed.enabled, true);
assert.equal(parsed.ok, false);
done();
}
);
});
assert.equal(parsed.result.redis.ok, false);
done();
}
);
});
});

Loading…
Cancel
Save