OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 blink_style | 5 from measurements import blink_style |
6 | 6 |
7 from telemetry import decorators | |
8 from telemetry.unittest_util import options_for_unittests | 7 from telemetry.unittest_util import options_for_unittests |
9 from telemetry.unittest_util import page_test_test_case | 8 from telemetry.unittest_util import page_test_test_case |
10 | 9 |
11 | 10 |
12 class BlinkStyleTest(page_test_test_case.PageTestTestCase): | 11 class BlinkStyleTest(page_test_test_case.PageTestTestCase): |
13 """Smoke test for Bink Style measurements. | 12 """Smoke test for Bink Style measurements. |
14 | 13 |
15 Runs BlinkStyle measurement on some simple pages and verifies | 14 Runs BlinkStyle measurement on some simple pages and verifies |
16 that expected metrics were added to the results. The test is purely | 15 that expected metrics were added to the results. The test is purely |
17 functional, i.e. it only checks if the metrics are present and non-zero. | 16 functional, i.e. it only checks if the metrics are present and non-zero. |
18 """ | 17 """ |
19 | 18 |
20 def setUp(self): | 19 def setUp(self): |
21 self._options = options_for_unittests.GetCopy() | 20 self._options = options_for_unittests.GetCopy() |
22 | 21 |
23 @decorators.Disabled # http://crbug.com/479048 | |
24 def testForParsing(self): | 22 def testForParsing(self): |
25 ps = self.CreatePageSetFromFileInUnittestDataDir('blink_style.html') | 23 ps = self.CreatePageSetFromFileInUnittestDataDir('blink_style.html') |
26 measurement = blink_style.BlinkStyle() | 24 measurement = blink_style.BlinkStyle() |
27 results = self.RunMeasurement(measurement, ps, options=self._options) | 25 results = self.RunMeasurement(measurement, ps, options=self._options) |
28 self.assertEquals(0, len(results.failures)) | 26 self.assertEquals(0, len(results.failures)) |
29 | 27 |
30 def getMetric(results, name): | 28 def getMetric(results, name): |
31 metrics = results.FindAllPageSpecificValuesNamed(name) | 29 metrics = results.FindAllPageSpecificValuesNamed(name) |
32 self.assertEquals(1, len(metrics)) | 30 self.assertEquals(1, len(metrics)) |
33 return metrics[0].value | 31 return metrics[0].value |
34 | 32 |
35 self.assertGreater(getMetric(results, 'parse_css_regular'), 0) | 33 self.assertGreater(getMetric(results, 'parse_css_regular'), 0) |
36 self.assertGreater(getMetric(results, 'tokenize_css_regular'), 0) | 34 self.assertGreater(getMetric(results, 'tokenize_css_regular'), 0) |
37 self.assertGreater(getMetric(results, 'update_style'), 0) | 35 self.assertGreater(getMetric(results, 'update_style'), 0) |
OLD | NEW |