summaryrefslogtreecommitdiff
path: root/platform/node/test/expression.test.js
blob: aac039ce18e71783eda3cd88db356a553d4c643f (plain)
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
'use strict';

var suite = require('../../../mapbox-gl-js/test/integration').expression;
var mbgl = require('../index');
var ignores = require('./ignores.json');

var tests;

if (process.argv[1] === __filename && process.argv.length > 2) {
    tests = process.argv.slice(2);
}

function getExpectedType(spec) {
    if (spec.type === 'array') {
        const itemType = getExpectedType({ type: spec.value });
        const array = {
            kind: 'array',
            itemType: itemType || { kind: 'value' },
        };
        if (typeof spec.length === 'number') {
            array.N = spec.length;
        }
        return array;
    }

    if (spec.type === 'enum') {
        return { kind: 'string' };
    }

    return typeof spec.type === 'string' ? {kind: spec.type} : null;
}

suite.run('native', {ignores: ignores, tests: tests}, (fixture) => {
    const compiled = {};
    const result = {
        compiled
    };

    const spec = fixture.propertySpec || {};
    const expression = mbgl.Expression.parse(fixture.expression, getExpectedType(spec));

    if (expression instanceof mbgl.Expression) {
        compiled.result = 'success';
        compiled.isFeatureConstant = expression.isFeatureConstant();
        compiled.isZoomConstant = expression.isZoomConstant();
        compiled.type = expression.getType();

        const evaluate = fixture.inputs || [];
        const evaluateResults = [];
        for (const input of evaluate) {
            const feature = Object.assign({
                type: 'Feature',
                properties: {},
                geometry: { type: 'Point', coordinates: [0, 0] }
            }, input[1])

            const output = expression.evaluate(input[0], feature);
            evaluateResults.push(output);
        }

        if (fixture.inputs) {
            result.outputs = evaluateResults;
        }
    } else {
        compiled.result = 'error';
        compiled.errors = expression;
    }

    return result;
});