aboutsummaryrefslogtreecommitdiff
path: root/tests/schema/refRemote.json.disabled
diff options
context:
space:
mode:
Diffstat (limited to 'tests/schema/refRemote.json.disabled')
-rw-r--r--tests/schema/refRemote.json.disabled76
1 files changed, 76 insertions, 0 deletions
diff --git a/tests/schema/refRemote.json.disabled b/tests/schema/refRemote.json.disabled
new file mode 100644
index 000000000000..067c666b0ec8
--- /dev/null
+++ b/tests/schema/refRemote.json.disabled
@@ -0,0 +1,76 @@
+[
+ {
+ "description": "remote ref",
+ "schema": {"$ref": "http://highsecure.ru/ucl-schema/remotes/integer.json"},
+ "tests": [
+ {
+ "description": "remote ref valid",
+ "data": 1,
+ "valid": true
+ },
+ {
+ "description": "remote ref invalid",
+ "data": "a",
+ "valid": false
+ }
+ ]
+ },
+ {
+ "description": "fragment within remote ref",
+ "schema": {"$ref": "http://highsecure.ru/ucl-schema/remotes/subSchemas.json#/integer"},
+ "tests": [
+ {
+ "description": "remote fragment valid",
+ "data": 1,
+ "valid": true
+ },
+ {
+ "description": "remote fragment invalid",
+ "data": "a",
+ "valid": false
+ }
+ ]
+ },
+ {
+ "description": "ref within remote ref",
+ "schema": {
+ "$ref": "http://highsecure.ru/ucl-schema/remotes/subSchemas.json#/refToInteger"
+ },
+ "tests": [
+ {
+ "description": "ref within ref valid",
+ "data": 1,
+ "valid": true
+ },
+ {
+ "description": "ref within ref invalid",
+ "data": "a",
+ "valid": false
+ }
+ ]
+ }
+/*
+ {
+ "description": "change resolution scope",
+ "schema": {
+ "id": "http://highsecure.ru/ucl-schema/remotes/",
+ "items": {
+ "id": "folder/",
+ "items": {"$ref": "folderInteger.json"}
+ }
+ },
+ "tests": [
+ {
+ "description": "changed scope ref valid",
+ "data": [[1]],
+ "valid": true
+ },
+ {
+ "description": "changed scope ref invalid",
+ "data": [["a"]],
+ "valid": false
+ }
+ ]
+ }
+*/
+]