| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import json | 6 import json |
| 7 import os | 7 import os |
| 8 import unittest | 8 import unittest |
| 9 | 9 |
| 10 from handlebar_dict_generator import HandlebarDictGenerator | 10 from handlebar_dict_generator import HandlebarDictGenerator |
| 11 from handlebar_dict_generator import _GetLinkToRefType | 11 from handlebar_dict_generator import _GetLinkToRefType |
| 12 from handlebar_dict_generator import _FormatValue | 12 from handlebar_dict_generator import _FormatValue |
| 13 import third_party.json_schema_compiler.json_comment_eater as comment_eater | 13 import third_party.json_schema_compiler.json_comment_eater as comment_eater |
| 14 import third_party.json_schema_compiler.model as model | 14 import third_party.json_schema_compiler.model as model |
| 15 | 15 |
| 16 class DictGeneratorTest(unittest.TestCase): | 16 class DictGeneratorTest(unittest.TestCase): |
| 17 def setUp(self): | 17 def setUp(self): |
| 18 self._base_path = os.path.join('test_data', 'test_json') | 18 self._base_path = os.path.join('test_data', 'test_json') |
| 19 | 19 |
| 20 def _ReadLocalFile(self, filename): | 20 def _ReadLocalFile(self, filename): |
| 21 with open(os.path.join(self._base_path, filename), 'r') as f: | 21 with open(os.path.join(self._base_path, filename), 'r') as f: |
| 22 return f.read() | 22 return f.read() |
| 23 | 23 |
| 24 def _GenerateTest(self, filename): | 24 def _GenerateTest(self, filename): |
| 25 expected_json = json.loads(self._ReadLocalFile('expected_' + filename)) | 25 expected_json = json.loads(self._ReadLocalFile('expected_' + filename)) |
| 26 gen = HandlebarDictGenerator( | 26 gen = HandlebarDictGenerator( |
| 27 json.loads(comment_eater.Nom(self._ReadLocalFile(filename)))[0]) | 27 json.loads(comment_eater.Nom(self._ReadLocalFile(filename)))[0], []) |
| 28 self.assertEquals(expected_json, gen.Generate()) | 28 self.assertEquals(expected_json, gen.Generate()) |
| 29 | 29 |
| 30 def testGenerate(self): | 30 def testGenerate(self): |
| 31 self._GenerateTest('test_file.json') | 31 self._GenerateTest('test_file.json') |
| 32 | 32 |
| 33 def testGetLinkToRefType(self): | 33 def testGetLinkToRefType(self): |
| 34 link = _GetLinkToRefType('truthTeller', 'liar.Tab') | 34 link = _GetLinkToRefType('truthTeller', 'liar.Tab') |
| 35 self.assertEquals(link['href'], 'liar.html#type-Tab') | 35 self.assertEquals(link['href'], 'liar.html#type-Tab') |
| 36 self.assertEquals(link['text'], 'Tab') | 36 self.assertEquals(link['text'], 'Tab') |
| 37 link = _GetLinkToRefType('truthTeller', 'Tab') | 37 link = _GetLinkToRefType('truthTeller', 'Tab') |
| 38 self.assertEquals(link['href'], 'truthTeller.html#type-Tab') | 38 self.assertEquals(link['href'], 'truthTeller.html#type-Tab') |
| 39 self.assertEquals(link['text'], 'Tab') | 39 self.assertEquals(link['text'], 'Tab') |
| 40 link = _GetLinkToRefType('nay', 'lies.chrome.bookmarks.Tab') | 40 link = _GetLinkToRefType('nay', 'lies.chrome.bookmarks.Tab') |
| 41 self.assertEquals(link['href'], 'lies.html#type-chrome.bookmarks.Tab') | 41 self.assertEquals(link['href'], 'lies.html#type-chrome.bookmarks.Tab') |
| 42 self.assertEquals(link['text'], 'chrome.bookmarks.Tab') | 42 self.assertEquals(link['text'], 'chrome.bookmarks.Tab') |
| 43 | 43 |
| 44 def testFormatValue(self): | 44 def testFormatValue(self): |
| 45 self.assertEquals('1,234,567', _FormatValue(1234567)) | 45 self.assertEquals('1,234,567', _FormatValue(1234567)) |
| 46 self.assertEquals('67', _FormatValue(67)) | 46 self.assertEquals('67', _FormatValue(67)) |
| 47 self.assertEquals('234,567', _FormatValue(234567)) | 47 self.assertEquals('234,567', _FormatValue(234567)) |
| 48 | 48 |
| 49 if __name__ == '__main__': | 49 if __name__ == '__main__': |
| 50 unittest.main() | 50 unittest.main() |
| OLD | NEW |