b29933f96e
fixes #219
1504 lines
55 KiB
JavaScript
1504 lines
55 KiB
JavaScript
/**
|
|
*
|
|
* Requires the database and tables setup in config/environments/test.js to exist
|
|
* Ensure the user is present in the pgbouncer auth file too
|
|
* TODO: Add OAuth tests.
|
|
*
|
|
* To run this test, ensure that cartodb_test_user_1_db metadata exists
|
|
* in Redis for the vizzuality.cartodb.com domain
|
|
*
|
|
* SELECT 5
|
|
* HSET rails:users:vizzuality id 1
|
|
* HSET rails:users:vizzuality database_name cartodb_test_user_1_db
|
|
*
|
|
*/
|
|
require('../helper');
|
|
|
|
var app = require(global.settings.app_root + '/app/controllers/app')();
|
|
var assert = require('../support/assert');
|
|
var querystring = require('querystring');
|
|
var _ = require('underscore');
|
|
var step = require('step');
|
|
|
|
|
|
describe('app.test', function() {
|
|
|
|
var expected_cache_control = 'no-cache,max-age=31536000,must-revalidate,public';
|
|
var expected_rw_cache_control = 'no-cache,max-age=0,must-revalidate,public';
|
|
var expected_cache_control_persist = 'public,max-age=31536000';
|
|
|
|
it('GET /api/v1/version', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/version',
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200);
|
|
var parsed = JSON.parse(res.body);
|
|
var sqlapi_version = require(__dirname + '/../../package.json').version;
|
|
assert.ok(parsed.hasOwnProperty('cartodb_sql_api'), "No 'cartodb_sql_api' version in " + parsed);
|
|
assert.equal(parsed.cartodb_sql_api, sqlapi_version);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET /api/v1/sql', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql',
|
|
method: 'GET'
|
|
},{
|
|
status: 400
|
|
}, function(res) {
|
|
assert.deepEqual(res.headers['content-type'], 'application/json; charset=utf-8');
|
|
assert.deepEqual(res.headers['content-disposition'], 'inline');
|
|
assert.deepEqual(JSON.parse(res.body), {"error":["You must indicate a sql query"]});
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Test base_url setting
|
|
it('GET /api/whatever/sql', function(done){
|
|
assert.response(app, {
|
|
url: '/api/whatever/sql?q=SELECT%201',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{
|
|
}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Test CORS headers with GET
|
|
it('GET /api/whatever/sql', function(done){
|
|
assert.response(app, {
|
|
url: '/api/whatever/sql?q=SELECT%201',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{
|
|
}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
assert.equal(
|
|
res.headers['access-control-allow-headers'], 'X-Requested-With, X-Prototype-Version, X-CSRF-Token'
|
|
);
|
|
assert.equal(res.headers['access-control-allow-origin'], '*');
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Test that OPTIONS does not run queries
|
|
it('OPTIONS /api/x/sql', function(done){
|
|
assert.response(app, {
|
|
url: '/api/x/sql?q=syntax%20error',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'OPTIONS'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
assert.equal(res.body, '');
|
|
assert.equal(
|
|
res.headers['access-control-allow-headers'], 'X-Requested-With, X-Prototype-Version, X-CSRF-Token'
|
|
);
|
|
assert.equal(res.headers['access-control-allow-origin'], '*');
|
|
done();
|
|
});
|
|
});
|
|
|
|
|
|
|
|
it('GET /api/v1/sql with SQL parameter on SELECT only. No oAuth included ', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4&database=cartodb_test_user_1_db',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
// Check cache headers
|
|
assert.equal(res.headers['x-cache-channel'], 'cartodb_test_user_1_db:public.untitle_table_4');
|
|
assert.equal(res.headers['cache-control'], expected_cache_control);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('cache_policy=persist', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4&database=cartodb_test_user_1_db&cache_policy=persist',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
// Check cache headers
|
|
assert.ok(res.headers.hasOwnProperty('x-cache-channel'));
|
|
// See https://github.com/CartoDB/CartoDB-SQL-API/issues/105
|
|
assert.equal(res.headers['x-cache-channel'], 'cartodb_test_user_1_db:public.untitle_table_4');
|
|
assert.equal(res.headers['cache-control'], expected_cache_control_persist);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET /api/v1/sql with SQL parameter on SELECT only. no database param, just id using headers', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET /user/vizzuality/api/v1/sql with SQL parameter on SELECT only', function(done){
|
|
assert.response(app, {
|
|
url: '/user/vizzuality/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4',
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
done();
|
|
});
|
|
});
|
|
|
|
|
|
// See https://github.com/CartoDB/CartoDB-SQL-API/issues/121
|
|
it('SELECT from user-specific database', function(done){
|
|
var backupDBHost = global.settings.db_host;
|
|
global.settings.db_host = '6.6.6.6';
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT+2+as+n',
|
|
headers: {host: 'cartodb250user.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
global.settings.db_host = backupDBHost;
|
|
var err = null;
|
|
try {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ": " + res.body);
|
|
var parsed = JSON.parse(res.body);
|
|
assert.equal(parsed.rows.length, 1);
|
|
assert.equal(parsed.rows[0].n, 2);
|
|
} catch (e) {
|
|
err = e;
|
|
}
|
|
done(err);
|
|
});
|
|
});
|
|
|
|
// See https://github.com/CartoDB/CartoDB-SQL-API/issues/120
|
|
it('SELECT with user-specific password', function(done){
|
|
var backupDBUserPass = global.settings.db_user_pass;
|
|
global.settings.db_user_pass = '<%= user_password %>';
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT+2+as+n&api_key=1234',
|
|
headers: {host: 'cartodb250user.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
global.settings.db_user_pass = backupDBUserPass;
|
|
var err = null;
|
|
try {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ": " + res.body);
|
|
var parsed = JSON.parse(res.body);
|
|
assert.equal(parsed.rows.length, 1);
|
|
assert.equal(parsed.rows[0].n, 2);
|
|
} catch (e) {
|
|
err = e;
|
|
}
|
|
done(err);
|
|
});
|
|
});
|
|
|
|
it('GET /api/v1/sql with SQL parameter on SELECT only. no database param, just id using headers. Authenticated.',
|
|
function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20cartodb_id*2%20FROM%20untitle_table_4&api_key=1234',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
// Check cache headers
|
|
assert.equal(res.headers['x-cache-channel'], 'cartodb_test_user_1_db:public.untitle_table_4');
|
|
assert.equal(res.headers['cache-control'], expected_cache_control);
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Test for https://github.com/Vizzuality/CartoDB-SQL-API/issues/85
|
|
it("paging doesn't break x-cache-channel",
|
|
function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
// note: select casing intentionally mixed
|
|
q: 'selECT cartodb_id*3 FROM untitle_table_4',
|
|
api_key: '1234',
|
|
rows_per_page: 1,
|
|
page: 2
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
assert.equal(res.headers['x-cache-channel'], 'cartodb_test_user_1_db:public.untitle_table_4');
|
|
var parsed = JSON.parse(res.body);
|
|
assert.equal(parsed.rows.length, 1);
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Test page and rows_per_page params
|
|
it("paging", function(done){
|
|
var sql = 'SELECT * FROM (VALUES(1),(2),(3),(4),(5),(6),(7),(8),(9)) t(v)';
|
|
var pr = [ [2,3], [0,4] ]; // page and rows
|
|
var methods = [ 'GET', 'POST' ];
|
|
var authorized = 0;
|
|
var testing = 0;
|
|
var method = 0;
|
|
// jshint maxcomplexity:7
|
|
var testNext = function() {
|
|
if ( testing >= pr.length ) {
|
|
if ( method+1 >= methods.length ) {
|
|
if ( authorized ) {
|
|
done();
|
|
return;
|
|
} else {
|
|
authorized = 1;
|
|
method = 0;
|
|
testing = 0;
|
|
}
|
|
} else {
|
|
testing = 0;
|
|
++method;
|
|
}
|
|
}
|
|
var prcur = pr[testing++];
|
|
console.log("Test " + testing + "/" + pr.length + " method " + methods[method] + " " +
|
|
( authorized ? "authenticated" : "" ) );
|
|
var page = prcur[0];
|
|
var nrows = prcur[1];
|
|
var data_obj = {
|
|
q: sql,
|
|
rows_per_page: nrows,
|
|
page: page
|
|
};
|
|
if ( authorized ) {
|
|
data_obj.api_key = '1234';
|
|
}
|
|
var data = querystring.stringify(data_obj);
|
|
var req = {
|
|
url: '/api/v1/sql',
|
|
headers: {host: 'vizzuality.cartodb.com'}
|
|
};
|
|
if ( methods[method] === 'GET' ) {
|
|
req.method = 'GET';
|
|
req.url += '?' + data;
|
|
} else {
|
|
req.method = 'POST';
|
|
req.headers['Content-Type'] = 'application/x-www-form-urlencoded';
|
|
req.data = data;
|
|
}
|
|
assert.response(app, req, {}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var parsed = JSON.parse(res.body);
|
|
assert.equal(parsed.rows.length, nrows);
|
|
for (var i=0; i<nrows; ++i) {
|
|
var obt = parsed.rows[i].v;
|
|
var exp = page * nrows + i + 1;
|
|
assert.equal(obt, exp, "Value " + i + " in page " + page + " is " + obt + ", expected " + exp);
|
|
}
|
|
testNext();
|
|
});
|
|
};
|
|
testNext();
|
|
});
|
|
|
|
// Test paging with WITH queries
|
|
it("paging starting with comment", function(done){
|
|
var sql = "-- this is a comment\n" +
|
|
"SELECT * FROM (VALUES(1),(2),(3),(4),(5),(6),(7),(8),(9)) t(v)";
|
|
var nrows = 3;
|
|
var page = 2;
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: sql,
|
|
rows_per_page: nrows,
|
|
page: page
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
}, {}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var parsed = JSON.parse(res.body);
|
|
assert.equal(parsed.rows.length, 3);
|
|
for (var i=0; i<nrows; ++i) {
|
|
var obt = parsed.rows[i].v;
|
|
var exp = page * nrows + i + 1;
|
|
assert.equal(obt, exp, "Value " + i + " in page " + page + " is " + obt + ", expected " + exp);
|
|
}
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('POST /api/v1/sql with SQL parameter on SELECT only. no database param, just id using headers', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql',
|
|
data: querystring.stringify({q: "SELECT * FROM untitle_table_4"}),
|
|
headers: {host: 'vizzuality.cartodb.com', 'Content-Type': 'application/x-www-form-urlencoded' },
|
|
method: 'POST'
|
|
},{ }, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET /api/v1/sql with INSERT. oAuth not used, so public user - should fail', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?q=INSERT%20INTO%20untitle_table_4%20(cartodb_id)%20VALUES%20(1e4)" +
|
|
"&database=cartodb_test_user_1_db",
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{
|
|
}, function(res) {
|
|
assert.equal(res.statusCode, 401, res.statusCode + ': ' + res.body);
|
|
assert.deepEqual(res.headers['content-type'], 'application/json; charset=utf-8');
|
|
assert.deepEqual(res.headers['content-disposition'], 'inline');
|
|
assert.deepEqual(JSON.parse(res.body),
|
|
{"error":["permission denied for relation untitle_table_4"]}
|
|
);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET /api/v1/sql with DROP TABLE. oAuth not used, so public user - should fail', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?q=DROP%20TABLE%20untitle_table_4&database=cartodb_test_user_1_db",
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{
|
|
}, function(res) {
|
|
assert.equal(res.statusCode, 400, res.statusCode + ': ' + res.body);
|
|
assert.deepEqual(res.headers['content-type'], 'application/json; charset=utf-8');
|
|
assert.deepEqual(res.headers['content-disposition'], 'inline');
|
|
assert.deepEqual(JSON.parse(res.body),
|
|
{"error":["must be owner of relation untitle_table_4"]}
|
|
);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET /api/v1/sql with INSERT. header based db - should fail', function(){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?q=INSERT%20INTO%20untitle_table_4%20(id)%20VALUES%20(1)",
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{
|
|
status: 400
|
|
});
|
|
});
|
|
|
|
// Check results from INSERT
|
|
//
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/13
|
|
it('INSERT returns affected rows', function(done){
|
|
assert.response(app, {
|
|
// view prepare_db.sh to see where to set api_key
|
|
url: "/api/v1/sql?api_key=1234&" + querystring.stringify({q:
|
|
"INSERT INTO private_table(name) VALUES('noret1') UNION VALUES('noret2')"
|
|
}),
|
|
headers: {host: 'vizzuality.localhost.lan:8080' },
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
var out = JSON.parse(res.body);
|
|
assert.ok(out.hasOwnProperty('time'));
|
|
assert.equal(out.total_rows, 2);
|
|
assert.equal(out.rows.length, 0);
|
|
// Check cache headers
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/43
|
|
assert.ok(!res.hasOwnProperty('x-cache-channel'));
|
|
assert.equal(res.headers['cache-control'], expected_rw_cache_control);
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Check results from UPDATE
|
|
//
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/13
|
|
it('UPDATE returns affected rows', function(done){
|
|
assert.response(app, {
|
|
// view prepare_db.sh to see where to set api_key
|
|
url: "/api/v1/sql?api_key=1234&" + querystring.stringify({q:
|
|
"UPDATE private_table SET name = upper(name) WHERE name in ('noret1', 'noret2')"
|
|
}),
|
|
headers: {host: 'vizzuality.localhost.lan:8080' },
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
var out = JSON.parse(res.body);
|
|
assert.ok(out.hasOwnProperty('time'));
|
|
assert.equal(out.total_rows, 2);
|
|
assert.equal(out.rows.length, 0);
|
|
// Check cache headers
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/43
|
|
assert.ok(!res.hasOwnProperty('x-cache-channel'));
|
|
assert.equal(res.headers['cache-control'], expected_rw_cache_control);
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Check results from DELETE
|
|
//
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/13
|
|
it('DELETE returns affected rows', function(done){
|
|
assert.response(app, {
|
|
// view prepare_db.sh to see where to set api_key
|
|
url: "/api/v1/sql?api_key=1234&" + querystring.stringify({q:
|
|
"DELETE FROM private_table WHERE name in ('NORET1', 'NORET2')"
|
|
}),
|
|
headers: {host: 'vizzuality.localhost.lan:8080' },
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
var out = JSON.parse(res.body);
|
|
assert.ok(out.hasOwnProperty('time'));
|
|
assert.equal(out.total_rows, 2);
|
|
assert.equal(out.rows.length, 0);
|
|
// Check cache headers
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/43
|
|
assert.ok(!res.hasOwnProperty('x-cache-channel'));
|
|
assert.equal(res.headers['cache-control'], expected_rw_cache_control);
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Check results from INSERT .. RETURNING
|
|
//
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/50
|
|
it('INSERT with RETURNING returns all results', function(done){
|
|
assert.response(app, {
|
|
// view prepare_db.sh to see where to set api_key
|
|
url: "/api/v1/sql?api_key=1234&" + querystring.stringify({q:
|
|
"INSERT INTO private_table(name) VALUES('test') RETURNING upper(name), reverse(name)"
|
|
}),
|
|
headers: {host: 'vizzuality.localhost.lan:8080' },
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
var out = JSON.parse(res.body);
|
|
assert.ok(out.hasOwnProperty('time'));
|
|
assert.equal(out.total_rows, 1);
|
|
assert.equal(out.rows.length, 1);
|
|
assert.equal(_.keys(out.rows[0]).length, 2);
|
|
assert.equal(out.rows[0].upper, 'TEST');
|
|
assert.equal(out.rows[0].reverse, 'tset');
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Check results from UPDATE .. RETURNING
|
|
//
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/50
|
|
it('UPDATE with RETURNING returns all results', function(done){
|
|
assert.response(app, {
|
|
// view prepare_db.sh to see where to set api_key
|
|
url: "/api/v1/sql?api_key=1234&" + querystring.stringify({q:
|
|
"UPDATE private_table SET name = 'tost' WHERE name = 'test' RETURNING upper(name), reverse(name)"
|
|
}),
|
|
headers: {host: 'vizzuality.localhost.lan:8080' },
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
var out = JSON.parse(res.body);
|
|
assert.ok(out.hasOwnProperty('time'));
|
|
assert.equal(out.total_rows, 1);
|
|
assert.equal(out.rows.length, 1);
|
|
assert.equal(_.keys(out.rows[0]).length, 2);
|
|
assert.equal(out.rows[0].upper, 'TOST');
|
|
assert.equal(out.rows[0].reverse, 'tsot');
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Check results from DELETE .. RETURNING
|
|
//
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/50
|
|
it('DELETE with RETURNING returns all results', function(done){
|
|
assert.response(app, {
|
|
// view prepare_db.sh to see where to set api_key
|
|
url: "/api/v1/sql?api_key=1234&" + querystring.stringify({q:
|
|
"DELETE FROM private_table WHERE name = 'tost' RETURNING name"
|
|
}),
|
|
headers: {host: 'vizzuality.localhost.lan:8080' },
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
var out = JSON.parse(res.body);
|
|
assert.ok(out.hasOwnProperty('time'));
|
|
assert.equal(out.total_rows, 1);
|
|
assert.equal(out.rows.length, 1);
|
|
assert.equal(_.keys(out.rows[0]).length, 1);
|
|
assert.equal(out.rows[0].name, 'tost');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET /api/v1/sql with SQL parameter on DROP TABLE. should fail', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?q=DROP%20TABLE%20untitle_table_4",
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 400, res.statusCode + ': ' + res.body);
|
|
assert.deepEqual(res.headers['content-type'], 'application/json; charset=utf-8');
|
|
assert.deepEqual(res.headers['content-disposition'], 'inline');
|
|
assert.deepEqual(JSON.parse(res.body),
|
|
{"error":["must be owner of relation untitle_table_4"]}
|
|
);
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Check X-Cache-Channel when querying "updated_at" fields
|
|
//
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/99
|
|
it('Field name is not confused with UPDATE operation', function(done){
|
|
assert.response(app, {
|
|
// view prepare_db.sh to see where to set api_key
|
|
url: "/api/v1/sql?api_key=1234&" + querystring.stringify({q:
|
|
"SELECT min(updated_at) FROM private_table"
|
|
}),
|
|
headers: {host: 'vizzuality.localhost.lan:8080' },
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
assert.equal(res.headers['x-cache-channel'], 'cartodb_test_user_1_db:public.private_table');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('CREATE TABLE with GET and auth', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: 'CREATE TABLE test_table(a int)',
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
// Check cache headers
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/43
|
|
assert.ok(!res.hasOwnProperty('x-cache-channel'));
|
|
assert.equal(res.headers['cache-control'], expected_rw_cache_control);
|
|
done();
|
|
});
|
|
});
|
|
|
|
// See http://github.com/CartoDB/CartoDB-SQL-API/issues/127
|
|
it('SELECT INTO with paging ', function(done){
|
|
var esc_tabname = 'test ""select into""'; // escaped ident
|
|
step(
|
|
function select_into() {
|
|
var next = this;
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: 'SELECT generate_series(1,10) InTO "' + esc_tabname + '"',
|
|
rows_per_page: 1, page: 1,
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) { next(null, res); });
|
|
},
|
|
function check_res_test_fake_into_1(err, res) {
|
|
assert.ifError(err);
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
var next = this;
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: 'SELECT \' INTO "c"\' FROM "' + esc_tabname + '"',
|
|
rows_per_page: 1, page: 1,
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) { next(null, res); });
|
|
},
|
|
function check_res_drop_table(err, res) {
|
|
assert.ifError(err);
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
var out = JSON.parse(res.body);
|
|
assert.equal(out.total_rows, 1); // windowing works
|
|
var next = this;
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: 'DROP TABLE "' + esc_tabname + '"',
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) { next(null, res); });
|
|
},
|
|
function check_drop(err, res) {
|
|
assert.ifError(err);
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
return null;
|
|
},
|
|
function finish(err) {
|
|
done(err);
|
|
}
|
|
);
|
|
});
|
|
|
|
// Test effects of COPY
|
|
// See https://github.com/Vizzuality/cartodb-management/issues/1502
|
|
it('COPY TABLE with GET and auth', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: 'COPY test_table FROM stdin;',
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
// We expect a problem, actually
|
|
assert.equal(res.statusCode, 400, res.statusCode + ': ' + res.body);
|
|
assert.deepEqual(res.headers['content-type'], 'application/json; charset=utf-8');
|
|
assert.deepEqual(res.headers['content-disposition'], 'inline');
|
|
assert.deepEqual(JSON.parse(res.body), {"error":["COPY from stdin failed: No source stream defined"]});
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('COPY TABLE with GET and auth', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: "COPY test_table to '/tmp/x';",
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
// We expect a problem, actually
|
|
assert.equal(res.statusCode, 400, res.statusCode + ': ' + res.body);
|
|
assert.deepEqual(res.headers['content-type'], 'application/json; charset=utf-8');
|
|
assert.deepEqual(res.headers['content-disposition'], 'inline');
|
|
assert.deepEqual(JSON.parse(res.body), {
|
|
error: ["must be superuser to COPY to or from a file"],
|
|
hint: "Anyone can COPY to stdout or from stdin. psql's \\copy command also works for anyone."
|
|
});
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('ALTER TABLE with GET and auth', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: 'ALTER TABLE test_table ADD b int',
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
// Check cache headers
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/43
|
|
assert.ok(!res.hasOwnProperty('x-cache-channel'));
|
|
assert.equal(res.headers['cache-control'], expected_rw_cache_control);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('multistatement insert, alter, select, begin, commit', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: 'BEGIN; DELETE FROM test_table; COMMIT; BEGIN; INSERT INTO test_table(b) values (5); COMMIT; ' +
|
|
'ALTER TABLE test_table ALTER b TYPE float USING b::float/2; SELECT b FROM test_table;',
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
var parsedBody = JSON.parse(res.body);
|
|
assert.equal(parsedBody.total_rows, 1);
|
|
assert.deepEqual(parsedBody.rows[0], {b:2.5});
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('TRUNCATE TABLE with GET and auth', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: 'TRUNCATE TABLE test_table',
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
assert.ok(!res.hasOwnProperty('x-cache-channel'));
|
|
assert.equal(res.headers['cache-control'], expected_rw_cache_control);
|
|
var pbody = JSON.parse(res.body);
|
|
assert.equal(pbody.rows.length, 0);
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: 'SELECT count(*) FROM test_table',
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
assert.equal(res.headers['x-cache-channel'], 'cartodb_test_user_1_db:public.test_table');
|
|
assert.equal(res.headers['cache-control'], expected_cache_control);
|
|
var pbody = JSON.parse(res.body);
|
|
assert.equal(pbody.total_rows, 1);
|
|
assert.equal(pbody.rows[0].count, 0);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
it('REINDEX TABLE with GET and auth', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: ' ReINdEX TABLE test_table',
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
assert.ok(!res.hasOwnProperty('x-cache-channel'));
|
|
assert.equal(res.headers['cache-control'], expected_rw_cache_control);
|
|
var pbody = JSON.parse(res.body);
|
|
assert.equal(pbody.rows.length, 0);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('DROP TABLE with GET and auth', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: 'DROP TABLE test_table',
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
// Check cache headers
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/43
|
|
assert.ok(!res.hasOwnProperty('x-cache-channel'));
|
|
assert.equal(res.headers['cache-control'], expected_rw_cache_control);
|
|
done();
|
|
});
|
|
});
|
|
|
|
test('CREATE FUNCTION with GET and auth', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: 'CREATE FUNCTION create_func_test(a int) RETURNS INT AS \'SELECT 1\' LANGUAGE \'sql\'',
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
// Check cache headers
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/43
|
|
assert.ok(!res.hasOwnProperty('x-cache-channel'));
|
|
assert.equal(res.headers['cache-control'], expected_rw_cache_control);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('DROP FUNCTION with GET and auth', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: 'DROP FUNCTION create_func_test(a int)',
|
|
api_key: 1234
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
// Check cache headers
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/43
|
|
assert.ok(!res.hasOwnProperty('x-cache-channel'));
|
|
assert.equal(res.headers['cache-control'], expected_rw_cache_control);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('sends a 400 when an unsupported format is requested', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4&format=unknown',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res){
|
|
assert.equal(res.statusCode, 400, res.body);
|
|
assert.deepEqual(res.headers['content-type'], 'application/json; charset=utf-8');
|
|
assert.deepEqual(res.headers['content-disposition'], 'inline');
|
|
assert.deepEqual(JSON.parse(res.body), {"error":[ "Invalid format: unknown" ]});
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET /api/v1/sql with SQL parameter and no format, ensuring content-disposition set to json', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res){
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var ct = res.header('Content-Type');
|
|
assert.ok(/json/.test(ct), 'Default format is not JSON: ' + ct);
|
|
var cd = res.header('Content-Disposition');
|
|
assert.equal(true, /^inline/.test(cd), 'Default format is not disposed inline: ' + cd);
|
|
assert.equal(true, /filename=cartodb-query.json/gi.test(cd), 'Unexpected JSON filename: ' + cd);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('POST /api/v1/sql with SQL parameter and no format, ensuring content-disposition set to json', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql',
|
|
data: querystring.stringify({q: "SELECT * FROM untitle_table_4" }),
|
|
headers: {host: 'vizzuality.cartodb.com', 'Content-Type': 'application/x-www-form-urlencoded' },
|
|
method: 'POST'
|
|
},{ }, function(res){
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var ct = res.header('Content-Type');
|
|
assert.ok(/json/.test(ct), 'Default format is not JSON: ' + ct);
|
|
var cd = res.header('Content-Disposition');
|
|
assert.equal(true, /^inline/.test(cd), 'Default format is not disposed inline: ' + cd);
|
|
assert.equal(true, /filename=cartodb-query.json/gi.test(cd), 'Unexpected JSON filename: ' + cd);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET /api/v1/sql with SQL parameter and no format, but a filename', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4&filename=x',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res){
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var ct = res.header('Content-Type');
|
|
assert.ok(/json/.test(ct), 'Default format is not JSON: ' + ct);
|
|
var cd = res.header('Content-Disposition');
|
|
assert.equal(true, /^attachment/.test(cd), 'Format with filename is not disposed as attachment: ' + cd);
|
|
assert.equal(true, /filename=x.json/gi.test(cd), 'Unexpected JSON filename: ' + cd);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('field named "the_geom_webmercator" is not skipped by default', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res){
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var row0 = JSON.parse(res.body).rows[0];
|
|
var checkfields = {'name':1, 'cartodb_id':1, 'the_geom':1, 'the_geom_webmercator':1};
|
|
for ( var f in checkfields ) {
|
|
if ( checkfields[f] ) {
|
|
assert.ok(row0.hasOwnProperty(f), "result does not include '" + f + "'");
|
|
} else {
|
|
assert.ok(!row0.hasOwnProperty(f), "result includes '" + f + "'");
|
|
}
|
|
}
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('skipfields controls included fields', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4&skipfields=the_geom_webmercator,cartodb_id,unexistant',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res){
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var row0 = JSON.parse(res.body).rows[0];
|
|
var checkfields = {'name':1, 'cartodb_id':0, 'the_geom':1, 'the_geom_webmercator':0};
|
|
for ( var f in checkfields ) {
|
|
if ( checkfields[f] ) {
|
|
assert.ok(row0.hasOwnProperty(f), "result does not include '" + f + "'");
|
|
} else {
|
|
assert.ok(!row0.hasOwnProperty(f), "result includes '" + f + "'");
|
|
}
|
|
}
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('multiple skipfields parameter do not kill the backend', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4&skipfields=unexistent,the_geom_webmercator' +
|
|
'&skipfields=cartodb_id,unexistant',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res){
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var row0 = JSON.parse(res.body).rows[0];
|
|
var checkfields = {'name':1, 'cartodb_id':0, 'the_geom':1, 'the_geom_webmercator':0};
|
|
for ( var f in checkfields ) {
|
|
if ( checkfields[f] ) {
|
|
assert.ok(row0.hasOwnProperty(f), "result does not include '" + f + "'");
|
|
} else {
|
|
assert.ok(!row0.hasOwnProperty(f), "result includes '" + f + "'");
|
|
}
|
|
}
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET /api/v1/sql ensure cross domain set on errors', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*gadfgadfg%20FROM%20untitle_table_4',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{
|
|
status: 400
|
|
}, function(res){
|
|
var cd = res.header('Access-Control-Allow-Origin');
|
|
assert.deepEqual(res.headers['content-type'], 'application/json; charset=utf-8');
|
|
assert.deepEqual(res.headers['content-disposition'], 'inline');
|
|
assert.equal(cd, '*');
|
|
done();
|
|
});
|
|
});
|
|
|
|
var systemQueriesSuitesToTest = [
|
|
{
|
|
desc: 'pg_ queries work with api_key and fail otherwise',
|
|
queries: [
|
|
'SELECT * FROM pg_attribute',
|
|
'SELECT * FROM PG_attribute',
|
|
'SELECT * FROM "pg_attribute"',
|
|
'SELECT a.* FROM untitle_table_4 a,pg_attribute',
|
|
'SELECT * FROM geometry_columns'
|
|
],
|
|
api_key_works: true,
|
|
no_api_key_works: false
|
|
},
|
|
{
|
|
desc: 'Possible false positive queries will work with api_key and without it',
|
|
queries: [
|
|
"SELECT 'pg_'",
|
|
'SELECT pg_attribute FROM ( select 1 as pg_attribute ) as f',
|
|
'SELECT * FROM cpg_test'
|
|
],
|
|
api_key_works: true,
|
|
no_api_key_works: true
|
|
},
|
|
{
|
|
desc: 'Set queries will FAIL for both api_key and no_api_key queries',
|
|
queries: [
|
|
' SET work_mem TO 80000',
|
|
' set statement_timeout TO 400'
|
|
],
|
|
api_key_works: false,
|
|
no_api_key_works: false
|
|
}
|
|
];
|
|
|
|
systemQueriesSuitesToTest.forEach(function(suiteToTest) {
|
|
var apiKeyStatusErrorCode = !!suiteToTest.api_key_works ? 200 : 403;
|
|
testSystemQueries(suiteToTest.desc + ' with api_key', suiteToTest.queries, apiKeyStatusErrorCode, '1234');
|
|
var noApiKeyStatusErrorCode = !!suiteToTest.no_api_key_works ? 200 : 403;
|
|
testSystemQueries(suiteToTest.desc, suiteToTest.queries, noApiKeyStatusErrorCode);
|
|
});
|
|
|
|
|
|
function testSystemQueries(description, queries, statusErrorCode, apiKey) {
|
|
queries.forEach(function(query) {
|
|
it('[' + description + '] query: ' + query, function(done) {
|
|
var queryStringParams = {q: query};
|
|
if (!!apiKey) {
|
|
queryStringParams.api_key = apiKey;
|
|
}
|
|
var request = {
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET',
|
|
url: '/api/v1/sql?' + querystring.stringify(queryStringParams)
|
|
};
|
|
assert.response(app, request, function(response) {
|
|
assert.equal(response.statusCode, statusErrorCode);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
it('GET decent error if domain is incorrect', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4&format=geojson',
|
|
headers: {host: 'vizzualinot.cartodb.com'},
|
|
method: 'GET'
|
|
}, {}, function(res){
|
|
assert.equal(res.statusCode, 404, res.statusCode + ( res.statusCode !== 200 ? ( ': ' + res.body ) : ''));
|
|
assert.deepEqual(res.headers['content-type'], 'application/json; charset=utf-8');
|
|
assert.deepEqual(res.headers['content-disposition'], 'inline');
|
|
var result = JSON.parse(res.body);
|
|
assert.equal(
|
|
result.error[0],
|
|
"Sorry, we can't find CartoDB user 'vizzualinot'. Please check that you have entered the correct domain."
|
|
);
|
|
done();
|
|
});
|
|
});
|
|
|
|
// this test does not make sense with the current CDB_QueryTables implementation
|
|
it('GET decent error if SQL is broken', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({q:
|
|
'SELECT star FROM this and that'
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res){
|
|
assert.equal(res.statusCode, 400, res.statusCode + ': ' + res.body);
|
|
assert.deepEqual(res.headers['content-type'], 'application/json; charset=utf-8');
|
|
assert.deepEqual(res.headers['content-disposition'], 'inline');
|
|
var result = JSON.parse(res.body);
|
|
// NOTE: actual error message may be slighly different, possibly worth a regexp here
|
|
assert.equal(result.error[0], 'syntax error at or near "and"');
|
|
done();
|
|
});
|
|
});
|
|
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/88
|
|
it('numeric arrays are rendered as such', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?" + querystring.stringify({q:
|
|
"SELECT ARRAY[8.7,4.3]::numeric[] as x"
|
|
}),
|
|
headers: {host: 'vizzuality.localhost.lan:8080' },
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
var out = JSON.parse(res.body);
|
|
assert.ok(out.hasOwnProperty('time'));
|
|
assert.equal(out.total_rows, 1);
|
|
assert.equal(out.rows.length, 1);
|
|
assert.ok(out.rows[0].hasOwnProperty('x'));
|
|
assert.equal(out.rows[0].x.length, 2);
|
|
assert.equal(out.rows[0].x[0], '8.7');
|
|
assert.equal(out.rows[0].x[1], '4.3');
|
|
assert.equal(res.headers['x-cache-channel'], 'cartodb_test_user_1_db:'); // keep forever
|
|
done();
|
|
});
|
|
});
|
|
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/97
|
|
it('field names and types are exposed', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: "SELECT 1::int as a, 2::float8 as b, 3::varchar as c, " +
|
|
"4::char as d, now() as e, 'a'::text as f" +
|
|
", 1::bool as g" +
|
|
", 'POINT(0 0)'::geometry as h" +
|
|
// See https://github.com/CartoDB/CartoDB-SQL-API/issues/117
|
|
", now()::date as i" +
|
|
", '1'::numeric as j" +
|
|
" LIMIT 0"
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var parsedBody = JSON.parse(res.body);
|
|
assert.equal(_.keys(parsedBody.fields).length, 10);
|
|
assert.equal(parsedBody.fields.a.type, 'number');
|
|
assert.equal(parsedBody.fields.b.type, 'number');
|
|
assert.equal(parsedBody.fields.c.type, 'string');
|
|
assert.equal(parsedBody.fields.d.type, 'string');
|
|
assert.equal(parsedBody.fields.e.type, 'date');
|
|
assert.equal(parsedBody.fields.f.type, 'string');
|
|
assert.equal(parsedBody.fields.g.type, 'boolean');
|
|
assert.equal(parsedBody.fields.h.type, 'geometry');
|
|
assert.equal(parsedBody.fields.i.type, 'date');
|
|
assert.equal(parsedBody.fields.j.type, 'number');
|
|
done();
|
|
});
|
|
});
|
|
|
|
// See https://github.com/CartoDB/CartoDB-SQL-API/issues/109
|
|
it('schema response takes skipfields into account', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: "SELECT 1 as a, 2 as b, 3 as c ",
|
|
skipfields: 'b'
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var parsedBody = JSON.parse(res.body);
|
|
assert.equal(_.keys(parsedBody.fields).length, 2);
|
|
assert.ok(parsedBody.fields.hasOwnProperty('a'));
|
|
assert.ok(!parsedBody.fields.hasOwnProperty('b'));
|
|
assert.ok(parsedBody.fields.hasOwnProperty('c'));
|
|
done();
|
|
});
|
|
});
|
|
|
|
// See https://github.com/Vizzuality/CartoDB-SQL-API/issues/100
|
|
it('numeric fields are rendered as numbers in JSON', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: "WITH inp AS ( SELECT 1::int2 as a, 2::int4 as b, " +
|
|
"3::int8 as c, 4::float4 as d, " +
|
|
"5::float8 as e, 6::numeric as f" +
|
|
") SELECT a,b,c,d,e,f," +
|
|
" ARRAY[a] AS _a, " +
|
|
" ARRAY[b] AS _b, " +
|
|
" ARRAY[c] AS _c, " +
|
|
" ARRAY[d] AS _d, " +
|
|
" ARRAY[e] AS _e, " +
|
|
" ARRAY[f] AS _f " +
|
|
"FROM inp"
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var parsedBody = JSON.parse(res.body);
|
|
var row = parsedBody.rows[0];
|
|
assert.equal(typeof(row.a), 'number');
|
|
assert.equal(typeof(row.b), 'number');
|
|
assert.equal(typeof(row.c), 'number');
|
|
assert.equal(typeof(row.d), 'number');
|
|
assert.equal(typeof(row.e), 'number');
|
|
assert.equal(typeof(row.f), 'number');
|
|
assert.equal(typeof(row._a[0]), 'number');
|
|
assert.equal(typeof(row._b[0]), 'number');
|
|
assert.equal(typeof(row._c[0]), 'number');
|
|
assert.equal(typeof(row._d[0]), 'number');
|
|
assert.equal(typeof(row._e[0]), 'number');
|
|
assert.equal(typeof(row._f[0]), 'number');
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Timezone information is retained with JSON output
|
|
//
|
|
// NOTE: results of these tests rely on the TZ env variable
|
|
// being set to 'Europe/Rome'. The env variable cannot
|
|
// be set within this test in a reliable way, see
|
|
// https://github.com/joyent/node/issues/3286
|
|
//
|
|
// FIXME: we'd like to also test UTC outputs of these
|
|
// numbers, but it'd currently take running the
|
|
// test again (new mocha run) with a different TZ
|
|
//
|
|
it('timezone info in JSON output', function(done){
|
|
step(
|
|
function testEuropeRomeExplicit() {
|
|
var next = this;
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: "SET timezone TO 'Europe/Rome'; SELECT '2000-01-01T00:00:00+01'::timestamptz as d"
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
try {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var parsedBody = JSON.parse(res.body);
|
|
assert.equal(parsedBody.rows[0].d, '2000-01-01T00:00:00+0100');
|
|
next();
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
});
|
|
},
|
|
function testEuropeRomeImplicit(err) {
|
|
assert.ifError(err);
|
|
var next = this;
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: "SET timezone TO 'Europe/Rome'; SELECT '2000-01-01T00:00:00'::timestamp as d"
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
try {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var parsedBody = JSON.parse(res.body);
|
|
assert.equal(parsedBody.rows[0].d, '2000-01-01T00:00:00+0100');
|
|
next();
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
});
|
|
},
|
|
function testUTCExplicit(err) {
|
|
assert.ifError(err);
|
|
var next = this;
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: "SET timezone TO 'UTC'; SELECT '2000-01-01T00:00:00+00'::timestamptz as d"
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
try {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var parsedBody = JSON.parse(res.body);
|
|
assert.equal(parsedBody.rows[0].d, '2000-01-01T01:00:00+0100');
|
|
next();
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
});
|
|
},
|
|
function testUTCImplicit(err) {
|
|
assert.ifError(err);
|
|
var next = this;
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: "SET timezone TO 'UTC'; SELECT '2000-01-01T00:00:00'::timestamp as d"
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
try {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var parsedBody = JSON.parse(res.body);
|
|
assert.equal(parsedBody.rows[0].d, '2000-01-01T00:00:00+0100');
|
|
next();
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
});
|
|
},
|
|
function finish(err) {
|
|
done(err);
|
|
}
|
|
);
|
|
});
|
|
|
|
// WARNING and NOTICE in JSON output
|
|
// See https://github.com/CartoDB/CartoDB-SQL-API/issues/104
|
|
it('notice and warning info in JSON output', function(done){
|
|
step(
|
|
function addRaiseFunction() {
|
|
var next = this;
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: "create or replace function raise(lvl text, msg text) returns void as $$ begin if lvl = 'notice' " +
|
|
"then raise notice '%', msg; elsif lvl = 'warning' then raise warning '%', msg; " +
|
|
"else raise exception '%', msg; end if; end; $$ language plpgsql;",
|
|
api_key: '1234'
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
var err = null;
|
|
try {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
} catch (e) { err = e; }
|
|
next(err);
|
|
});
|
|
},
|
|
function raiseNotice(err) {
|
|
assert.ifError(err);
|
|
var next = this;
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: "SET client_min_messages TO 'notice'; select raise('notice', 'hello notice')"
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
var err = null;
|
|
try {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var parsedBody = JSON.parse(res.body);
|
|
assert.ok(parsedBody.hasOwnProperty('notices'), 'Missing notices from result');
|
|
assert.equal(parsedBody.notices.length, 1);
|
|
assert.equal(parsedBody.notices[0], 'hello notice');
|
|
} catch (e) { err = e; }
|
|
next(err);
|
|
});
|
|
},
|
|
function raiseWarning(err) {
|
|
assert.ifError(err);
|
|
var next = this;
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: "SET client_min_messages TO 'notice'; select raise('warning', 'hello warning')"
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
var err = null;
|
|
try {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var parsedBody = JSON.parse(res.body);
|
|
assert.ok(parsedBody.hasOwnProperty('warnings'), 'Missing warnings from result');
|
|
assert.equal(parsedBody.warnings.length, 1);
|
|
assert.equal(parsedBody.warnings[0], 'hello warning');
|
|
} catch (e) { err = e; }
|
|
next(err);
|
|
});
|
|
},
|
|
function raiseBothWarningAndNotice(err) {
|
|
assert.ifError(err);
|
|
var next = this;
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: "SET client_min_messages TO 'notice'; select raise('warning', 'hello again warning'), " +
|
|
"raise('notice', 'hello again notice');"
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
var err = null;
|
|
try {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
var parsedBody = JSON.parse(res.body);
|
|
assert.ok(parsedBody.hasOwnProperty('warnings'), 'Missing warnings from result');
|
|
assert.equal(parsedBody.warnings.length, 1);
|
|
assert.equal(parsedBody.warnings[0], 'hello again warning');
|
|
assert.ok(parsedBody.hasOwnProperty('notices'), 'Missing notices from result');
|
|
assert.equal(parsedBody.notices.length, 1);
|
|
assert.equal(parsedBody.notices[0], 'hello again notice');
|
|
} catch (e) { err = e; }
|
|
next(err);
|
|
});
|
|
},
|
|
function delRaiseFunction(err) {
|
|
var next = this;
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
q: "DROP function raise(text, text)",
|
|
api_key: '1234'
|
|
}),
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
try {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
JSON.parse(res.body);
|
|
} catch (e) { err = new Error(err + ',' + e); }
|
|
next(err);
|
|
});
|
|
},
|
|
function finish(err) {
|
|
done(err);
|
|
}
|
|
);
|
|
});
|
|
|
|
/**
|
|
* CORS
|
|
*/
|
|
it('GET /api/v1/sql with SQL parameter on SELECT only should return CORS headers ', function(done){
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4&database=cartodb_test_user_1_db',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
// Check cache headers
|
|
assert.equal(res.headers['x-cache-channel'], 'cartodb_test_user_1_db:public.untitle_table_4');
|
|
assert.equal(res.headers['cache-control'], expected_cache_control);
|
|
assert.equal(res.headers['access-control-allow-origin'], '*');
|
|
assert.equal(
|
|
res.headers['access-control-allow-headers'],
|
|
"X-Requested-With, X-Prototype-Version, X-CSRF-Token"
|
|
);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET with callback param returns wrapped result set with callback as jsonp', function(done) {
|
|
assert.response(app, {
|
|
url: '/api/v1/sql?q=SELECT%20*%20FROM%20untitle_table_4&callback=foo_jsonp',
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{ }, function(res) {
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
assert.ok(res.body.match(/foo\_jsonp\(.*\)/));
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET with callback must return 200 status error even if it is an error', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?q=DROP%20TABLE%20untitle_table_4&callback=foo_jsonp",
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},{}, function(res) {
|
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
|
var didRunJsonCallback = false;
|
|
// jshint ignore:start
|
|
function foo_jsonp(body) {
|
|
assert.deepEqual(body, {"error":["must be owner of relation untitle_table_4"]});
|
|
didRunJsonCallback = true;
|
|
}
|
|
eval(res.body);
|
|
// jshint ignore:end
|
|
assert.ok(didRunJsonCallback);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('GET with slow query exceeding statement timeout returns proper error message', function(done){
|
|
assert.response(app, {
|
|
url: "/api/v1/sql?q=select%20pg_sleep(2.1)%20as%20sleep",
|
|
headers: {host: 'vizzuality.cartodb.com'},
|
|
method: 'GET'
|
|
},
|
|
{
|
|
status: 400
|
|
},
|
|
function(res) {
|
|
assert.ok(res.body.match(/was not able to finish.*try again/i));
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('too large rows get into error log', function(done){
|
|
|
|
var dbMaxRowSize = global.settings.db_max_row_size;
|
|
global.settings.db_max_row_size = 4;
|
|
|
|
var consoleErrorFn = console.error;
|
|
var hit = false;
|
|
var consoleError;
|
|
console.error = function(what) {
|
|
hit = true;
|
|
consoleError = what;
|
|
};
|
|
assert.response(
|
|
app,
|
|
{
|
|
url: "/api/v1/sql?" + querystring.stringify({
|
|
q: "SELECT * FROM untitle_table_4"
|
|
}),
|
|
headers: {
|
|
host: 'vizzuality.cartodb.com'
|
|
},
|
|
method: 'GET'
|
|
},
|
|
{
|
|
status: 400
|
|
},
|
|
function() {
|
|
assert.equal(hit, true);
|
|
var parsedError = JSON.parse(consoleError);
|
|
assert.ok(parsedError.error.match(/^row too large.*/i), "Expecting row size limit error");
|
|
assert.equal(parsedError.username, 'vizzuality');
|
|
assert.equal(parsedError.type, 'row_size_limit_exceeded');
|
|
|
|
global.settings.db_max_row_size = dbMaxRowSize;
|
|
console.error = consoleErrorFn;
|
|
|
|
done();
|
|
}
|
|
);
|
|
});
|
|
|
|
|
|
});
|