summaryrefslogtreecommitdiff
path: root/json/tests/draft-next/pattern.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft-next/pattern.json')
-rw-r--r--json/tests/draft-next/pattern.json59
1 files changed, 59 insertions, 0 deletions
diff --git a/json/tests/draft-next/pattern.json b/json/tests/draft-next/pattern.json
new file mode 100644
index 0000000..92db0f9
--- /dev/null
+++ b/json/tests/draft-next/pattern.json
@@ -0,0 +1,59 @@
+[
+ {
+ "description": "pattern validation",
+ "schema": {"pattern": "^a*$"},
+ "tests": [
+ {
+ "description": "a matching pattern is valid",
+ "data": "aaa",
+ "valid": true
+ },
+ {
+ "description": "a non-matching pattern is invalid",
+ "data": "abc",
+ "valid": false
+ },
+ {
+ "description": "ignores booleans",
+ "data": true,
+ "valid": true
+ },
+ {
+ "description": "ignores integers",
+ "data": 123,
+ "valid": true
+ },
+ {
+ "description": "ignores floats",
+ "data": 1.0,
+ "valid": true
+ },
+ {
+ "description": "ignores objects",
+ "data": {},
+ "valid": true
+ },
+ {
+ "description": "ignores arrays",
+ "data": [],
+ "valid": true
+ },
+ {
+ "description": "ignores null",
+ "data": null,
+ "valid": true
+ }
+ ]
+ },
+ {
+ "description": "pattern is not anchored",
+ "schema": {"pattern": "a+"},
+ "tests": [
+ {
+ "description": "matches a substring",
+ "data": "xxaayy",
+ "valid": true
+ }
+ ]
+ }
+]