2012-07-09 22:49:31 +08:00
|
|
|
var assert = require('../support/assert');
|
2011-09-05 07:00:41 +08:00
|
|
|
var tests = module.exports = {};
|
|
|
|
var _ = require('underscore');
|
2012-07-12 19:31:39 +08:00
|
|
|
var redis = require('redis');
|
2011-09-05 07:00:41 +08:00
|
|
|
var querystring = require('querystring');
|
2012-11-14 17:40:48 +08:00
|
|
|
var semver = require('semver');
|
|
|
|
var mapnik = require('mapnik');
|
2012-11-22 23:39:00 +08:00
|
|
|
var Step = require('step');
|
2013-03-13 17:36:28 +08:00
|
|
|
var http = require('http');
|
2013-03-14 01:41:37 +08:00
|
|
|
var SQLAPIEmu = require(__dirname + '/../support/SQLAPIEmu.js');
|
2012-11-14 17:40:48 +08:00
|
|
|
|
2013-04-24 21:10:58 +08:00
|
|
|
var helper = require(__dirname + '/../support/test_helper');
|
2011-09-05 07:00:41 +08:00
|
|
|
|
2011-10-13 19:17:00 +08:00
|
|
|
var CartodbWindshaft = require(__dirname + '/../../lib/cartodb/cartodb_windshaft');
|
2012-07-10 01:20:49 +08:00
|
|
|
var serverOptions = require(__dirname + '/../../lib/cartodb/server_options');
|
2011-10-13 19:17:00 +08:00
|
|
|
var server = new CartodbWindshaft(serverOptions);
|
2012-07-10 03:06:45 +08:00
|
|
|
server.setMaxListeners(0);
|
2011-09-05 07:00:41 +08:00
|
|
|
|
2013-03-23 01:55:59 +08:00
|
|
|
|
2012-07-09 22:49:31 +08:00
|
|
|
suite('server', function() {
|
2012-08-14 21:06:04 +08:00
|
|
|
|
2012-07-12 19:31:39 +08:00
|
|
|
var redis_client = redis.createClient(global.environment.redis.port);
|
2013-03-13 17:36:28 +08:00
|
|
|
var sqlapi_server;
|
2012-11-14 17:40:48 +08:00
|
|
|
|
|
|
|
var default_style = semver.satisfies(mapnik.versions.mapnik, '<2.1.0')
|
|
|
|
?
|
|
|
|
// 2.0.0 default
|
|
|
|
'#<%= table %>{marker-fill: #FF6600;marker-opacity: 1;marker-width: 8;marker-line-color: white;marker-line-width: 3;marker-line-opacity: 0.9;marker-placement: point;marker-type: ellipse;marker-allow-overlap: true;}'
|
|
|
|
:
|
|
|
|
// 2.1.0 default
|
|
|
|
'#<%= table %>[mapnik-geometry-type=1] {marker-fill: #FF6600;marker-opacity: 1;marker-width: 16;marker-line-color: white;marker-line-width: 3;marker-line-opacity: 0.9;marker-placement: point;marker-type: ellipse;marker-allow-overlap: true;}#<%= table %>[mapnik-geometry-type=2] {line-color:#FF6600; line-width:1; line-opacity: 0.7;}#<%= table %>[mapnik-geometry-type=3] {polygon-fill:#FF6600; polygon-opacity: 0.7; line-opacity:1; line-color: #FFFFFF;}';
|
|
|
|
|
2012-11-22 23:39:00 +08:00
|
|
|
// A couple of styles to use during testing
|
|
|
|
var test_style_black_200 = "#test_table{marker-fill:black;marker-line-color:red;marker-width:10}";
|
|
|
|
var test_style_black_210 = "#test_table{marker-fill:black;marker-line-color:red;marker-width:20}";
|
2012-07-12 19:31:39 +08:00
|
|
|
|
2013-03-13 17:36:28 +08:00
|
|
|
suiteSetup(function(done){
|
2013-03-14 01:41:37 +08:00
|
|
|
sqlapi_server = new SQLAPIEmu(global.environment.sqlapi.port, done);
|
2012-07-12 19:31:39 +08:00
|
|
|
});
|
|
|
|
|
2012-08-14 21:06:04 +08:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// GET UNSUPPORTED
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
2012-07-09 22:49:31 +08:00
|
|
|
|
2012-08-14 21:13:23 +08:00
|
|
|
// TODO: I guess this should be a 404 instead...
|
2012-07-09 22:49:31 +08:00
|
|
|
test("get call to server returns 200", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200
|
|
|
|
}, function() { done(); });
|
|
|
|
});
|
2012-08-14 21:06:04 +08:00
|
|
|
|
2012-10-08 23:26:12 +08:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// GET VERSION
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
test("get call to server returns 200", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/version',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200
|
|
|
|
}, function(res) {
|
|
|
|
var parsed = JSON.parse(res.body);
|
|
|
|
assert.ok(parsed.hasOwnProperty('windshaft_cartodb'), "No 'windshaft_cartodb' version in " + parsed);
|
|
|
|
console.log("Windshaft-cartodb: " + parsed.windshaft_cartodb);
|
|
|
|
assert.ok(parsed.hasOwnProperty('windshaft'), "No 'windshaft' version in " + parsed);
|
|
|
|
console.log("Windshaft: " + parsed.windshaft);
|
|
|
|
assert.ok(parsed.hasOwnProperty('grainstore'), "No 'grainstore' version in " + parsed);
|
|
|
|
console.log("Grainstore: " + parsed.grainstore);
|
|
|
|
assert.ok(parsed.hasOwnProperty('node_mapnik'), "No 'node_mapnik' version in " + parsed);
|
|
|
|
console.log("Node-mapnik: " + parsed.node_mapnik);
|
|
|
|
assert.ok(parsed.hasOwnProperty('mapnik'), "No 'mapnik' version in " + parsed);
|
|
|
|
console.log("Mapnik: " + parsed.mapnik);
|
|
|
|
// TODO: check actual versions ?
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-08-14 21:06:04 +08:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// GET STYLE
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
2012-07-09 22:49:31 +08:00
|
|
|
|
|
|
|
test("get'ing blank style returns default style", function(done){
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-07-09 22:49:31 +08:00
|
|
|
url: '/tiles/my_table/style',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
2012-09-25 00:57:48 +08:00
|
|
|
headers: { 'X-Cache-Channel': 'cartodb_test_user_1_db:my_table' },
|
2012-10-10 00:35:27 +08:00
|
|
|
}, function(res) {
|
|
|
|
var parsed = JSON.parse(res.body);
|
2012-11-14 17:40:48 +08:00
|
|
|
assert.equal(parsed.style, _.template(default_style, {table: 'my_table'}));
|
|
|
|
assert.equal(parsed.style_version, mapnik.versions.mapnik);
|
2012-10-10 00:35:27 +08:00
|
|
|
done();
|
|
|
|
});
|
2012-07-09 22:49:31 +08:00
|
|
|
});
|
2012-08-14 21:06:04 +08:00
|
|
|
|
2012-08-15 01:26:40 +08:00
|
|
|
// See https://github.com/Vizzuality/Windshaft-cartodb/issues/43
|
2012-08-14 21:32:36 +08:00
|
|
|
test("get'ing style of private table should fail when unauthenticated",
|
|
|
|
function(done) {
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-08-14 21:32:36 +08:00
|
|
|
url: '/tiles/test_table_private_1/style',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
}, function(res) {
|
2012-09-06 02:16:55 +08:00
|
|
|
// FIXME: should be 401 Unauthorized
|
2013-01-29 20:13:14 +08:00
|
|
|
assert.equal(res.statusCode, 400, res.body);
|
2012-09-25 16:18:47 +08:00
|
|
|
assert.deepEqual(JSON.parse(res.body),
|
|
|
|
{error: 'Sorry, you are unauthorized (permission denied)'});
|
2012-08-14 21:32:36 +08:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-10-22 21:30:16 +08:00
|
|
|
// See http://github.com/Vizzuality/Windshaft-cartodb/issues/55
|
|
|
|
test("get'ing style of private table should fail on unknown username",
|
|
|
|
function(done) {
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'unknown_user'},
|
|
|
|
url: '/tiles/test_table_private_1/style',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
}, function(res) {
|
|
|
|
// FIXME: should be 401 Unauthorized
|
2013-01-29 20:13:14 +08:00
|
|
|
assert.equal(res.statusCode, 400, res.statusCode + ': ' + res.body);
|
2012-10-22 21:30:16 +08:00
|
|
|
assert.deepEqual(JSON.parse(res.body),
|
|
|
|
{error:"missing unknown_user's dbname in redis (try CARTODB/script/restore_redis)"});
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-08-14 21:32:36 +08:00
|
|
|
test("get'ing style of private table should succeed when authenticated",
|
|
|
|
function(done) {
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-08-14 21:32:36 +08:00
|
|
|
url: '/tiles/test_table_private_1/style?map_key=1234',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
2012-10-10 00:35:27 +08:00
|
|
|
var parsed = JSON.parse(res.body);
|
2012-11-14 17:40:48 +08:00
|
|
|
var style = _.template(default_style, {table: 'test_table_private_1'});
|
|
|
|
assert.equal(parsed.style, style);
|
|
|
|
assert.equal(parsed.style_version, mapnik.versions.mapnik);
|
2012-08-14 21:32:36 +08:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-08-14 21:06:04 +08:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// POST STYLE
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
2012-07-09 22:49:31 +08:00
|
|
|
|
|
|
|
test("post'ing no style returns 400 with errors", function(done){
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-07-09 22:49:31 +08:00
|
|
|
url: '/tiles/my_table/style',
|
|
|
|
method: 'POST'
|
|
|
|
},{
|
|
|
|
status: 400,
|
|
|
|
body: '{"error":"must send style information"}'
|
|
|
|
}, function() { done(); });
|
|
|
|
});
|
|
|
|
|
|
|
|
test("post'ing bad style returns 400 with error", function(done){
|
|
|
|
assert.response(server, {
|
2012-08-14 22:15:41 +08:00
|
|
|
url: '/tiles/my_table3/style?map_key=1234',
|
2012-07-09 22:49:31 +08:00
|
|
|
method: 'POST',
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost', 'Content-Type': 'application/x-www-form-urlencoded' },
|
2012-07-09 22:49:31 +08:00
|
|
|
data: querystring.stringify({style: '#my_table3{backgxxxxxround-color:#fff;}'})
|
|
|
|
},{
|
2013-01-29 20:13:14 +08:00
|
|
|
status: 400,
|
2012-09-27 16:42:29 +08:00
|
|
|
body: /Unrecognized rule: backgxxxxxround-color/
|
2012-07-09 22:49:31 +08:00
|
|
|
}, function() { done(); });
|
|
|
|
});
|
2012-09-26 22:35:15 +08:00
|
|
|
|
|
|
|
test("post'ing unparseable style returns 400 with error", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/tiles/my_table3/style?map_key=1234',
|
|
|
|
method: 'POST',
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost', 'Content-Type': 'application/x-www-form-urlencoded' },
|
2012-09-26 22:35:15 +08:00
|
|
|
data: querystring.stringify({style: '#my_table3{'})
|
|
|
|
},{
|
2013-01-29 20:13:14 +08:00
|
|
|
status: 400,
|
2012-09-26 22:35:15 +08:00
|
|
|
body: /Missing closing/
|
|
|
|
}, function() { done(); });
|
|
|
|
});
|
2012-07-09 22:49:31 +08:00
|
|
|
|
|
|
|
test("post'ing multiple bad styles returns 400 with error array", function(done){
|
|
|
|
assert.response(server, {
|
2012-08-14 22:15:41 +08:00
|
|
|
url: '/tiles/my_table4/style?map_key=1234',
|
2012-07-09 22:49:31 +08:00
|
|
|
method: 'POST',
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost', 'Content-Type': 'application/x-www-form-urlencoded' },
|
2012-07-09 22:49:31 +08:00
|
|
|
data: querystring.stringify({style: '#my_table4{backgxxxxxround-color:#fff;foo:bar}'})
|
|
|
|
},{
|
2013-01-29 20:13:14 +08:00
|
|
|
status: 400,
|
2012-09-27 16:42:29 +08:00
|
|
|
}, function(res) {
|
|
|
|
var parsed = JSON.parse(res.body);
|
|
|
|
assert.equal(parsed.length, 2);
|
|
|
|
assert.ok( RegExp(/Unrecognized rule: backgxxxxxround-color/).test(parsed[0]) );
|
|
|
|
assert.ok( RegExp(/Unrecognized rule: foo/).test(parsed[1]) );
|
|
|
|
done();
|
|
|
|
});
|
2012-07-09 22:49:31 +08:00
|
|
|
});
|
2012-08-07 23:10:15 +08:00
|
|
|
|
2012-07-09 22:49:31 +08:00
|
|
|
test("post'ing good style returns 200", function(done){
|
|
|
|
assert.response(server, {
|
2012-08-07 23:10:15 +08:00
|
|
|
url: '/tiles/my_table5/style?map_key=1234',
|
2012-07-09 22:49:31 +08:00
|
|
|
method: 'POST',
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost', 'Content-Type': 'application/x-www-form-urlencoded' },
|
2012-11-15 23:01:34 +08:00
|
|
|
data: querystring.stringify({style: 'Map { background-color:#fff; }'})
|
2012-07-09 22:49:31 +08:00
|
|
|
},{
|
2012-07-10 03:06:45 +08:00
|
|
|
}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
done();
|
|
|
|
});
|
2012-07-09 22:49:31 +08:00
|
|
|
});
|
2012-10-05 22:16:48 +08:00
|
|
|
|
|
|
|
// See https://github.com/Vizzuality/Windshaft-cartodb/issues/38
|
|
|
|
test("post'ing good style with auth passed as api_key returns 200", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/tiles/my_table5/style?api_key=1234',
|
|
|
|
method: 'POST',
|
|
|
|
headers: {host: 'localhost', 'Content-Type': 'application/x-www-form-urlencoded' },
|
2012-11-15 23:01:34 +08:00
|
|
|
data: querystring.stringify({style: 'Map { background-color:#fff; }'})
|
2012-10-05 22:16:48 +08:00
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// See https://github.com/Vizzuality/cartodb-management/issues/155
|
2012-08-07 23:10:15 +08:00
|
|
|
test("post'ing good style with no authentication returns an error", function(done){
|
|
|
|
assert.response(server, {
|
2012-09-20 01:09:42 +08:00
|
|
|
url: '/tiles/my_table5/style?map_key=1234',
|
2012-08-07 23:10:15 +08:00
|
|
|
method: 'POST',
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost', 'Content-Type': 'application/x-www-form-urlencoded' },
|
2012-11-15 23:01:34 +08:00
|
|
|
data: querystring.stringify({style: 'Map { background-color:#fff; }'})
|
2012-09-20 01:09:42 +08:00
|
|
|
},{
|
|
|
|
}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
2012-08-14 22:15:41 +08:00
|
|
|
assert.response(server, {
|
|
|
|
url: '/tiles/my_table5/style',
|
2012-09-20 01:09:42 +08:00
|
|
|
method: 'POST',
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost', 'Content-Type': 'application/x-www-form-urlencoded' },
|
2012-11-15 23:01:34 +08:00
|
|
|
data: querystring.stringify({style: 'Map { background-color:#aaa; }'})
|
2012-09-20 01:09:42 +08:00
|
|
|
},{}, function(res) {
|
|
|
|
// FIXME: should be 401 Unauthorized
|
2013-01-29 20:13:14 +08:00
|
|
|
assert.equal(res.statusCode, 400, res.statusCode + ': ' + res.body);
|
2012-09-20 01:09:42 +08:00
|
|
|
assert.ok(res.body.indexOf('map state cannot be changed by unauthenticated request') != -1, res.body);
|
|
|
|
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-09-20 01:09:42 +08:00
|
|
|
url: '/tiles/my_table5/style',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
2012-10-08 22:41:16 +08:00
|
|
|
}, function(res) {
|
|
|
|
var parsed = JSON.parse(res.body);
|
2012-11-15 23:01:34 +08:00
|
|
|
assert.equal(parsed.style, 'Map { background-color:#fff; }');
|
2012-11-06 19:31:17 +08:00
|
|
|
assert.equal(parsed.style_version, '2.0.0');
|
2012-10-08 22:41:16 +08:00
|
|
|
done();
|
|
|
|
});
|
2012-08-14 22:15:41 +08:00
|
|
|
|
2012-09-20 01:09:42 +08:00
|
|
|
});
|
2012-08-07 23:10:15 +08:00
|
|
|
});
|
|
|
|
});
|
2012-07-10 03:06:45 +08:00
|
|
|
|
2012-07-09 22:49:31 +08:00
|
|
|
test("post'ing good style returns 200 then getting returns original style", function(done){
|
2012-11-15 23:01:34 +08:00
|
|
|
var style = 'Map { background-color:#fff; }';
|
2012-07-09 22:49:31 +08:00
|
|
|
assert.response(server, {
|
2012-08-07 23:10:15 +08:00
|
|
|
url: '/tiles/my_table5/style?map_key=1234',
|
2012-07-09 22:49:31 +08:00
|
|
|
method: 'POST',
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost', 'Content-Type': 'application/x-www-form-urlencoded' },
|
2012-11-06 19:31:17 +08:00
|
|
|
data: querystring.stringify({style: style, style_version: '2.0.2'})
|
2012-11-14 22:28:58 +08:00
|
|
|
},{}, function(res) {
|
2012-07-10 03:06:45 +08:00
|
|
|
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
2012-07-09 22:49:31 +08:00
|
|
|
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-07-09 22:49:31 +08:00
|
|
|
url: '/tiles/my_table5/style',
|
|
|
|
method: 'GET'
|
2012-11-14 22:28:58 +08:00
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
2012-10-08 22:41:16 +08:00
|
|
|
var parsed = JSON.parse(res.body);
|
|
|
|
assert.equal(parsed.style, style);
|
2012-11-06 19:31:17 +08:00
|
|
|
assert.equal(parsed.style_version, '2.0.2');
|
2012-11-14 22:28:58 +08:00
|
|
|
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/my_table5/style?style_convert=true',
|
|
|
|
method: 'GET'
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
var parsed = JSON.parse(res.body);
|
|
|
|
assert.equal(parsed.style, style);
|
|
|
|
assert.equal(parsed.style_version, mapnik.versions.mapnik);
|
|
|
|
done();
|
|
|
|
});
|
2012-10-08 22:41:16 +08:00
|
|
|
});
|
2012-07-09 22:49:31 +08:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
2012-08-07 20:02:42 +08:00
|
|
|
|
2012-11-14 22:28:58 +08:00
|
|
|
test("post'ing good style with style_convert returns 200 then getting returns converted style", function(done){
|
2012-11-15 23:01:34 +08:00
|
|
|
var style = 'Map { background-color:#fff; }';
|
2012-11-14 22:28:58 +08:00
|
|
|
assert.response(server, {
|
|
|
|
url: '/tiles/my_table5/style?map_key=1234',
|
|
|
|
method: 'POST',
|
|
|
|
headers: {host: 'localhost', 'Content-Type': 'application/x-www-form-urlencoded' },
|
|
|
|
data: querystring.stringify({style: style, style_version: '2.0.2', style_convert: true})
|
|
|
|
},{}, function(res) {
|
|
|
|
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/my_table5/style',
|
|
|
|
method: 'GET'
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
var parsed = JSON.parse(res.body);
|
|
|
|
// NOTE: no transform expected for the specific style
|
|
|
|
assert.equal(parsed.style, style);
|
|
|
|
assert.equal(parsed.style_version, mapnik.versions.mapnik);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-08-14 21:06:04 +08:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// DELETE STYLE
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-08-07 23:10:15 +08:00
|
|
|
// Test that unauthenticated DELETE should fail
|
2012-08-07 20:02:42 +08:00
|
|
|
// See https://github.com/Vizzuality/cartodb-management/issues/155
|
2012-08-07 23:10:15 +08:00
|
|
|
test("delete'ing style with no authentication returns an error", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/tiles/my_table5/style',
|
|
|
|
method: 'DELETE',
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-08-07 23:10:15 +08:00
|
|
|
},{}, function(res) {
|
2012-09-06 02:16:55 +08:00
|
|
|
// FIXME: should be 401 Unauthorized
|
2012-08-07 23:10:15 +08:00
|
|
|
assert.equal(res.statusCode, 500, res.body);
|
2012-08-14 22:15:41 +08:00
|
|
|
assert.ok(res.body.indexOf('map state cannot be changed by unauthenticated request') != -1, res.body);
|
|
|
|
// check that the style wasn't really deleted !
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-08-14 22:15:41 +08:00
|
|
|
url: '/tiles/my_table5/style?map_key=1234',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
2012-10-08 22:41:16 +08:00
|
|
|
}, function(res) {
|
|
|
|
var parsed = JSON.parse(res.body);
|
2012-11-15 23:01:34 +08:00
|
|
|
assert.equal(parsed.style, 'Map { background-color:#fff; }');
|
2012-10-08 22:41:16 +08:00
|
|
|
//assert.equal(parsed.version, '2.0.0');
|
|
|
|
done();
|
|
|
|
});
|
2012-08-07 23:10:15 +08:00
|
|
|
});
|
|
|
|
});
|
2012-08-07 20:02:42 +08:00
|
|
|
|
|
|
|
test("delete'ing style returns 200 then getting returns default style", function(done){
|
|
|
|
// this is the default style
|
2012-11-14 17:40:48 +08:00
|
|
|
var style = _.template(default_style, {table: 'my_table5'});
|
2012-08-07 20:02:42 +08:00
|
|
|
assert.response(server, {
|
|
|
|
url: '/tiles/my_table5/style?map_key=1234',
|
|
|
|
method: 'DELETE',
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-08-07 20:02:42 +08:00
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
|
|
|
|
// Retrive style with authenticated request
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-08-07 20:02:42 +08:00
|
|
|
url: '/tiles/my_table5/style?map_key=1234',
|
|
|
|
method: 'GET'
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
assert.deepEqual(JSON.parse(res.body).style, style);
|
|
|
|
|
|
|
|
// Now retrive style with unauthenticated request
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-08-07 20:02:42 +08:00
|
|
|
url: '/tiles/my_table5/style',
|
|
|
|
method: 'GET'
|
|
|
|
}, {}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
assert.deepEqual(JSON.parse(res.body).style, style);
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
2012-08-14 21:06:04 +08:00
|
|
|
|
2012-10-05 22:16:48 +08:00
|
|
|
// See https://github.com/Vizzuality/Windshaft-cartodb/issues/38
|
|
|
|
test("delete'ing style with api_key is accepted", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/tiles/my_table5/style?api_key=1234',
|
|
|
|
method: 'DELETE',
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-08-14 21:06:04 +08:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// GET INFOWINDOW
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
2012-07-09 22:49:31 +08:00
|
|
|
|
|
|
|
test("get'ing blank infowindow returns blank", function(done){
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-07-09 22:49:31 +08:00
|
|
|
url: '/tiles/my_tablez/infowindow',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
2012-09-25 00:57:48 +08:00
|
|
|
headers: { 'X-Cache-Channel': 'cartodb_test_user_1_db:my_tablez' },
|
2012-07-09 22:49:31 +08:00
|
|
|
body: '{"infowindow":null}'
|
|
|
|
}, function() { done(); });
|
|
|
|
});
|
|
|
|
|
|
|
|
test("get'ing blank infowindow with callback returns blank with callback", function(done){
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-07-09 22:49:31 +08:00
|
|
|
url: '/tiles/my_tablez/infowindow?callback=simon',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
|
|
|
body: 'simon({"infowindow":null});'
|
|
|
|
}, function() { done(); });
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
test("get'ing completed infowindow with callback returns information with callback", function(done){
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-07-09 22:49:31 +08:00
|
|
|
url: '/tiles/my_table/infowindow?callback=simon',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
|
|
|
body: 'simon({"infowindow":"this, that, the other"});'
|
|
|
|
}, function() { done(); });
|
|
|
|
});
|
2012-08-14 21:06:04 +08:00
|
|
|
|
2012-08-15 02:01:32 +08:00
|
|
|
test("get'ing infowindow of private table should fail when unauthenticated",
|
|
|
|
function(done) {
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-08-15 02:01:32 +08:00
|
|
|
url: '/tiles/test_table_private_1/infowindow',
|
|
|
|
method: 'GET'
|
|
|
|
},{}, function(res) {
|
2012-09-06 02:16:55 +08:00
|
|
|
// FIXME: should be 401 Unauthorized
|
2013-01-29 20:13:14 +08:00
|
|
|
assert.equal(res.statusCode, 500, res.statusCode + ': ' + res.body);
|
2012-08-15 02:01:32 +08:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-10-22 21:30:16 +08:00
|
|
|
// See http://github.com/Vizzuality/Windshaft-cartodb/issues/55
|
|
|
|
test("get'ing infowindow of private table should fail on unknown username",
|
|
|
|
function(done) {
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'unknown_user'},
|
|
|
|
url: '/tiles/test_table_private_1/infowindow',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
}, function(res) {
|
|
|
|
// FIXME: should be 401 Unauthorized
|
2013-01-29 20:13:14 +08:00
|
|
|
assert.equal(res.statusCode, 500, res.statusCode + ': ' + res.body);
|
2012-10-22 21:30:16 +08:00
|
|
|
assert.deepEqual(JSON.parse(res.body),
|
|
|
|
{error:"missing unknown_user's dbname in redis (try CARTODB/script/restore_redis)"});
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-08-15 02:01:32 +08:00
|
|
|
test("get'ing infowindow of private table should succeed when authenticated",
|
|
|
|
function(done) {
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-08-15 02:01:32 +08:00
|
|
|
url: '/tiles/test_table_private_1/infowindow?map_key=1234',
|
|
|
|
method: 'GET'
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-08-14 21:06:04 +08:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// GET GRID
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-03-30 01:24:08 +08:00
|
|
|
test("get'ing a json with default style should return an grid", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
2013-04-06 00:11:36 +08:00
|
|
|
url: '/tiles/gadm4/6/31/24.grid.json',
|
2013-03-30 01:24:08 +08:00
|
|
|
method: 'GET'
|
2012-07-09 22:49:31 +08:00
|
|
|
},{
|
|
|
|
status: 200,
|
2012-09-25 00:57:48 +08:00
|
|
|
headers: { 'Content-Type': 'text/javascript; charset=utf-8; charset=utf-8',
|
|
|
|
'X-Cache-Channel': 'cartodb_test_user_1_db:gadm4' }
|
2012-07-09 22:49:31 +08:00
|
|
|
}, function() { done(); });
|
|
|
|
});
|
|
|
|
|
|
|
|
test("get'ing a json with default style should return an grid", function(done){
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2013-04-06 00:11:36 +08:00
|
|
|
url: '/tiles/gadm4/6/31/24.grid.json',
|
2012-07-09 22:49:31 +08:00
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
|
|
|
headers: { 'Content-Type': 'text/javascript; charset=utf-8; charset=utf-8' }
|
|
|
|
}, function() { done(); });
|
|
|
|
});
|
|
|
|
|
|
|
|
test("get'ing a json with default style and sql should return a constrained grid", function(done){
|
2013-04-06 00:11:36 +08:00
|
|
|
var sql = querystring.stringify({sql: "SELECT * FROM gadm4 WHERE codineprov = '08'"})
|
2012-07-09 22:49:31 +08:00
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2013-04-06 00:11:36 +08:00
|
|
|
url: '/tiles/gadm4/6/31/24.grid.json?' + sql,
|
2012-07-09 22:49:31 +08:00
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
|
|
|
headers: { 'Content-Type': 'text/javascript; charset=utf-8; charset=utf-8' }
|
|
|
|
}, function() { done(); });
|
|
|
|
});
|
2012-08-14 21:31:58 +08:00
|
|
|
|
|
|
|
test("get'ing the grid of a private table should fail when unauthenticated",
|
|
|
|
function(done) {
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2013-04-06 00:11:36 +08:00
|
|
|
url: '/tiles/test_table_private_1/6/31/24.grid.json',
|
2012-08-14 21:31:58 +08:00
|
|
|
method: 'GET'
|
|
|
|
},{}, function(res) {
|
2012-09-06 02:16:55 +08:00
|
|
|
// 401 Unauthorized
|
|
|
|
assert.equal(res.statusCode, 401, res.statusCode + ': ' + res.body);
|
2012-08-14 21:31:58 +08:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-10-22 21:30:16 +08:00
|
|
|
// See http://github.com/Vizzuality/Windshaft-cartodb/issues/55
|
|
|
|
test("get'ing grid of private table should fail on unknown username",
|
|
|
|
function(done) {
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'unknown_user'},
|
2013-04-06 00:11:36 +08:00
|
|
|
url: '/tiles/test_table_private_1/6/31/24.grid.json',
|
2012-10-22 21:30:16 +08:00
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
}, function(res) {
|
|
|
|
// FIXME: should be 401 Unauthorized
|
|
|
|
assert.equal(res.statusCode, 400, res.statusCode + ': ' + res.body);
|
|
|
|
assert.deepEqual(JSON.parse(res.body),
|
|
|
|
{error:"missing unknown_user's dbname in redis (try CARTODB/script/restore_redis)"});
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-08-14 21:31:58 +08:00
|
|
|
test("get'ing the grid of a private table should succeed when authenticated",
|
|
|
|
function(done) {
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2013-04-06 00:11:36 +08:00
|
|
|
url: '/tiles/test_table_private_1/6/31/24.grid.json?map_key=1234',
|
2012-08-14 21:31:58 +08:00
|
|
|
method: 'GET'
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2012-07-09 22:49:31 +08:00
|
|
|
|
2012-08-14 21:06:04 +08:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// GET TILE
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
2012-10-24 15:40:05 +08:00
|
|
|
|
|
|
|
test("should send Cache-Control header with short expiration by default", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/gadm4/6/31/24.png',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
|
|
|
}, function(res) {
|
|
|
|
var cc = res.headers['cache-control'];
|
|
|
|
assert.ok(cc);
|
|
|
|
//assert.equal(cc, 'public,max-age=31536000'); // 1 year
|
|
|
|
assert.ok(cc.match('no-cache'), cc);
|
|
|
|
assert.ok(cc.match('must-revalidate'), cc);
|
|
|
|
assert.ok(cc.match('public'), cc);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test("should send Cache-Control header with long expiration when requested", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/gadm4/6/31/24.png?cache_policy=persist',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
|
|
|
}, function(res) {
|
|
|
|
var cc = res.headers['cache-control'];
|
|
|
|
assert.ok(cc);
|
|
|
|
assert.equal(cc, 'public,max-age=31536000'); // 1 year
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-08-14 21:06:04 +08:00
|
|
|
test("get'ing a tile with default style should return an image", function(done){
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-08-14 21:06:04 +08:00
|
|
|
url: '/tiles/gadm4/6/31/24.png?geom_type=polygon',
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
2012-09-25 00:57:48 +08:00
|
|
|
headers: { 'Content-Type': 'image/png', 'X-Cache-Channel': 'cartodb_test_user_1_db:gadm4' }
|
2012-08-14 21:06:04 +08:00
|
|
|
}, function() { done(); });
|
|
|
|
});
|
2012-07-09 22:49:31 +08:00
|
|
|
|
|
|
|
test("get'ing a tile with default style and sql should return a constrained image", function(done){
|
|
|
|
var sql = querystring.stringify({sql: "SELECT * FROM gadm4 WHERE codineprov = '08'"});
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-07-09 22:49:31 +08:00
|
|
|
url: '/tiles/gadm4/6/31/24.png?' + sql,
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
|
|
|
headers: { 'Content-Type': 'image/png' }
|
|
|
|
}, function() { done(); });
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
test("get'ing a tile with default style and complex sql should return a constrained image", function(done){
|
|
|
|
var sql = querystring.stringify({sql: "SELECT * FROM gadm4 WHERE codineprov = '08' AND codccaa > 60"})
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-07-09 22:49:31 +08:00
|
|
|
url: '/tiles/gadm4/6/31/24.png?' + sql,
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
|
|
|
headers: { 'Content-Type': 'image/png' }
|
|
|
|
}, function() { done(); });
|
|
|
|
});
|
2012-07-18 17:00:24 +08:00
|
|
|
|
|
|
|
test("get'ing a tile with data from private table should succeed when authenticated", function(done){
|
|
|
|
// NOTE: may fail if grainstore < 0.3.0 is used by Windshaft
|
|
|
|
var sql = querystring.stringify({sql: "SELECT * FROM test_table_private_1", map_key: 1234})
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-08-14 21:31:58 +08:00
|
|
|
// NOTE: we encode a public table in the URL !
|
2012-07-18 17:00:24 +08:00
|
|
|
url: '/tiles/gadm4/6/31/24.png?' + sql,
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
|
|
|
headers: { 'Content-Type': 'image/png' }
|
|
|
|
}, function() { done(); });
|
|
|
|
});
|
|
|
|
|
2012-10-05 22:16:48 +08:00
|
|
|
// See https://github.com/Vizzuality/Windshaft-cartodb/issues/38
|
|
|
|
test("get'ing a tile with data from private table should succeed when authenticated with api_key", function(done){
|
|
|
|
// NOTE: may fail if grainstore < 0.3.0 is used by Windshaft
|
|
|
|
var sql = querystring.stringify({sql: "SELECT * FROM test_table_private_1", api_key: 1234})
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/gadm4/6/31/24.png?' + sql,
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
status: 200,
|
|
|
|
headers: { 'Content-Type': 'image/png' }
|
|
|
|
}, function() { done(); });
|
|
|
|
});
|
|
|
|
|
2012-07-18 17:00:24 +08:00
|
|
|
test("get'ing a tile with data from private table should fail when unauthenticated", function(done){
|
|
|
|
var sql = querystring.stringify({
|
|
|
|
sql: "SELECT * FROM test_table_private_1",
|
|
|
|
cache_buster:2 // this is to avoid getting the cached response
|
|
|
|
});
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-07-18 17:00:24 +08:00
|
|
|
url: '/tiles/gadm4/6/31/24.png?' + sql,
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
2012-09-06 01:55:50 +08:00
|
|
|
}, function(res) {
|
|
|
|
// 401 Unauthorized
|
|
|
|
assert.equal(res.statusCode, 401, res.statusCode + ': ' + res.body);
|
|
|
|
done();
|
|
|
|
});
|
2012-07-18 17:00:24 +08:00
|
|
|
});
|
|
|
|
|
2012-10-22 21:30:16 +08:00
|
|
|
test("get'ing a tile with data from private table should fail on unknown username", function(done){
|
|
|
|
var sql = querystring.stringify({
|
|
|
|
sql: "SELECT * FROM test_table_private_1",
|
|
|
|
cache_buster:2 // this is to avoid getting the cached response
|
|
|
|
});
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'unknown_user'},
|
|
|
|
url: '/tiles/gadm4/6/31/24.png?' + sql,
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
|
|
|
}, function(res) {
|
|
|
|
// FIXME: should be 401 Unauthorized
|
|
|
|
assert.equal(res.statusCode, 400, res.statusCode + ': ' + res.body);
|
|
|
|
assert.deepEqual(JSON.parse(res.body),
|
|
|
|
{error:"missing unknown_user's dbname in redis (try CARTODB/script/restore_redis)"});
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-08-02 17:17:53 +08:00
|
|
|
test("get'ing a tile with data from private table should fail when unauthenticated (uses old redis key)", function(done){
|
|
|
|
var sql = querystring.stringify({
|
|
|
|
sql: "SELECT * FROM test_table_private_1",
|
|
|
|
cache_buster:3,
|
2012-10-05 21:44:04 +08:00
|
|
|
// 1235 is written in rails:users:localhost:map_key SET
|
2012-08-02 17:17:53 +08:00
|
|
|
// See https://github.com/Vizzuality/Windshaft-cartodb/issues/39
|
|
|
|
map_key: 1235
|
|
|
|
});
|
|
|
|
assert.response(server, {
|
2012-10-05 21:44:04 +08:00
|
|
|
headers: {host: 'localhost'},
|
2012-08-02 17:17:53 +08:00
|
|
|
url: '/tiles/gadm4/6/31/24.png?' + sql,
|
|
|
|
method: 'GET'
|
|
|
|
},{
|
2012-09-06 01:55:50 +08:00
|
|
|
}, function(res) {
|
|
|
|
// 401 Unauthorized
|
|
|
|
assert.equal(res.statusCode, 401, res.statusCode + ': ' + res.body);
|
|
|
|
done();
|
|
|
|
});
|
2012-08-02 17:17:53 +08:00
|
|
|
});
|
|
|
|
|
2012-11-06 19:31:17 +08:00
|
|
|
test("get'ing a tile with url specified 2.0.0 style should return an expected tile", function(done){
|
|
|
|
var style = querystring.stringify({style: test_style_black_200, style_version: '2.0.0'});
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/test_table/15/16046/12354.png?cache_buster=4&' + style, // madrid
|
|
|
|
method: 'GET',
|
|
|
|
encoding: 'binary'
|
|
|
|
},{}, function(res){
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
var ct = res.headers['content-type'];
|
|
|
|
assert.equal(ct, 'image/png');
|
|
|
|
assert.imageEqualsFile(res.body, './test/fixtures/test_table_15_16046_12354_styled_black.png', 2,
|
|
|
|
function(err, similarity) {
|
|
|
|
if (err) throw err;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test("get'ing a tile with url specified 2.1.0 style should return an expected tile", function(done){
|
|
|
|
var style = querystring.stringify({style: test_style_black_210, style_version: '2.1.0'});
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/test_table/15/16046/12354.png?cache_buster=4&' + style, // madrid
|
|
|
|
method: 'GET',
|
|
|
|
encoding: 'binary'
|
|
|
|
},{}, function(res){
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
var ct = res.headers['content-type'];
|
|
|
|
assert.equal(ct, 'image/png');
|
|
|
|
assert.imageEqualsFile(res.body, './test/fixtures/test_table_15_16046_12354_styled_black.png', 2,
|
|
|
|
function(err, similarity) {
|
|
|
|
if (err) throw err;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2013-03-23 01:55:59 +08:00
|
|
|
test("get'ing a tile with url specified 2.1.0 style (lzma version)", function(done){
|
|
|
|
var qo = {
|
|
|
|
style: test_style_black_210,
|
|
|
|
style_version: '2.1.0',
|
|
|
|
cache_buster: 5
|
|
|
|
};
|
|
|
|
Step (
|
|
|
|
function compressQuery () {
|
|
|
|
//console.log("Compressing starts");
|
|
|
|
var next = this;
|
2013-04-24 21:10:58 +08:00
|
|
|
helper.lzma_compress_to_base64(JSON.stringify(qo), 1, this);
|
2013-03-23 01:55:59 +08:00
|
|
|
//cosole.log("compress returned " + x );
|
|
|
|
},
|
|
|
|
function sendRequest(err, lzma) {
|
|
|
|
//console.log("Compressing ends: " + typeof(lzma) + " - " + lzma);
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
2013-04-19 22:16:20 +08:00
|
|
|
url: '/tiles/test_table/15/16046/12354.png?lzma=' + encodeURIComponent(lzma),
|
2013-03-23 01:55:59 +08:00
|
|
|
method: 'GET',
|
|
|
|
encoding: 'binary'
|
|
|
|
},{}, this);
|
|
|
|
},
|
|
|
|
function checkResponse(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
var ct = res.headers['content-type'];
|
|
|
|
assert.equal(ct, 'image/png');
|
|
|
|
assert.imageEqualsFile(res.body, './test/fixtures/test_table_15_16046_12354_styled_black.png', 2,
|
|
|
|
function(err, similarity) {
|
|
|
|
if (err) throw err;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2012-11-22 23:39:00 +08:00
|
|
|
// See http://github.com/Vizzuality/Windshaft-cartodb/issues/57
|
|
|
|
test("GET'ing a tile as anonymous with style set by POST", function(done){
|
|
|
|
var style = querystring.stringify({style: test_style_black_210, style_version: '2.1.0'});
|
|
|
|
Step (
|
|
|
|
function postStyle1() {
|
|
|
|
var next = this;
|
|
|
|
assert.response(server, {
|
|
|
|
method: 'POST',
|
|
|
|
url: '/tiles/test_table/style',
|
|
|
|
headers: {host: 'localhost', 'Content-Type': 'application/x-www-form-urlencoded' },
|
|
|
|
data: querystring.stringify({style: 'Map { background-color:#fff; }', map_key: 1234})
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// Load the new cache with results from Style1 above
|
|
|
|
function getTileAnon1(err) {
|
|
|
|
if ( err ) throw err;
|
|
|
|
var next = this;
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/test_table/15/16046/12354.png',
|
|
|
|
method: 'GET',
|
|
|
|
encoding: 'binary'
|
|
|
|
},{}, function(res){
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
var ct = res.headers['content-type'];
|
|
|
|
assert.equal(ct, 'image/png');
|
|
|
|
assert.imageEqualsFile(res.body, './test/fixtures/blank.png', 0,
|
|
|
|
function(err, similarity) {
|
|
|
|
if (err) next(err);
|
|
|
|
else next();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// Get again with authentication
|
|
|
|
function getTileAuth1(err) {
|
|
|
|
if ( err ) throw err;
|
|
|
|
var next = this;
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/test_table/15/16046/12354.png?map_key=1234',
|
|
|
|
method: 'GET',
|
|
|
|
encoding: 'binary'
|
|
|
|
},{}, function(res){
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
var ct = res.headers['content-type'];
|
|
|
|
assert.equal(ct, 'image/png');
|
|
|
|
assert.imageEqualsFile(res.body, './test/fixtures/blank.png', 0,
|
|
|
|
function(err, similarity) {
|
|
|
|
if (err) next(err);
|
|
|
|
else next();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// Change the style
|
|
|
|
function postStyle2(err) {
|
|
|
|
if ( err ) throw err;
|
|
|
|
var next = this;
|
|
|
|
assert.response(server, {
|
|
|
|
method: 'POST',
|
|
|
|
url: '/tiles/test_table/style',
|
|
|
|
headers: {host: 'localhost', 'Content-Type': 'application/x-www-form-urlencoded' },
|
|
|
|
data: querystring.stringify({style: test_style_black_200, map_key: 1234})
|
|
|
|
},{}, function(res) {
|
|
|
|
try {
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
catch (err) { next(err); }
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// Verify the Style2 is applied. NOTE: pass the SAME cache_buster as before!
|
|
|
|
function getTileAnon2(err) {
|
|
|
|
if ( err ) throw err;
|
|
|
|
var next = this;
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/test_table/15/16046/12354.png',
|
|
|
|
method: 'GET',
|
|
|
|
encoding: 'binary'
|
|
|
|
},{}, function(res){
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
var ct = res.headers['content-type'];
|
|
|
|
assert.equal(ct, 'image/png');
|
|
|
|
assert.imageEqualsFile(res.body, './test/fixtures/test_table_15_16046_12354_styled_black.png', 2,
|
|
|
|
function(err, similarity) {
|
|
|
|
// NOTE: we expect them to be EQUAL here
|
|
|
|
if (err) { next(err); return; }
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// Delete the style
|
|
|
|
function delStyle(err) {
|
|
|
|
if ( err ) throw err;
|
|
|
|
var next = this;
|
|
|
|
assert.response(server, {
|
|
|
|
method: 'DELETE',
|
|
|
|
url: '/tiles/test_table/style?map_key=1234',
|
|
|
|
headers: {host: 'localhost'}
|
|
|
|
},{}, function(res) {
|
|
|
|
try {
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
catch (err) { next(err); }
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// Verify the default style is applied.
|
|
|
|
function getTileAnon3(err) {
|
|
|
|
if ( err ) throw err;
|
|
|
|
var next = this;
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
2012-11-23 02:12:21 +08:00
|
|
|
url: '/tiles/test_table/15/16046/12354.png?cache_buster=2314',
|
2012-11-22 23:39:00 +08:00
|
|
|
method: 'GET',
|
|
|
|
encoding: 'binary'
|
|
|
|
},{}, function(res){
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
var ct = res.headers['content-type'];
|
|
|
|
assert.equal(ct, 'image/png');
|
|
|
|
assert.imageEqualsFile(res.body, './test/fixtures/test_table_15_16046_12354_styled_black.png', 2,
|
|
|
|
function(err, similarity) {
|
|
|
|
// NOTE: we expect them to be different here
|
|
|
|
if (err) next();
|
|
|
|
else next(new Error('Last posted style still in effect after delete'));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function finish(err) {
|
|
|
|
if ( err ) done(err);
|
|
|
|
else done();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2013-03-13 17:36:28 +08:00
|
|
|
test("uses sqlapi to figure source data of query", function(done){
|
|
|
|
var qo = {
|
|
|
|
sql: "SELECT g.cartodb_id, g.codineprov, t.the_geom_webmercator "
|
|
|
|
+ "FROM gadm4 g, test_table t "
|
|
|
|
+ "WHERE g.cartodb_id = t.cartodb_id",
|
|
|
|
map_key: 1234
|
|
|
|
};
|
|
|
|
var sqlapi;
|
|
|
|
Step(
|
|
|
|
function sendRequest(err) {
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/gadm4/6/31/24.png?' + querystring.stringify(qo),
|
|
|
|
method: 'GET'
|
|
|
|
},{}, this);
|
|
|
|
},
|
|
|
|
function checkResponse(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
var ct = res.headers['content-type'];
|
|
|
|
assert.equal(ct, 'image/png');
|
|
|
|
var cc = res.headers['x-cache-channel'];
|
|
|
|
var dbname = 'cartodb_test_user_1_db'
|
|
|
|
assert.equal(cc.substring(0, dbname.length), dbname);
|
|
|
|
var jsonquery = cc.substring(dbname.length+1);
|
|
|
|
var sentquery = JSON.parse(jsonquery);
|
|
|
|
assert.equal(sentquery.api_key, qo.map_key);
|
|
|
|
assert.equal(sentquery.q, 'SELECT CDB_QueryTables($windshaft$' + qo.sql + '$windshaft$)');
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("requests to skip cache on sqlapi error", function(done){
|
|
|
|
var qo = {
|
|
|
|
sql: "SELECT g.cartodb_id, g.codineprov, t.the_geom_webmercator "
|
|
|
|
+ ", 'SQLAPIERROR' is not null "
|
|
|
|
+ "FROM gadm4 g, test_table t "
|
|
|
|
+ "WHERE g.cartodb_id = t.cartodb_id",
|
|
|
|
map_key: 1234
|
|
|
|
};
|
|
|
|
var sqlapi;
|
|
|
|
Step(
|
|
|
|
function sendRequest(err) {
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/gadm4/6/31/24.png?' + querystring.stringify(qo),
|
|
|
|
method: 'GET'
|
|
|
|
},{}, this);
|
|
|
|
},
|
|
|
|
function checkResponse(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
var ct = res.headers['content-type'];
|
|
|
|
assert.equal(ct, 'image/png');
|
|
|
|
// does NOT send an x-cache-channel
|
|
|
|
assert.ok(!res.headers.hasOwnProperty('x-cache-channel'));
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2012-10-05 22:50:39 +08:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// DELETE CACHE
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
test("forbids flushing cache without specifying table name", function(done) {
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/flush_cache',
|
|
|
|
method: 'DELETE'
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 404, res.statusCode + ': ' + res.body);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test("allows flushing table cache by unauthenticated user", function(done) {
|
2012-09-10 22:47:54 +08:00
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/gadm4/flush_cache',
|
|
|
|
method: 'DELETE'
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
// TODO: also check that varnish is signalled (using VarnishEmu)
|
|
|
|
// NOTE: requires enable_cache=1 in test.js
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-09-10 23:01:21 +08:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// GET METADATA
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
test("does not provide metadata of private table to unauthenticated requests", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/test_table_private_1/map_metadata',
|
|
|
|
method: 'GET'
|
|
|
|
},{}, function(res) {
|
|
|
|
// FIXME: should be 401 instead
|
|
|
|
assert.equal(res.statusCode, 500, res.statusCode + ': ' + res.body);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test("does provide metadata of private table to authenticated requests", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/test_table_private_1/map_metadata?map_key=1234',
|
|
|
|
method: 'GET'
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test("does provide metadata of public table to unauthenticated requests", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/gadm4/map_metadata',
|
|
|
|
method: 'GET'
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
// TODO: show metadata ?
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test("does provide metadata of public table to authenticated requests", function(done){
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/gadm4/map_metadata?map_key=1234',
|
|
|
|
method: 'GET'
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
// TODO: show metadata ?
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-09-10 22:47:54 +08:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// DELETE CACHE
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
test("forbids flushing cache without specifying table name", function(done) {
|
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/flush_cache',
|
|
|
|
method: 'DELETE'
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 404, res.statusCode + ': ' + res.body);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test("allows flushing table cache by unauthenticated user", function(done) {
|
2012-10-05 22:50:39 +08:00
|
|
|
assert.response(server, {
|
|
|
|
headers: {host: 'localhost'},
|
|
|
|
url: '/tiles/gadm4/flush_cache',
|
|
|
|
method: 'DELETE'
|
|
|
|
},{}, function(res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
|
|
// TODO: also check that varnish is signalled (using VarnishEmu)
|
|
|
|
// NOTE: requires enable_cache=1 in test.js
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Tear down
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-07-12 19:31:39 +08:00
|
|
|
suiteTeardown(function(done) {
|
|
|
|
// This test will add map_style records, like
|
|
|
|
// 'map_style|null|publicuser|my_table',
|
|
|
|
redis_client.keys("map_style|*", function(err, matches) {
|
|
|
|
_.each(matches, function(k) { redis_client.del(k); });
|
2013-03-13 17:36:28 +08:00
|
|
|
sqlapi_server.close(done);
|
2012-07-12 19:31:39 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-07-09 22:49:31 +08:00
|
|
|
});
|
2012-06-06 22:24:44 +08:00
|
|
|
|