CartoDB-SQL-API/test/acceptance/app.auth.test.js

61 lines
2.2 KiB
JavaScript
Raw Normal View History

2011-12-27 02:16:41 +08:00
require('../helper');
2015-05-13 17:21:44 +08:00
var app = require(global.settings.app_root + '/app/controllers/app')();
var assert = require('../support/assert');
2011-12-27 02:16:41 +08:00
2015-05-13 17:21:44 +08:00
describe('app.auth', function() {
2012-07-13 04:54:12 +08:00
var scenarios = [
{
desc: 'valid api key should allow insert in protected tables',
url: "/api/v1/sql?api_key=1234&q=INSERT%20INTO%20private_table%20(name)%20VALUES%20('app_auth_test1')",
statusCode: 200
2015-05-13 17:21:44 +08:00
},
{
desc: 'valid api key should allow delete in protected tables',
url: "/api/v1/sql?api_key=1234&q=DELETE%20FROM%20private_table%20WHERE%20name%3d'app_auth_test1'",
statusCode: 200
2015-05-13 17:21:44 +08:00
},
{
desc: 'invalid api key should NOT allow insert in protected tables',
url: "/api/v1/sql?api_key=RAMBO&q=INSERT%20INTO%20private_table%20(name)%20VALUES%20('RAMBO')",
statusCode: 401
2015-05-13 17:21:44 +08:00
},
{
desc: 'invalid api key (old redis location) should NOT allow insert in protected tables',
url: "/api/v1/sql?api_key=1235&q=INSERT%20INTO%20private_table%20(name)%20VALUES%20('RAMBO')",
statusCode: 401
2015-05-13 17:21:44 +08:00
},
{
desc: 'no api key should NOT allow insert in protected tables',
url: "/api/v1/sql?q=INSERT%20INTO%20private_table%20(name)%20VALUES%20('RAMBO')",
statusCode: 401
2015-05-13 17:21:44 +08:00
},
{
desc: 'no api key should NOT allow insert in public tables',
url: "/api/v1/sql?q=INSERT%20INTO%20untitle_table_4%20(name)%20VALUES%20('RAMBO')",
statusCode: 401
}
];
scenarios.forEach(function(scenario) {
2015-05-13 17:21:44 +08:00
it(scenario.desc, function(done) {
assert.response(app, {
// view prepare_db.sh to find public table name and structure
url: scenario.url,
headers: {
host: 'vizzuality.cartodb.com'
},
method: 'GET'
},
{},
function(res) {
assert.equal(res.statusCode, scenario.statusCode, res.statusCode + ': ' + res.body);
done();
}
);
});
});
2012-07-13 04:54:12 +08:00
});