CDB-3780 Handle error at query end. Adds regression test.
This commit is contained in:
parent
8a4a08fb54
commit
15a3f4cc88
@ -53,6 +53,10 @@ GeoJsonFormat.prototype.handleQueryRow = function(row) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
GeoJsonFormat.prototype.handleQueryEnd = function(result) {
|
GeoJsonFormat.prototype.handleQueryEnd = function(result) {
|
||||||
|
if (this.error) {
|
||||||
|
this.callback(this.error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
this.buffer += ']}'; // end of features
|
this.buffer += ']}'; // end of features
|
||||||
if (this.opts.callback) {
|
if (this.opts.callback) {
|
||||||
this.buffer += ')';
|
this.buffer += ')';
|
||||||
|
@ -182,4 +182,22 @@ test('null geometries in geojson output', function(done){
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('stream response handle errors', function(done) {
|
||||||
|
assert.response(app, {
|
||||||
|
url: '/api/v1/sql?' + querystring.stringify({
|
||||||
|
q: "SELECTT 1 as gid, null::geometry as the_geom ",
|
||||||
|
format: 'geojson'
|
||||||
|
}),
|
||||||
|
headers: {host: 'vizzuality.cartodb.com'},
|
||||||
|
method: 'GET'
|
||||||
|
},{ }, function(res){
|
||||||
|
console.log(res);
|
||||||
|
assert.equal(res.statusCode, 400, res.body);
|
||||||
|
var geoJson = JSON.parse(res.body);
|
||||||
|
var expectedError = {"error":["syntax error at or near \"1\""]}
|
||||||
|
assert.deepEqual(geoJson, expectedError);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user