diff options
author | calamity@chromium.org <calamity@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-27 07:29:48 +0000 |
---|---|---|
committer | calamity@chromium.org <calamity@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-27 07:29:48 +0000 |
commit | 15f08dde26dbb02c8e4441492ab967cb48fcd4e4 (patch) | |
tree | 28f8e2f7e038575d9ac47873829e4792fc1ebb38 /tools/json_schema_compiler/code_test.py | |
parent | 195a0a026bc7a3916705fdf9a2a8c029d1cce9f2 (diff) | |
download | chromium_src-15f08dde26dbb02c8e4441492ab967cb48fcd4e4.zip chromium_src-15f08dde26dbb02c8e4441492ab967cb48fcd4e4.tar.gz chromium_src-15f08dde26dbb02c8e4441492ab967cb48fcd4e4.tar.bz2 |
Code generation for extensions api
This is a preliminary code review for a code generator. The tool's purpose is to generate the tedious serialization code that needs to be written when defining a new extensions api. It generates from the json files in chrome/common/extensions/api.
As an example usage, chrome/browser/extensions/extension_permissions_api.cc has been changed to use a class generated from permissions.json.
The tool has been integrated into the build system and generates compiling and working code (for permissions.json at least)
BUG=
TEST=
Review URL: http://codereview.chromium.org/9114036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119405 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/json_schema_compiler/code_test.py')
-rw-r--r-- | tools/json_schema_compiler/code_test.py | 152 |
1 files changed, 152 insertions, 0 deletions
diff --git a/tools/json_schema_compiler/code_test.py b/tools/json_schema_compiler/code_test.py new file mode 100644 index 0000000..8431d95 --- /dev/null +++ b/tools/json_schema_compiler/code_test.py @@ -0,0 +1,152 @@ +# 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 code import Code +import unittest + +class CodeTest(unittest.TestCase): + def testAppend(self): + c = Code() + c.Append('line') + self.assertEquals('line', c.Render()) + + def testBlock(self): + c = Code() + (c.Append('line') + .Sblock('sblock') + .Append('inner') + .Append('moreinner') + .Sblock('moresblock') + .Append('inner') + .Eblock('out') + .Append('inner') + .Eblock('out') + ) + self.assertEquals( + 'line\n' + 'sblock\n' + ' inner\n' + ' moreinner\n' + ' moresblock\n' + ' inner\n' + ' out\n' + ' inner\n' + 'out', + c.Render()) + + def testConcat(self): + b = Code() + (b.Sblock('2') + .Append('2') + .Eblock('2') + ) + c = Code() + (c.Sblock('1') + .Concat(b) + .Append('1') + .Eblock('1') + ) + self.assertEquals( + '1\n' + ' 2\n' + ' 2\n' + ' 2\n' + ' 1\n' + '1', + c.Render()) + d = Code() + a = Code() + a.Concat(d) + self.assertEquals('', a.Render()) + a.Concat(c) + self.assertEquals( + '1\n' + ' 2\n' + ' 2\n' + ' 2\n' + ' 1\n' + '1', + a.Render()) + + def testConcatErrors(self): + c = Code() + d = Code() + d.Append('%s') + self.assertRaises(TypeError, c.Concat, d) + d = Code() + d.Append('%(classname)s') + self.assertRaises(TypeError, c.Concat, d) + d = 'line of code' + self.assertRaises(TypeError, c.Concat, d) + + def testSubstitute(self): + c = Code() + c.Append('%(var1)s %(var2)s %(var1)s') + c.Substitute({'var1': 'one', 'var2': 'two'}) + self.assertEquals('one two one', c.Render()) + c.Append('%(var1)s %(var2)s %(var3)s') + c.Append('%(var2)s %(var1)s %(var3)s') + c.Substitute({'var1': 'one', 'var2': 'two', 'var3': 'three'}) + self.assertEquals( + 'one two one\n' + 'one two three\n' + 'two one three', + c.Render()) + + def testSubstituteErrors(self): + # No unnamed placeholders allowed when substitute is run + c = Code() + c.Append('%s %s') + self.assertRaises(TypeError, c.Substitute, ('var1', 'one')) + c = Code() + c.Append('%s %(var1)s') + self.assertRaises(TypeError, c.Substitute, {'var1': 'one'}) + c = Code() + c.Append('%s %(var1)s') + self.assertRaises(TypeError, c.Substitute, {'var1': 'one'}) + c = Code() + c.Append('%(var1)s') + self.assertRaises(KeyError, c.Substitute, {'clearlynotvar1': 'one'}) + + def testIsEmpty(self): + c = Code() + self.assertTrue(c.IsEmpty()) + c.Append('asdf') + self.assertFalse(c.IsEmpty()) + + def testComment(self): + long_comment = ('This comment is eighty nine characters in longness, ' + 'that is, to use another word, length') + c = Code() + c.Comment(long_comment) + self.assertEquals( + '// This comment is eighty nine characters ' + 'in longness, that is, to use another\n' + '// word, length', + c.Render()) + c = Code() + c.Sblock('sblock') + c.Comment(long_comment) + c.Eblock('eblock') + c.Comment(long_comment) + self.assertEquals( + 'sblock\n' + ' // This comment is eighty nine characters ' + 'in longness, that is, to use\n' + ' // another word, length\n' + 'eblock\n' + '// This comment is eighty nine characters in ' + 'longness, that is, to use another\n' + '// word, length', + c.Render()) + long_word = 'x' * 100 + c = Code() + c.Comment(long_word) + self.assertEquals( + '// ' + 'x' * 77 + '\n' + '// ' + 'x' * 23, + c.Render()) + +if __name__ == '__main__': + unittest.main() |