| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import logging | 5 import logging |
| 6 | 6 |
| 7 from measurements import rasterize_and_record_micro | 7 from measurements import rasterize_and_record_micro |
| 8 from telemetry import decorators |
| 8 from telemetry.core import wpr_modes | 9 from telemetry.core import wpr_modes |
| 9 from telemetry.page import page_test | 10 from telemetry.page import page_test |
| 10 from telemetry.unittest_util import options_for_unittests | 11 from telemetry.unittest_util import options_for_unittests |
| 11 from telemetry.unittest_util import page_test_test_case | 12 from telemetry.unittest_util import page_test_test_case |
| 12 from telemetry.unittest_util import test | |
| 13 | 13 |
| 14 | 14 |
| 15 class RasterizeAndRecordMicroUnitTest(page_test_test_case.PageTestTestCase): | 15 class RasterizeAndRecordMicroUnitTest(page_test_test_case.PageTestTestCase): |
| 16 """Smoke test for rasterize_and_record_micro measurement | 16 """Smoke test for rasterize_and_record_micro measurement |
| 17 | 17 |
| 18 Runs rasterize_and_record_micro measurement on a simple page and verifies | 18 Runs rasterize_and_record_micro measurement on a simple page and verifies |
| 19 that all metrics were added to the results. The test is purely functional, | 19 that all metrics were added to the results. The test is purely functional, |
| 20 i.e. it only checks if the metrics are present and non-zero. | 20 i.e. it only checks if the metrics are present and non-zero. |
| 21 """ | 21 """ |
| 22 | 22 |
| 23 def setUp(self): | 23 def setUp(self): |
| 24 self._options = options_for_unittests.GetCopy() | 24 self._options = options_for_unittests.GetCopy() |
| 25 self._options.browser_options.wpr_mode = wpr_modes.WPR_OFF | 25 self._options.browser_options.wpr_mode = wpr_modes.WPR_OFF |
| 26 | 26 |
| 27 @test.Disabled('win', 'chromeos') | 27 @decorators.Disabled('win', 'chromeos') |
| 28 def testRasterizeAndRecordMicro(self): | 28 def testRasterizeAndRecordMicro(self): |
| 29 ps = self.CreatePageSetFromFileInUnittestDataDir('blank.html') | 29 ps = self.CreatePageSetFromFileInUnittestDataDir('blank.html') |
| 30 measurement = rasterize_and_record_micro.RasterizeAndRecordMicro( | 30 measurement = rasterize_and_record_micro.RasterizeAndRecordMicro( |
| 31 rasterize_repeat=1, record_repeat=1, start_wait_time=0.0, | 31 rasterize_repeat=1, record_repeat=1, start_wait_time=0.0, |
| 32 report_detailed_results=True) | 32 report_detailed_results=True) |
| 33 try: | 33 try: |
| 34 results = self.RunMeasurement(measurement, ps, options=self._options) | 34 results = self.RunMeasurement(measurement, ps, options=self._options) |
| 35 except page_test.TestNotSupportedOnPlatformError as failure: | 35 except page_test.TestNotSupportedOnPlatformError as failure: |
| 36 logging.warning(str(failure)) | 36 logging.warning(str(failure)) |
| 37 return | 37 return |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 self.assertEquals(len(viewport_picture_size), 1) | 95 self.assertEquals(len(viewport_picture_size), 1) |
| 96 self.assertGreater( | 96 self.assertGreater( |
| 97 viewport_picture_size[0].GetRepresentativeNumber(), 0) | 97 viewport_picture_size[0].GetRepresentativeNumber(), 0) |
| 98 | 98 |
| 99 total_size_of_pictures_in_piles = \ | 99 total_size_of_pictures_in_piles = \ |
| 100 results.FindAllPageSpecificValuesNamed( | 100 results.FindAllPageSpecificValuesNamed( |
| 101 'total_size_of_pictures_in_piles') | 101 'total_size_of_pictures_in_piles') |
| 102 self.assertEquals(len(total_size_of_pictures_in_piles), 1) | 102 self.assertEquals(len(total_size_of_pictures_in_piles), 1) |
| 103 self.assertGreater( | 103 self.assertGreater( |
| 104 total_size_of_pictures_in_piles[0].GetRepresentativeNumber(), 0) | 104 total_size_of_pictures_in_piles[0].GetRepresentativeNumber(), 0) |
| OLD | NEW |