Index: tools/json_schema_compiler/schema_util_test.py |
diff --git a/tools/json_schema_compiler/schema_util_test.py b/tools/json_schema_compiler/schema_util_test.py |
index 1fa1803c3f6320fd0afea424f814bc75c3bc7c52..4db88f1922f88f01a458881883544586c70a905d 100755 |
--- a/tools/json_schema_compiler/schema_util_test.py |
+++ b/tools/json_schema_compiler/schema_util_test.py |
@@ -4,7 +4,6 @@ |
# found in the LICENSE file. |
from schema_util import JsFunctionNameToClassName |
-from schema_util import PrefixSchemasWithNamespace |
from schema_util import StripSchemaNamespace |
import unittest |
@@ -13,59 +12,6 @@ class SchemaUtilTest(unittest.TestCase): |
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', |