| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 from measurements import oilpan_gc_times | 5 from measurements import oilpan_gc_times |
| 6 from telemetry.core import wpr_modes | 6 from telemetry.core import wpr_modes |
| 7 from telemetry.unittest_util import options_for_unittests | 7 from telemetry.unittest_util import options_for_unittests |
| 8 from telemetry.unittest_util import page_test_test_case | 8 from telemetry.unittest_util import page_test_test_case |
| 9 from telemetry.unittest_util import test | |
| 10 | 9 |
| 11 class OilpanGCTimesTest(page_test_test_case.PageTestTestCase): | 10 class OilpanGCTimesTest(page_test_test_case.PageTestTestCase): |
| 12 """Smoke test for Oilpan GC pause time measurements. | 11 """Smoke test for Oilpan GC pause time measurements. |
| 13 | 12 |
| 14 Runs OilpanGCTimes measurement on some simple pages and verifies | 13 Runs OilpanGCTimes measurement on some simple pages and verifies |
| 15 that all metrics were added to the results. The test is purely functional, | 14 that all metrics were added to the results. The test is purely functional, |
| 16 i.e. it only checks if the metrics are present and non-zero. | 15 i.e. it only checks if the metrics are present and non-zero. |
| 17 """ | 16 """ |
| 18 def setUp(self): | 17 def setUp(self): |
| 19 self._options = options_for_unittests.GetCopy() | 18 self._options = options_for_unittests.GetCopy() |
| 20 | 19 |
| 21 def testForSmoothness(self): | 20 def testForSmoothness(self): |
| 22 ps = self.CreatePageSetFromFileInUnittestDataDir('create_many_objects.html') | 21 ps = self.CreatePageSetFromFileInUnittestDataDir('create_many_objects.html') |
| 23 measurement = oilpan_gc_times.OilpanGCTimesForSmoothness() | 22 measurement = oilpan_gc_times.OilpanGCTimesForSmoothness() |
| 24 results = self.RunMeasurement(measurement, ps, options=self._options) | 23 results = self.RunMeasurement(measurement, ps, options=self._options) |
| 25 self.assertEquals(0, len(results.failures)) | 24 self.assertEquals(0, len(results.failures)) |
| 26 | 25 |
| 27 precise_mark = results.FindAllPageSpecificValuesNamed('oilpan_precise_mark') | 26 precise_mark = results.FindAllPageSpecificValuesNamed('oilpan_precise_mark') |
| 28 self.assertLess(0, len(precise_mark)) | 27 self.assertLess(0, len(precise_mark)) |
| 29 | 28 |
| 30 def testForBlinkPerf(self): | 29 def testForBlinkPerf(self): |
| 31 ps = self.CreatePageSetFromFileInUnittestDataDir('create_many_objects.html') | 30 ps = self.CreatePageSetFromFileInUnittestDataDir('create_many_objects.html') |
| 32 measurement = oilpan_gc_times.OilpanGCTimesForBlinkPerf() | 31 measurement = oilpan_gc_times.OilpanGCTimesForBlinkPerf() |
| 33 results = self.RunMeasurement(measurement, ps, options=self._options) | 32 results = self.RunMeasurement(measurement, ps, options=self._options) |
| 34 self.assertEquals(0, len(results.failures)) | 33 self.assertEquals(0, len(results.failures)) |
| 35 | 34 |
| 36 precise_mark = results.FindAllPageSpecificValuesNamed('oilpan_precise_mark') | 35 precise_mark = results.FindAllPageSpecificValuesNamed('oilpan_precise_mark') |
| 37 self.assertLess(0, len(precise_mark)) | 36 self.assertLess(0, len(precise_mark)) |
| OLD | NEW |