mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
2c61b49b57
* add json check before compile * do more checking on effects * add effects checking * better effects checking. * integrate schema check for default config reduce size of default configs
22 lines
517 B
Python
22 lines
517 B
Python
#!/usr/bin/env python
|
|
import json, sys, glob
|
|
from os import path
|
|
from jsonschema import Draft3Validator
|
|
|
|
print('-- validate json file')
|
|
|
|
jsonFileName = sys.argv[1]
|
|
schemaFileName = sys.argv[2]
|
|
|
|
try:
|
|
with open(schemaFileName) as schemaFile:
|
|
with open(jsonFileName) as jsonFile:
|
|
j = json.load(jsonFile)
|
|
validator = Draft3Validator(json.load(schemaFile))
|
|
validator.validate(j)
|
|
except Exception as e:
|
|
print('validation error: '+jsonFileName + ' '+schemaFileName+' ('+str(e)+')')
|
|
sys.exit(1)
|
|
|
|
sys.exit(0)
|