2016-04-26 21:59:41 +08:00
|
|
|
require('../../support/test_helper');
|
2016-03-09 03:06:43 +08:00
|
|
|
|
2016-04-26 21:59:41 +08:00
|
|
|
var assert = require('../../support/assert');
|
|
|
|
var TestClient = require('../../support/test-client');
|
2016-03-09 03:06:43 +08:00
|
|
|
|
2016-05-17 20:54:44 +08:00
|
|
|
function makeMapconfig(sql, cartocss) {
|
2016-03-09 03:06:43 +08:00
|
|
|
return {
|
|
|
|
"version": "1.4.0",
|
|
|
|
"layers": [
|
|
|
|
{
|
|
|
|
"type": 'mapnik',
|
|
|
|
"options": {
|
|
|
|
"cartocss_version": '2.3.0',
|
2016-05-17 20:54:44 +08:00
|
|
|
"sql": sql,
|
2016-03-09 03:06:43 +08:00
|
|
|
"cartocss": cartocss
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-04-26 21:59:41 +08:00
|
|
|
describe('turbo-carto regressions', function() {
|
2016-03-09 18:48:07 +08:00
|
|
|
|
|
|
|
afterEach(function (done) {
|
2016-05-17 20:54:44 +08:00
|
|
|
if (this.testClient) {
|
|
|
|
this.testClient.drain(done);
|
|
|
|
}
|
2016-03-09 18:48:07 +08:00
|
|
|
});
|
2016-03-09 03:06:43 +08:00
|
|
|
|
|
|
|
it('should accept // comments', function(done) {
|
2016-05-17 20:54:44 +08:00
|
|
|
var cartocss = [
|
|
|
|
"/** simple visualization */",
|
|
|
|
"",
|
|
|
|
"Map {",
|
|
|
|
" buffer-size: 256;",
|
|
|
|
"}",
|
|
|
|
"",
|
|
|
|
"#county_points_with_population{",
|
|
|
|
" marker-fill-opacity: 0.1;",
|
|
|
|
" marker-line-color:#FFFFFF;//#CF1C90;",
|
|
|
|
" marker-line-width: 0;",
|
|
|
|
" marker-line-opacity: 0.3;",
|
|
|
|
" marker-placement: point;",
|
|
|
|
" marker-type: ellipse;",
|
|
|
|
" //marker-comp-op: overlay;",
|
|
|
|
" marker-width: [cartodb_id];",
|
|
|
|
" [zoom=5]{marker-width: [cartodb_id]*2;}",
|
|
|
|
" [zoom=6]{marker-width: [cartodb_id]*4;}",
|
|
|
|
" marker-fill: #000000;",
|
|
|
|
" marker-allow-overlap: true;",
|
|
|
|
" ",
|
|
|
|
"",
|
|
|
|
"}"
|
|
|
|
].join('\n');
|
|
|
|
|
|
|
|
this.testClient = new TestClient(makeMapconfig('SELECT * FROM populated_places_simple_reduced', cartocss));
|
|
|
|
this.testClient.getLayergroup(function(err, layergroup) {
|
|
|
|
assert.ok(!err, err);
|
|
|
|
|
|
|
|
assert.ok(layergroup.hasOwnProperty('layergroupid'));
|
|
|
|
assert.ok(!layergroup.hasOwnProperty('errors'));
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work with mapnik substitution tokens', function(done) {
|
|
|
|
var cartocss = [
|
|
|
|
"#layer {",
|
|
|
|
" line-width: 2;",
|
|
|
|
" line-color: #3B3B58;",
|
|
|
|
" line-opacity: 1;",
|
|
|
|
" polygon-opacity: 0.7;",
|
|
|
|
" polygon-fill: ramp([points_count], (#E5F5F9,#99D8C9,#2CA25F))",
|
|
|
|
"}"
|
|
|
|
].join('\n');
|
|
|
|
|
|
|
|
var sql = [
|
|
|
|
'WITH hgrid AS (',
|
|
|
|
' SELECT CDB_HexagonGrid(',
|
|
|
|
' ST_Expand(!bbox!, greatest(!pixel_width!,!pixel_height!) * 100),',
|
|
|
|
' greatest(!pixel_width!,!pixel_height!) * 100',
|
|
|
|
' ) as cell',
|
|
|
|
')',
|
|
|
|
'SELECT',
|
|
|
|
' hgrid.cell as the_geom_webmercator,',
|
|
|
|
' count(1) as points_count,',
|
|
|
|
' count(1)/power(100 * CDB_XYZ_Resolution(CDB_ZoomFromScale(!scale_denominator!)), 2) as points_density,',
|
|
|
|
' 1 as cartodb_id',
|
|
|
|
'FROM hgrid, (SELECT * FROM populated_places_simple_reduced) i',
|
|
|
|
'where ST_Intersects(i.the_geom_webmercator, hgrid.cell)',
|
|
|
|
'GROUP BY hgrid.cell'
|
|
|
|
].join('\n');
|
|
|
|
|
|
|
|
this.testClient = new TestClient(makeMapconfig(sql, cartocss));
|
2016-05-13 06:49:09 +08:00
|
|
|
this.testClient.getLayergroup(function(err, layergroup) {
|
2016-03-09 03:06:43 +08:00
|
|
|
assert.ok(!err, err);
|
2016-05-13 06:49:09 +08:00
|
|
|
|
|
|
|
assert.ok(layergroup.hasOwnProperty('layergroupid'));
|
|
|
|
assert.ok(!layergroup.hasOwnProperty('errors'));
|
|
|
|
|
2016-03-09 03:06:43 +08:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|