Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(455)

Side by Side Diff: chrome/common/extensions/docs/server2/handlebar_dict_generator_test.py

Issue 10689117: Extensions Docs Server: Support APIs with properties (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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('1,234,567', _FormatValue(1234567))
46 self.assertEquals('67', _FormatValue(67))
47 self.assertEquals('234,567', _FormatValue(234567))
48
43 if __name__ == '__main__': 49 if __name__ == '__main__':
44 unittest.main() 50 unittest.main()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698