Skip to content
Snippets Groups Projects
Commit e85874ac authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-860: fixed tests

parent d288ddcb
No related branches found
No related tags found
1 merge request!828TMSS-860
......@@ -438,8 +438,8 @@ def validate_json_against_schema(json_doc: typing.Union[str,dict], schema: typin
if '$schema' not in json_doc:
raise jsonschema.exceptions.ValidationError("The json document does not contain a $schema property\n%s" % (schema,))
if json_doc['$schema'].rstrip('/ref_resolved').rstrip('#').rstrip('/') != schema.get('$id','').rstrip('#').rstrip('/'):
raise jsonschema.exceptions.ValidationError("The json document with $schema='%s' cannot be validated by schema with $id='%s'\n%s" % (json_doc['$schema'], schema.get('$id')))
if json_doc['$schema'].rstrip('/ref_resolved').rstrip('#').rstrip('/') != schema.get('$id','').rstrip('/ref_resolved').rstrip('#').rstrip('/'):
raise jsonschema.exceptions.ValidationError("The json document with $schema='%s' cannot be validated by schema with $id='%s'" % (json_doc['$schema'], schema.get('$id')))
# resolve $refs to fill in defaults for those, too
schema = resolved_remote_refs(schema, cache=cache, max_cache_age=max_cache_age)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment