OLD | NEW |
(Empty) | |
| 1 #!/usr/bin/env python |
| 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 |
| 4 # found in the LICENSE file. |
| 5 |
| 6 import json |
| 7 import os |
| 8 import unittest |
| 9 |
| 10 from samples_data_source import SamplesDataSource |
| 11 |
| 12 class SamplesDataSourceTest(unittest.TestCase): |
| 13 def setUp(self): |
| 14 self._base_path = os.path.join('test_data', 'samples_data_source') |
| 15 |
| 16 def _ReadLocalFile(self, filename): |
| 17 with open(os.path.join(self._base_path, filename), 'r') as f: |
| 18 return f.read() |
| 19 |
| 20 def _FakeGet(self, key): |
| 21 return json.loads(self._ReadLocalFile(key)) |
| 22 |
| 23 def testFilterSamples(self): |
| 24 sds = SamplesDataSource({}, {}, 'fake_path', None) |
| 25 sds.get = self._FakeGet |
| 26 self.assertEquals(json.loads(self._ReadLocalFile('expected.json')), |
| 27 sds.FilterSamples('samples.json', 'bobaloo')) |
| 28 |
| 29 if __name__ == '__main__': |
| 30 unittest.main() |
OLD | NEW |