Windshaft-cartodb/test/acceptance/widgets/widgets.js

229 lines
9.0 KiB
JavaScript
Raw Normal View History

2016-02-05 20:24:39 +08:00
require('../../support/test_helper');
2016-02-05 19:35:01 +08:00
var assert = require('../../support/assert');
2016-02-05 19:59:33 +08:00
var TestClient = require('../../support/test-client');
2015-10-07 01:47:44 +08:00
2015-10-27 19:50:27 +08:00
describe('widgets', function() {
2015-10-07 01:47:44 +08:00
2015-10-27 20:18:53 +08:00
describe('filters', function() {
2015-10-28 02:08:46 +08:00
describe('category', function() {
var aggregationMapConfig = {
version: '1.5.0',
layers: [
{
type: 'mapnik',
options: {
sql: 'select * from populated_places_simple_reduced',
cartocss: '#layer { marker-fill: red; marker-width: 32; marker-allow-overlap: true; }',
cartocss_version: '2.3.0',
widgets: {
country_places_count: {
type: 'aggregation',
options: {
column: 'adm0_a3',
aggregation: 'count'
}
2015-10-27 20:18:53 +08:00
}
}
}
}
2015-10-28 02:08:46 +08:00
]
};
2015-10-27 20:18:53 +08:00
2015-10-28 02:08:46 +08:00
it("should expose an aggregation", function(done) {
2016-02-05 19:59:33 +08:00
var testClient = new TestClient(aggregationMapConfig);
testClient.getWidget('country_places_count', { own_filter: 0 }, function(err, res) {
2015-10-28 02:08:46 +08:00
if (err) {
return done(err);
}
2015-10-27 20:18:53 +08:00
2015-10-28 02:08:46 +08:00
var aggregation = JSON.parse(res.body);
2016-01-18 21:08:01 +08:00
assert.equal(aggregation.categories.length, 6);
2015-11-17 01:34:36 +08:00
assert.deepEqual(aggregation.categories[0], { value: 769, category: 'USA', agg: false });
2015-10-27 20:18:53 +08:00
2016-02-05 19:59:33 +08:00
testClient.drain(done);
2015-10-28 02:08:46 +08:00
});
});
it("should expose a filtered aggregation", function(done) {
2015-10-29 23:25:56 +08:00
var params = {
filters: {
layers: [
{country_places_count: {accept: ['CAN']}}
]
}
2015-10-28 02:08:46 +08:00
};
2016-02-05 19:59:33 +08:00
var testClient = new TestClient(aggregationMapConfig);
testClient.getWidget('country_places_count', params, function(err, res) {
2015-10-28 02:08:46 +08:00
if (err) {
return done(err);
}
var aggregation = JSON.parse(res.body);
2015-11-17 01:34:36 +08:00
assert.equal(aggregation.categories.length, 1);
assert.deepEqual(aggregation.categories[0], { value: 256, category: 'CAN', agg: false });
2015-10-28 02:08:46 +08:00
2016-02-05 19:59:33 +08:00
testClient.drain(done);
2015-10-28 02:08:46 +08:00
});
2015-10-27 20:18:53 +08:00
});
});
describe('combine widget filters', function() {
var combinedWidgetsMapConfig = {
version: '1.5.0',
layers: [
{
type: 'mapnik',
options: {
sql: 'select * from populated_places_simple_reduced',
cartocss: '#layer { marker-fill: red; marker-width: 32; marker-allow-overlap: true; }',
cartocss_version: '2.3.0',
widgets: {
country_places_count: {
type: 'aggregation',
options: {
column: 'adm0_a3',
aggregation: 'count'
}
},
country_places_histogram: {
type: 'histogram',
options: {
column: 'pop_max'
}
}
}
}
}
]
};
it("should expose a filtered aggregation", function(done) {
2015-10-29 23:25:56 +08:00
var params = {
filters: {
layers: [
{
country_places_count: { reject: ['CHN'] }
}
]
}
};
2016-02-05 19:59:33 +08:00
var testClient = new TestClient(combinedWidgetsMapConfig);
testClient.getWidget('country_places_count', params, function(err, res) {
2015-10-29 23:25:56 +08:00
if (err) {
return done(err);
}
var aggregation = JSON.parse(res.body);
// first one would be CHN if reject filter wasn't applied
2015-11-17 01:34:36 +08:00
assert.deepEqual(aggregation.categories[0], { value: 769, category: "USA", agg: false });
2015-10-29 23:25:56 +08:00
// confirm 'CHN' was filtered out (reject)
2015-11-17 01:34:36 +08:00
assert.equal(aggregation.categories.reduce(function(sum, row) {
return sum + (row.category === 'CHN' ? 1 : 0);
2015-10-29 23:25:56 +08:00
}, 0), 0);
2016-02-05 19:59:33 +08:00
testClient.drain(done);
2015-10-29 23:25:56 +08:00
});
});
it("should expose a filtered aggregation", function(done) {
var params = {
filters: {
layers: [
{
country_places_count: { reject: ['CHN'] },
country_places_histogram: { min: 7000000 }
}
]
}
};
2016-02-05 19:59:33 +08:00
var testClient = new TestClient(combinedWidgetsMapConfig);
testClient.getWidget('country_places_count', params, function(err, res) {
if (err) {
return done(err);
}
var aggregation = JSON.parse(res.body);
// first one would be CHN if reject filter wasn't applied
2015-11-17 01:34:36 +08:00
assert.deepEqual(aggregation.categories[0], { value: 4, category: 'IND', agg: false });
// confirm 'CHN' was filtered out (reject)
2015-11-17 01:34:36 +08:00
assert.equal(aggregation.categories.reduce(function(sum, row) {
return sum + (row.category === 'CHN' ? 1 : 0);
}, 0), 0);
2016-02-05 19:59:33 +08:00
testClient.drain(done);
});
});
it("should allow to filter by bounding box a filtered aggregation", function(done) {
var params = {
filters: {
layers: [
{
country_places_histogram: { min: 50000 }
}
]
},
bbox: '-20,0,45,60'
};
2016-02-05 19:59:33 +08:00
var testClient = new TestClient(combinedWidgetsMapConfig);
testClient.getWidget('country_places_count', params, function(err, res) {
if (err) {
return done(err);
}
var aggregation = JSON.parse(res.body);
// first one would be CHN if reject filter wasn't applied
2015-11-17 01:34:36 +08:00
assert.deepEqual(aggregation.categories[0], { value: 96, category: "RUS", agg: false });
// confirm 'CHN' was filtered out (reject)
2015-11-17 01:34:36 +08:00
assert.equal(aggregation.categories.reduce(function(sum, row) {
return sum + (row.category === 'CHN' ? 1 : 0);
}, 0), 0);
2016-02-05 19:59:33 +08:00
testClient.drain(done);
});
});
it("should allow to filter by bounding box a filtered aggregation, with reject", function(done) {
var params = {
filters: {
layers: [
{
country_places_count: { reject: ['RUS'] },
country_places_histogram: { min: 50000 }
}
]
},
bbox: '-20,0,45,60'
};
2016-02-05 19:59:33 +08:00
var testClient = new TestClient(combinedWidgetsMapConfig);
testClient.getWidget('country_places_count', params, function(err, res) {
if (err) {
return done(err);
}
var aggregation = JSON.parse(res.body);
// first one would be CHN if reject filter wasn't applied
2015-11-17 01:34:36 +08:00
assert.deepEqual(aggregation.categories[0], { value: 77, category: "TUR", agg: false });
// confirm 'CHN' was filtered out (reject)
2015-11-17 01:34:36 +08:00
assert.equal(aggregation.categories.reduce(function(sum, row) {
return sum + (row.category === 'CHN' ? 1 : 0);
}, 0), 0);
2016-02-05 19:59:33 +08:00
testClient.drain(done);
});
});
});
2015-10-27 20:18:53 +08:00
});
2015-10-07 01:47:44 +08:00
});