| 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 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 |
| 13 import third_party.json_schema_compiler.model as model | 14 import third_party.json_schema_compiler.model as model |
| 14 | 15 |
| 15 class DictGeneratorTest(unittest.TestCase): | 16 class DictGeneratorTest(unittest.TestCase): |
| 16 def setUp(self): | 17 def setUp(self): |
| 17 self._base_path = os.path.join('test_data', 'test_json') | 18 self._base_path = os.path.join('test_data', 'test_json') |
| 18 | 19 |
| 19 def _ReadLocalFile(self, filename): | 20 def _ReadLocalFile(self, filename): |
| 20 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: |
| 21 return f.read() | 22 return f.read() |
| (...skipping 11 matching lines...) Expand all Loading... |
| 33 link = _GetLinkToRefType('truthTeller', 'liar.Tab') | 34 link = _GetLinkToRefType('truthTeller', 'liar.Tab') |
| 34 self.assertEquals(link['href'], 'liar.html#type-Tab') | 35 self.assertEquals(link['href'], 'liar.html#type-Tab') |
| 35 self.assertEquals(link['text'], 'Tab') | 36 self.assertEquals(link['text'], 'Tab') |
| 36 link = _GetLinkToRefType('truthTeller', 'Tab') | 37 link = _GetLinkToRefType('truthTeller', 'Tab') |
| 37 self.assertEquals(link['href'], 'truthTeller.html#type-Tab') | 38 self.assertEquals(link['href'], 'truthTeller.html#type-Tab') |
| 38 self.assertEquals(link['text'], 'Tab') | 39 self.assertEquals(link['text'], 'Tab') |
| 39 link = _GetLinkToRefType('nay', 'lies.chrome.bookmarks.Tab') | 40 link = _GetLinkToRefType('nay', 'lies.chrome.bookmarks.Tab') |
| 40 self.assertEquals(link['href'], 'lies.html#type-chrome.bookmarks.Tab') | 41 self.assertEquals(link['href'], 'lies.html#type-chrome.bookmarks.Tab') |
| 41 self.assertEquals(link['text'], 'chrome.bookmarks.Tab') | 42 self.assertEquals(link['text'], 'chrome.bookmarks.Tab') |
| 42 | 43 |
| 44 def testFormatValue(self): |
| 45 self.assertEquals('<code>1,234,567</code>', _FormatValue(1234567)) |
| 46 self.assertEquals('<code>67</code>', _FormatValue(67)) |
| 47 self.assertEquals('<code>234,567</code>', _FormatValue(234567)) |
| 48 |
| 43 if __name__ == '__main__': | 49 if __name__ == '__main__': |
| 44 unittest.main() | 50 unittest.main() |
| OLD | NEW |