mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-14 12:42:27 +00:00
81 lines
2.8 KiB
Python
81 lines
2.8 KiB
Python
#
|
|
# Copyright 2014 Grupo de Sistemas Inteligentes (GSI) DIT, UPM
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
from __future__ import print_function
|
|
|
|
import json
|
|
import unittest
|
|
import os
|
|
from os import path
|
|
from fnmatch import fnmatch
|
|
|
|
from jsonschema import RefResolver, Draft4Validator, ValidationError
|
|
|
|
from senpy.models import read_schema
|
|
|
|
root_path = path.join(path.dirname(path.realpath(__file__)), '..')
|
|
schema_folder = path.join(root_path, 'senpy', 'schemas')
|
|
examples_path = path.join(root_path, 'docs', 'examples')
|
|
bad_examples_path = path.join(root_path, 'docs', 'bad-examples')
|
|
|
|
|
|
class JSONSchemaTests(unittest.TestCase):
|
|
def test_definitions(self):
|
|
read_schema('definitions.json')
|
|
|
|
|
|
def do_create_(jsfile, success):
|
|
def do_expected(self):
|
|
with open(jsfile) as f:
|
|
js = json.load(f)
|
|
try:
|
|
assert '@type' in js
|
|
schema_name = js['@type']
|
|
with open(os.path.join(schema_folder, schema_name +
|
|
".json")) as file_object:
|
|
schema = json.load(file_object)
|
|
resolver = RefResolver('file://' + schema_folder + '/', schema)
|
|
validator = Draft4Validator(schema, resolver=resolver)
|
|
validator.validate(js)
|
|
except (AssertionError, ValidationError, KeyError) as ex:
|
|
if success:
|
|
raise
|
|
return
|
|
assert success
|
|
return do_expected
|
|
|
|
|
|
def add_examples(dirname, success):
|
|
for dirpath, dirnames, filenames in os.walk(dirname):
|
|
for i in filenames:
|
|
if fnmatch(i, '*.json'):
|
|
filename = path.join(dirpath, i)
|
|
test_method = do_create_(filename, success)
|
|
test_method.__name__ = 'test_file_%s_success_%s' % (filename,
|
|
success)
|
|
test_method.__doc__ = '%s should %svalidate' % (filename, ''
|
|
if success else
|
|
'not')
|
|
setattr(JSONSchemaTests, test_method.__name__, test_method)
|
|
del test_method
|
|
|
|
|
|
add_examples(examples_path, True)
|
|
add_examples(bad_examples_path, False)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|