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 sys | 8 import sys |
9 import unittest | 9 import unittest |
10 | 10 |
11 from samples_data_source import SamplesDataSource | 11 from samples_data_source import SamplesDataSource |
12 from servlet import Request | 12 from servlet import Request |
13 | 13 |
14 class SamplesDataSourceTest(unittest.TestCase): | 14 class SamplesDataSourceTest(unittest.TestCase): |
15 def setUp(self): | 15 def setUp(self): |
16 self._base_path = os.path.join(sys.path[0], | 16 self._base_path = os.path.join(sys.path[0], |
17 'test_data', | 17 'test_data', |
18 'samples_data_source') | 18 'samples_data_source') |
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 _FakeGet(self, key): | 24 def _FakeGet(self, key): |
25 return json.loads(self._ReadLocalFile(key)) | 25 return json.loads(self._ReadLocalFile(key)) |
26 | 26 |
27 def testFilterSamples(self): | 27 def testFilterSamples(self): |
28 sds = SamplesDataSource({}, {}, 'fake_path', Request('/', {})) | 28 sds = SamplesDataSource({}, {}, 'fake_path', Request.ForTest('/')) |
29 sds.get = self._FakeGet | 29 sds.get = self._FakeGet |
30 self.assertEquals(json.loads(self._ReadLocalFile('expected.json')), | 30 self.assertEquals(json.loads(self._ReadLocalFile('expected.json')), |
31 sds.FilterSamples('samples.json', 'bobaloo')) | 31 sds.FilterSamples('samples.json', 'bobaloo')) |
32 | 32 |
33 if __name__ == '__main__': | 33 if __name__ == '__main__': |
34 unittest.main() | 34 unittest.main() |
OLD | NEW |