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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
import copy
import datetime
#import json
try:
import unittest2 as unittest
except ImportError:
import unittest
import os
import jsonschema
from leap.base.config import JSONLeapConfig
from leap.base import pluggableconfig
from leap.testing.basetest import BaseLeapTest
SAMPLE_CONFIG_DICT = {
'prop_one': 1,
'prop_uri': "http://example.org",
'prop_date': '2012-12-12',
}
EXPECTED_CONFIG = {
'prop_one': 1,
'prop_uri': "http://example.org",
'prop_date': datetime.datetime(2012, 12, 12)
}
sample_spec = {
'description': 'sample schema definition',
'type': 'object',
'properties': {
'prop_one': {
'type': int,
'default': 1,
'required': True
},
'prop_uri': {
'type': str,
'default': 'http://example.org',
'required': True,
'format': 'uri'
},
'prop_date': {
'type': str,
'default': '2012-12-12',
'format': 'date'
}
}
}
class SampleConfig(JSONLeapConfig):
spec = sample_spec
@property
def slug(self):
return os.path.expanduser('~/sampleconfig.json')
class TestJSONLeapConfigValidation(BaseLeapTest):
def setUp(self):
self.sampleconfig = SampleConfig()
self.sampleconfig.save()
self.sampleconfig.load()
self.config = self.sampleconfig.config
def tearDown(self):
if hasattr(self, 'testfile') and os.path.isfile(self.testfile):
os.remove(self.testfile)
# tests
def test_good_validation(self):
self.sampleconfig.validate(SAMPLE_CONFIG_DICT)
def test_broken_int(self):
_config = copy.deepcopy(SAMPLE_CONFIG_DICT)
_config['prop_one'] = '1'
with self.assertRaises(jsonschema.ValidationError):
self.sampleconfig.validate(_config)
def test_format_property(self):
# JsonSchema Validator does not check the format property.
# We should have to extend the Configuration class
blah = copy.deepcopy(SAMPLE_CONFIG_DICT)
blah['prop_uri'] = 'xxx'
with self.assertRaises(pluggableconfig.TypeCastException):
self.sampleconfig.validate(blah)
if __name__ == "__main__":
unittest.main()
|