-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ryanhamley
committed
Oct 26, 2019
1 parent
2060260
commit 1eb592a
Showing
8 changed files
with
156 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
30 changes: 30 additions & 0 deletions
30
test/integration/expression-tests/in/assert-string/test.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"expression": [ | ||
"boolean", | ||
["in", ["get", "substr"], ["string", ["get", "str"]]] | ||
], | ||
"inputs": [ | ||
[{}, {"properties": {"substr": null, "str": "helloworld"}}], | ||
[{}, {"properties": {"substr": "foo", "str": "helloworld"}}], | ||
[{}, {"properties": {"substr": "low", "str": "helloworld"}}], | ||
[{}, {"properties": {"substr": "low", "str": null}}] | ||
], | ||
"expected": { | ||
"compiled": { | ||
"result": "success", | ||
"isFeatureConstant": false, | ||
"isZoomConstant": true, | ||
"type": "boolean" | ||
}, | ||
"outputs": [ | ||
false, | ||
false, | ||
true, | ||
{"error":"Expected value to be of type string, but found null instead."} | ||
], | ||
"serialized": [ | ||
"boolean", | ||
["in", ["get", "substr"], ["string", ["get", "str"]]] | ||
] | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
test/integration/expression-tests/in/basic-array/test.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"expression": [ | ||
"boolean", | ||
["in", ["get", "i"], ["get", "arr"]] | ||
], | ||
"inputs": [ | ||
[{}, {"properties": {"i": null, "arr": [9, 8, 7]}}], | ||
[{}, {"properties": {"i": 1, "arr": [9, 8, 7]}}], | ||
[{}, {"properties": {"i": 9, "arr": [9, 8, 7]}}], | ||
[{}, {"properties": {"i": "foo", "arr": ["baz", "bar", "hello", "foo", "world"]}}], | ||
[{}, {"properties": {"i": true, "arr": ["foo", 123, null, 456, false, {}, true]}}], | ||
[{}, {"properties": {"i": 1, "arr": null}}] | ||
], | ||
"expected": { | ||
"compiled": { | ||
"result": "success", | ||
"isFeatureConstant": false, | ||
"isZoomConstant": true, | ||
"type": "boolean" | ||
}, | ||
"outputs": [ | ||
false, | ||
false, | ||
true, | ||
true, | ||
true, | ||
false | ||
], | ||
"serialized": [ | ||
"boolean", | ||
["in", ["get", "i"], ["get", "arr"]] | ||
] | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
test/integration/expression-tests/in/basic-string/test.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"expression": [ | ||
"boolean", | ||
["in", ["get", "substr"], ["get", "str"]] | ||
], | ||
"inputs": [ | ||
[{}, {"properties": {"substr": null, "str": "helloworld"}}], | ||
[{}, {"properties": {"substr": "foo", "str": "helloworld"}}], | ||
[{}, {"properties": {"substr": "low", "str": "helloworld"}}], | ||
[{}, {"properties": {"substr": true, "str": "falsetrue"}}], | ||
[{}, {"properties": {"substr": false, "str": "falsetrue"}}], | ||
[{}, {"properties": {"substr": 123, "str": "hello123world"}}], | ||
[{}, {"properties": {"substr": "low", "str": null}}] | ||
], | ||
"expected": { | ||
"compiled": { | ||
"result": "success", | ||
"isFeatureConstant": false, | ||
"isZoomConstant": true, | ||
"type": "boolean" | ||
}, | ||
"outputs": [ | ||
false, | ||
false, | ||
true, | ||
true, | ||
false, | ||
true, | ||
false | ||
], | ||
"serialized": [ | ||
"boolean", | ||
["in", ["get", "substr"], ["get", "str"]] | ||
] | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
test/integration/expression-tests/in/invalid-haystack/test.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"expression": [ | ||
"boolean", | ||
["in", ["get", "needle"], ["get", "haystack"]] | ||
], | ||
"inputs": [ | ||
[{}, {"properties": {"needle": 1, "haystack": 123}}], | ||
[{}, {"properties": {"needle": "foo", "haystack": {}}}], | ||
[{}, {"properties": {"needle": "foo", "haystack": null}}] | ||
], | ||
"expected": { | ||
"compiled": { | ||
"result": "success", | ||
"isFeatureConstant": false, | ||
"isZoomConstant": true, | ||
"type": "boolean" | ||
}, | ||
"outputs": [ | ||
{"error":"Expected second argument to be of type array or string, but found number instead."}, | ||
{"error":"Expected second argument to be of type array or string, but found object instead."}, | ||
false | ||
], | ||
"serialized": [ | ||
"boolean", | ||
["in", ["get", "needle"], ["get", "haystack"]] | ||
] | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
test/integration/expression-tests/in/invalid-needle/test.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"expression": [ | ||
"boolean", | ||
["in", ["get", "needle"], ["get", "haystack"]] | ||
], | ||
"inputs": [ | ||
[{}, {"properties": {"needle": {}, "haystack": [9, 8, 7]}}], | ||
[{}, {"properties": {"needle": {}, "haystack": "helloworld"}}] | ||
], | ||
"expected": { | ||
"compiled": { | ||
"result": "success", | ||
"isFeatureConstant": false, | ||
"isZoomConstant": true, | ||
"type": "boolean" | ||
}, | ||
"outputs": [ | ||
{"error":"Expected first argument to be of type boolean, string or number, but found object instead."}, | ||
{"error":"Expected first argument to be of type boolean, string or number, but found object instead."} | ||
], | ||
"serialized": [ | ||
"boolean", | ||
["in", ["get", "needle"], ["get", "haystack"]] | ||
] | ||
} | ||
} |