CartoDB-SQL-API/test/acceptance/error-handler.js

34 lines
889 B
JavaScript
Raw Normal View History

2018-10-24 21:42:33 +08:00
'use strict';
2017-12-02 01:11:32 +08:00
var server = require('../../app/server')();
var assert = require('../support/assert');
2018-10-24 21:42:33 +08:00
describe('error handler', function () {
2017-12-02 01:11:32 +08:00
it('should returns a errors header', function (done) {
const errorHeader = {
detail: undefined,
hint: undefined,
context: undefined,
statusCode: 400,
message: 'You must indicate a sql query'
};
assert.response(server, {
url: '/api/v1/sql',
headers: {host: 'vizzuality.cartodb.com'},
method: 'GET'
},
{
status: 400,
headers: {
'Content-Type': 'application/json; charset=utf-8',
'X-SQLAPI-Errors': JSON.stringify(errorHeader)
}
2018-10-24 21:42:33 +08:00
},
2017-12-02 01:11:32 +08:00
function(err){
assert.ifError(err);
done();
});
});
2017-12-13 00:16:40 +08:00
});