61765d20e1
This will try to fallback on postcss errors so it still targets carto parser in those cases. Closes #434
92 lines
3.0 KiB
JavaScript
92 lines
3.0 KiB
JavaScript
require('../../support/test_helper');
|
|
|
|
var assert = require('../../support/assert');
|
|
var TestClient = require('../../support/test-client');
|
|
|
|
function makeMapconfig(markerWidth, markerFill) {
|
|
return {
|
|
"version": "1.4.0",
|
|
"layers": [
|
|
{
|
|
"type": 'mapnik',
|
|
"options": {
|
|
"cartocss_version": '2.3.0',
|
|
"sql": 'SELECT * FROM populated_places_simple_reduced',
|
|
"cartocss": createCartocss(markerWidth, markerFill)
|
|
}
|
|
}
|
|
]
|
|
};
|
|
}
|
|
|
|
function createCartocss(markerWidth, markerFill) {
|
|
return [
|
|
"#populated_places_simple_reduced {",
|
|
" marker-fill-opacity: 0.9;",
|
|
" marker-line-color: #FFF;",
|
|
" marker-line-width: 1;",
|
|
" marker-line-opacity: 1;",
|
|
" marker-placement: point;",
|
|
" marker-type: ellipse;",
|
|
" marker-allow-overlap: true;",
|
|
" marker-width: " + (markerWidth || '10') + ";",
|
|
" marker-fill: " + (markerFill || 'red') + ";",
|
|
"}"
|
|
].join('\n');
|
|
}
|
|
|
|
var ERROR_RESPONSE = {
|
|
status: 400,
|
|
headers: {
|
|
'Content-Type': 'application/json; charset=utf-8'
|
|
}
|
|
};
|
|
|
|
describe('turbo-carto error cases', function() {
|
|
afterEach(function (done) {
|
|
if (this.testClient) {
|
|
this.testClient.drain(done);
|
|
}
|
|
});
|
|
|
|
it('should return invalid number of ramp error', function(done) {
|
|
this.testClient = new TestClient(makeMapconfig('ramp([pop_max], (8,24,96), (8,24,96,128))'));
|
|
this.testClient.getLayergroup(ERROR_RESPONSE, function(err, layergroup) {
|
|
assert.ok(!err, err);
|
|
|
|
assert.ok(layergroup.hasOwnProperty('errors'));
|
|
assert.equal(layergroup.errors.length, 1);
|
|
assert.ok(layergroup.errors[0].match(/invalid\sramp\slength/i));
|
|
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should return invalid column from datasource', function(done) {
|
|
this.testClient = new TestClient(makeMapconfig(null, 'ramp([wadus_column], (red, green, blue))'));
|
|
this.testClient.getLayergroup(ERROR_RESPONSE, function(err, layergroup) {
|
|
assert.ok(!err, err);
|
|
|
|
assert.ok(layergroup.hasOwnProperty('errors'));
|
|
assert.equal(layergroup.errors.length, 1);
|
|
assert.ok(layergroup.errors[0].match(/datasource/));
|
|
assert.ok(layergroup.errors[0].match(/wadus_column/));
|
|
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should fail by falling back to normal carto parser', function(done) {
|
|
this.testClient = new TestClient(makeMapconfig('ramp([price], (8,24,96), (8,24,96));//(red, green, blue))'));
|
|
this.testClient.getLayergroup(ERROR_RESPONSE, function(err, layergroup) {
|
|
assert.ok(!err, err);
|
|
|
|
assert.ok(layergroup.hasOwnProperty('errors'));
|
|
assert.equal(layergroup.errors.length, 1);
|
|
assert.ok(layergroup.errors[0].match(/invalid\scode/i));
|
|
|
|
done();
|
|
});
|
|
});
|
|
});
|