summaryrefslogtreecommitdiffstats
path: root/config/utils/validate_schema.py
diff options
context:
space:
mode:
authorjulien zhang <zhang.jun3g@zte.com.cn>2018-01-23 16:03:37 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-01-23 16:03:37 +0000
commit811ff5abc205d961d45ee00c0b449c47893433ae (patch)
tree413ea2dee5f3ef9378a06d285b60008c401d6673 /config/utils/validate_schema.py
parent7d2b744815ddbaf494872a0e9b82bdcf40b85ad5 (diff)
parent9f61971b20d02c8d0fdbd8a7034f957a7fb9177a (diff)
Merge "[PDF] [SPEC] Add 'version: 1.0'"
Diffstat (limited to 'config/utils/validate_schema.py')
-rwxr-xr-xconfig/utils/validate_schema.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/config/utils/validate_schema.py b/config/utils/validate_schema.py
index cb404554..6bdc3bdb 100755
--- a/config/utils/validate_schema.py
+++ b/config/utils/validate_schema.py
@@ -22,6 +22,19 @@ with open(ARGS.yaml) as _:
with open(ARGS.schema) as _:
_SCHEMA = yaml.safe_load(_)
+# Draft 4 (latest supported by py-jsonschema) does not support value-based
+# decisions properly, see related github issue:
+# https://github.com/json-schema-org/json-schema-spec/issues/64
+# Workaround: build 'version_x.y: true' on the fly based on 'version: x.y'
+def schema_version_workaround(node):
+ """Traverse nested dictionaries and handle 'version' key where found."""
+ if 'version' in node:
+ node['version_{0}'.format(node['version'])] = True
+ for item in node.items():
+ if type(item) is dict:
+ schema_version_workaround(item)
+schema_version_workaround(_DICT)
+
_VALIDATOR = jsonschema.Draft4Validator(_SCHEMA)
for error in _VALIDATOR.iter_errors(_DICT):
raise RuntimeError(str(error))