summaryrefslogtreecommitdiffstats
path: root/config/utils/validate_schema.py
blob: 1676e15d7cf521afe4b62d46885e03c098ff678d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/python
##############################################################################
# Copyright (c) 2018 Enea AB and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
"""This module validates a PDF file against the schema."""
import argparse
import jsonschema
import yaml


PARSER = argparse.ArgumentParser()
PARSER.add_argument("--yaml", "-y", type=str, required=True)
PARSER.add_argument("--schema", "-s", type=str, required=True)
ARGS = PARSER.parse_args()
LOADER = yaml.CSafeLoader if yaml.__with_libyaml__ else yaml.SafeLoader

with open(ARGS.yaml) as _:
    _DICT = yaml.load(_, Loader=LOADER)

with open(ARGS.schema) as _:
    _SCHEMA = yaml.load(_, Loader=LOADER)


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)

# 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'
schema_version_workaround(_DICT)
if 'idf' in _DICT:
    schema_version_workaround(_DICT['idf'])

_VALIDATOR = jsonschema.Draft4Validator(_SCHEMA)
for error in _VALIDATOR.iter_errors(_DICT):
    raise RuntimeError(str(error))