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

Side by Side Diff: gm/rebaseline_server/download_actuals_test.py

Issue 856103002: Revert "Revert "delete old things!"" (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « gm/rebaseline_server/download_actuals.py ('k') | gm/rebaseline_server/imagediffdb.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/python
2
3 """
4 Copyright 2014 Google Inc.
5
6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file.
8
9 Test download.py
10
11 TODO(epoger): Create a command to update the expected results (in
12 self._output_dir_expected) when appropriate. For now, you should:
13 1. examine the results in self.output_dir_actual and make sure they are ok
14 2. rm -rf self._output_dir_expected
15 3. mv self.output_dir_actual self._output_dir_expected
16 Although, if you're using an SVN checkout, this will blow away .svn directories
17 within self._output_dir_expected, which wouldn't be good...
18
19 """
20
21 # System-level imports
22 import os
23
24 # Must fix up PYTHONPATH before importing from within Skia
25 import rs_fixpypath # pylint: disable=W0611
26
27 # Imports from within Skia
28 from py.utils import url_utils
29 import base_unittest
30 import download_actuals
31
32
33 class DownloadTest(base_unittest.TestCase):
34
35 def test_fetch(self):
36 """Tests fetch() of GM results from actual-results.json ."""
37 downloader = download_actuals.Download(
38 actuals_base_url=url_utils.create_filepath_url(
39 os.path.join(self.input_dir, 'gm-actuals')),
40 gm_actuals_root_url=url_utils.create_filepath_url(
41 os.path.join(self.input_dir, 'fake-gm-imagefiles')))
42 downloader.fetch(
43 builder_name='Test-Android-GalaxyNexus-SGX540-Arm7-Release',
44 dest_dir=self.output_dir_actual)
45
46
47 def main():
48 base_unittest.main(DownloadTest)
49
50
51 if __name__ == '__main__':
52 main()
OLDNEW
« no previous file with comments | « gm/rebaseline_server/download_actuals.py ('k') | gm/rebaseline_server/imagediffdb.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698