forked from CartoDB/node-mapnik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpression.test.js
51 lines (41 loc) · 2.21 KB
/
expression.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
"use strict";
var mapnik = require('../');
var assert = require('assert');
describe('mapnik.Expression', function() {
it('should throw with invalid usage', function() {
// no 'new' keyword
assert.throws(function() { mapnik.Expression(); });
// invalid args
assert.throws(function() { new mapnik.Expression(); });
assert.throws(function() { new mapnik.Expression(1); });
assert.throws(function() { new mapnik.Expression('[asdfadsa]]'); });
});
it('should accept complex expressions', function() {
// valid expression strings
var expr = new mapnik.Expression('[ATTR]');
expr = new mapnik.Expression('[ATTR]+2');
expr = new mapnik.Expression('[ATTR]/2');
expr = new mapnik.Expression('[ATTR1]/[ATTR2]');
assert.equal(expr.toString(), '[ATTR1]/[ATTR2]');
expr = new mapnik.Expression('\'literal\'');
assert.equal(expr.toString(), "'literal'");
});
it('should support evaluation to js types', function() {
var expr = new mapnik.Expression("[attr]='value'");
var feature = new mapnik.Feature.fromJSON('{"type":"Feature","properties":{"attr":"value"},"geometry":null}');
// Test bad parameters
assert.throws(function() { expr.evaluate(); });
assert.throws(function() { expr.evaluate(null); });
assert.throws(function() { expr.evaluate(feature, null); });
assert.throws(function() { expr.evaluate(feature, {variables:null}); });
assert.equal(expr.evaluate(feature), true);
assert.equal(expr.evaluate(feature).toString(), 'true');
});
it('should support evaluation with variables', function() {
var expr = new mapnik.Expression("[integer]=@integer and [bool]=@bool and [string]=@string and [double]=@double");
var options = {variables: { 'integer': 22, 'bool': true, 'string': "string", 'double': 1.0001 } };
var feature = new mapnik.Feature.fromJSON('{"type":"Feature","properties":{"integer":22, "bool": 1, "string": "string", "double":1.0001},"geometry":null}');
assert.equal(expr.evaluate(feature, options), true);
assert.equal(expr.evaluate(feature, options).toString(), 'true');
});
});