forked from NieuwlandGeo/SLDReader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patholEvaluator.test.js
More file actions
286 lines (258 loc) · 7.42 KB
/
Copy patholEvaluator.test.js
File metadata and controls
286 lines (258 loc) · 7.42 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/* global describe it expect before beforeEach after */
import OLFormatGeoJSON from 'ol/format/GeoJSON';
import OLLineString from 'ol/geom/LineString';
import evaluate from '../src/olEvaluator';
import addBuiltInFunctions from '../src/functions/builtins';
import { clearFunctionCache } from '../src/functions';
import { Reader } from '../src';
const geojson = {
type: 'Feature',
geometry: {
type: 'Point',
coordinates: [175134, 442000],
},
properties: {
angle: 42,
size: 20,
title: 'Nieuwland',
},
};
const fmtGeoJSON = new OLFormatGeoJSON();
describe('Expression evaluation', () => {
const getProperty = (feat, prop) => feat.get(prop);
let feature;
beforeEach(() => {
feature = fmtGeoJSON.readFeature(geojson);
});
it('Constant value', () => {
const expression = 42;
expect(evaluate(expression, feature, getProperty)).to.equal(42);
});
it('PropertyName', () => {
const expression = {
type: 'expression',
children: [
{
type: 'propertyname',
value: 'size',
},
],
};
expect(evaluate(expression, feature, getProperty)).to.equal(20);
});
it('Compound filter expression', () => {
const expression = {
type: 'expression',
typeHint: 'number',
children: [
{
type: 'literal',
value: '-',
},
{
type: 'propertyname',
value: 'angle',
},
],
};
expect(evaluate(expression, feature, getProperty)).to.equal(-42);
});
it('Custom property getter', () => {
const customGetProperty = (feat, prop) => {
if (prop === 'size') {
return 100;
}
return feat.get(prop);
};
const expression = {
type: 'expression',
children: [
{
type: 'propertyname',
value: 'size',
},
],
};
expect(evaluate(expression, feature, customGetProperty)).to.equal(100);
});
describe('Default values', () => {
describe('Javascript values', () => {
it('Use default value when expression is null', () => {
expect(evaluate(null, null, null, 42)).to.equal(42);
});
it('Use default value when expression is undefined', () => {
expect(evaluate(undefined, null, null, 42)).to.equal(42);
});
it('Do not use default value when expression is zero', () => {
expect(evaluate(0, null, null, 42)).to.equal(0);
});
it('Use default value when expression is empty string', () => {
expect(evaluate('', null, null, '42')).to.equal('42');
});
});
describe('Property lookups', () => {
function readValueProperty(testFeature, defaultValue, typeHint) {
const testGetter = (feat, propertyName) =>
feat.properties[propertyName];
const testExpression = {
type: 'propertyname',
typeHint,
value: 'value',
};
return evaluate(testExpression, testFeature, testGetter, defaultValue);
}
it('Use default value when feature is null', () => {
expect(readValueProperty(null, 42, 'number')).to.equal(42);
});
it('Use default value when feature property equals null', () => {
expect(
readValueProperty(
{
type: 'Feature',
properties: { value: null },
},
42,
'number'
)
).to.equal(42);
});
it('Use default value when feature property is missing', () => {
expect(
readValueProperty(
{
type: 'Feature',
properties: {}, // no value property present
},
42,
'number'
)
).to.equal(42);
});
it('Do not use default value when feature property equals zero', () => {
expect(
readValueProperty(
{
type: 'Feature',
properties: { value: 0 },
},
42,
'number'
)
).to.equal(0);
});
it('When typeHint is number, use default value when feature property is an empty string', () => {
expect(
readValueProperty(
{
type: 'Feature',
properties: { value: '' },
},
42,
'number'
)
).to.equal(42);
});
it('When typeHint is number, use default value when feature property is an invalid numeric string', () => {
expect(
readValueProperty(
{
type: 'Feature',
properties: { value: '3,50€' },
},
42,
'number'
)
).to.equal(42);
});
it('When typeHint is string, use default value when feature property is an empty string', () => {
expect(
readValueProperty(
{
type: 'Feature',
properties: { value: '' },
},
'DEFAULT',
'string'
)
).to.equal('DEFAULT');
});
});
});
describe('Function evaluation', () => {
before(() => {
addBuiltInFunctions();
});
after(() => {
clearFunctionCache();
});
it('Evaluate function expression', () => {
const filterXml = `<StyledLayerDescriptor xmlns="http://www.opengis.net/ogc"><Filter>
<PropertyIsEqualTo>
<Function name="strToLowerCase">
<PropertyName>title</PropertyName>
</Function>
<Literal>nieuwland</Literal>
</PropertyIsEqualTo>
</Filter></StyledLayerDescriptor>`;
const { filter } = Reader(filterXml);
const functionExpression = filter.expression1;
const result = evaluate(functionExpression, feature, getProperty);
expect(result).to.equal('nieuwland');
});
});
describe('Geometry-valued expressions', () => {
let lineFeature;
before(() => {
const lineGeoJSON = {
type: 'Feature',
geometry: {
type: 'LineString',
coordinates: [
[0, 0],
[1, 1],
],
},
properties: {},
};
lineFeature = fmtGeoJSON.readFeature(lineGeoJSON);
});
it('Propertyname expression using geometry field name returns OpenLayers geometry', () => {
// Note, 'geometry' is the default geometry field name used by OpenLayers.
const expression = {
type: 'propertyname',
value: 'geometry',
};
const result = evaluate(expression, lineFeature, getProperty);
expect(result instanceof OLLineString).to.be.true;
expect(result.getCoordinates()).to.deep.equal([
[0, 0],
[1, 1],
]);
});
});
it('Mathematical operator expressions', () => {
// (36 / (8 - 2)) * (4 + 3)
const filterXml = `<StyledLayerDescriptor xmlns="http://www.opengis.net/ogc"><Filter>
<PropertyIsEqualTo>
<Mul>
<Div>
<Literal>36</Literal>
<Sub>
<Literal>8</Literal>
<Literal>2</Literal>
</Sub>
</Div>
<Add>
<Literal>4</Literal>
<Literal>3</Literal>
</Add>
</Mul>
<Literal>42</Literal>
</PropertyIsEqualTo>
</Filter></StyledLayerDescriptor>`;
const { filter } = Reader(filterXml);
const mathExpression = filter.expression1;
const result = evaluate(mathExpression, null, null);
expect(result).to.equal(42);
});
});