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
|
#!/usr/bin/env python
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import schema_util
import unittest
class SchemaUtilTest(unittest.TestCase):
def testStripSchemaNamespace(self):
self.assertEquals('Bar', schema_util.StripSchemaNamespace('foo.Bar'))
self.assertEquals('Baz', schema_util.StripSchemaNamespace('Baz'))
def testPrefixSchemasWithNamespace(self):
schemas = [
{ 'namespace': 'n1',
'types': [
{
'id': 'T1',
'customBindings': 'T1',
'properties': {
'p1': {'$ref': 'T1'},
'p2': {'$ref': 'fully.qualified.T'},
}
}
],
'functions': [
{
'parameters': [
{ '$ref': 'T1' },
{ '$ref': 'fully.qualified.T' },
],
'returns': { '$ref': 'T1' }
},
],
'events': [
{
'parameters': [
{ '$ref': 'T1' },
{ '$ref': 'fully.qualified.T' },
],
},
],
},
]
schema_util.PrefixSchemasWithNamespace(schemas)
self.assertEquals('n1.T1', schemas[0]['types'][0]['id'])
self.assertEquals('n1.T1', schemas[0]['types'][0]['customBindings'])
self.assertEquals('n1.T1',
schemas[0]['types'][0]['properties']['p1']['$ref'])
self.assertEquals('fully.qualified.T',
schemas[0]['types'][0]['properties']['p2']['$ref'])
self.assertEquals('n1.T1',
schemas[0]['functions'][0]['parameters'][0]['$ref'])
self.assertEquals('fully.qualified.T',
schemas[0]['functions'][0]['parameters'][1]['$ref'])
self.assertEquals('n1.T1',
schemas[0]['functions'][0]['returns']['$ref'])
self.assertEquals('n1.T1',
schemas[0]['events'][0]['parameters'][0]['$ref'])
self.assertEquals('fully.qualified.T',
schemas[0]['events'][0]['parameters'][1]['$ref'])
if __name__ == '__main__':
unittest.main()
|