summaryrefslogtreecommitdiffstats
path: root/tools/json_schema_compiler/schema_util_test.py
blob: 1fa1803c3f6320fd0afea424f814bc75c3bc7c52 (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
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
#!/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.

from schema_util import JsFunctionNameToClassName
from schema_util import PrefixSchemasWithNamespace
from schema_util import StripSchemaNamespace
import unittest

class SchemaUtilTest(unittest.TestCase):
  def testStripSchemaNamespace(self):
    self.assertEquals('Bar', StripSchemaNamespace('foo.Bar'))
    self.assertEquals('Baz', 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' },
              ],
            },
          ],
        },
      ]
    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'])


  def testJsFunctionNameToClassName(self):
    self.assertEquals('FooBar', JsFunctionNameToClassName('foo', 'bar'))
    self.assertEquals('FooBar',
                      JsFunctionNameToClassName('experimental.foo', 'bar'))
    self.assertEquals('FooBarBaz',
                      JsFunctionNameToClassName('foo.bar', 'baz'))
    self.assertEquals('FooBarBaz',
                      JsFunctionNameToClassName('experimental.foo.bar', 'baz'))

if __name__ == '__main__':
  unittest.main()