| 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 telemetry.core import wpr_modes |
| 8 from telemetry import decorators | 8 from telemetry import decorators |
| 9 from telemetry.core import wpr_modes | |
| 10 from telemetry.page import page_test | 9 from telemetry.page import page_test |
| 11 from telemetry.unittest_util import options_for_unittests | 10 from telemetry.unittest_util import options_for_unittests |
| 12 from telemetry.unittest_util import page_test_test_case | 11 from telemetry.unittest_util import page_test_test_case |
| 13 | 12 |
| 13 from measurements import rasterize_and_record_micro |
| 14 |
| 14 | 15 |
| 15 class RasterizeAndRecordMicroUnitTest(page_test_test_case.PageTestTestCase): | 16 class RasterizeAndRecordMicroUnitTest(page_test_test_case.PageTestTestCase): |
| 16 """Smoke test for rasterize_and_record_micro measurement | 17 """Smoke test for rasterize_and_record_micro measurement |
| 17 | 18 |
| 18 Runs rasterize_and_record_micro measurement on a simple page and verifies | 19 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, | 20 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. | 21 i.e. it only checks if the metrics are present and non-zero. |
| 21 """ | 22 """ |
| 22 | 23 |
| 23 def setUp(self): | 24 def setUp(self): |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 self.assertEquals(len(viewport_picture_size), 1) | 96 self.assertEquals(len(viewport_picture_size), 1) |
| 96 self.assertGreater( | 97 self.assertGreater( |
| 97 viewport_picture_size[0].GetRepresentativeNumber(), 0) | 98 viewport_picture_size[0].GetRepresentativeNumber(), 0) |
| 98 | 99 |
| 99 total_size_of_pictures_in_piles = \ | 100 total_size_of_pictures_in_piles = \ |
| 100 results.FindAllPageSpecificValuesNamed( | 101 results.FindAllPageSpecificValuesNamed( |
| 101 'total_size_of_pictures_in_piles') | 102 'total_size_of_pictures_in_piles') |
| 102 self.assertEquals(len(total_size_of_pictures_in_piles), 1) | 103 self.assertEquals(len(total_size_of_pictures_in_piles), 1) |
| 103 self.assertGreater( | 104 self.assertGreater( |
| 104 total_size_of_pictures_in_piles[0].GetRepresentativeNumber(), 0) | 105 total_size_of_pictures_in_piles[0].GetRepresentativeNumber(), 0) |
| OLD | NEW |