-
-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from epoberezkin/const
draft-06: const validation
- Loading branch information
Showing
1 changed file
with
65 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
[ | ||
{ | ||
"description": "const validation", | ||
"schema": {"const": 2}, | ||
"tests": [ | ||
{ | ||
"description": "same value is valid", | ||
"data": 2, | ||
"valid": true | ||
}, | ||
{ | ||
"description": "another value is invalid", | ||
"data": 5, | ||
"valid": false | ||
}, | ||
{ | ||
"description": "another type is invalid", | ||
"data": "a", | ||
"valid": false | ||
} | ||
] | ||
}, | ||
{ | ||
"description": "const with object", | ||
"schema": {"const": {"foo": "bar", "baz": "bax"}}, | ||
"tests": [ | ||
{ | ||
"description": "same object is valid", | ||
"data": {"foo": "bar", "baz": "bax"}, | ||
"valid": true | ||
}, | ||
{ | ||
"description": "same object with different property order is valid", | ||
"data": {"baz": "bax", "foo": "bar"}, | ||
"valid": true | ||
}, | ||
{ | ||
"description": "another object is invalid", | ||
"data": {"foo": "bar"}, | ||
"valid": false | ||
}, | ||
{ | ||
"description": "another type is invalid", | ||
"data": [1, 2], | ||
"valid": false | ||
} | ||
] | ||
}, | ||
{ | ||
"description": "const with null", | ||
"schema": {"const": null}, | ||
"tests": [ | ||
{ | ||
"description": "null is valid", | ||
"data": null, | ||
"valid": true | ||
}, | ||
{ | ||
"description": "not null is invalid", | ||
"data": 0, | ||
"valid": false | ||
} | ||
] | ||
} | ||
] |