OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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 """The page cycler measurement. | 5 """The page cycler measurement. |
6 | 6 |
7 This measurement registers a window load handler in which is forces a layout and | 7 This measurement registers a window load handler in which is forces a layout and |
8 then records the value of performance.now(). This call to now() measures the | 8 then records the value of performance.now(). This call to now() measures the |
9 time from navigationStart (immediately after the previous page's beforeunload | 9 time from navigationStart (immediately after the previous page's beforeunload |
10 event) until after the layout in the page's load event. In addition, two garbage | 10 event) until after the layout in the page's load event. In addition, two garbage |
(...skipping 11 matching lines...) Expand all Loading... |
22 from metrics import keychain_metric | 22 from metrics import keychain_metric |
23 from metrics import memory | 23 from metrics import memory |
24 from metrics import power | 24 from metrics import power |
25 from metrics import speedindex | 25 from metrics import speedindex |
26 from telemetry.core import util | 26 from telemetry.core import util |
27 from telemetry.page import page_test | 27 from telemetry.page import page_test |
28 from telemetry.value import scalar | 28 from telemetry.value import scalar |
29 | 29 |
30 | 30 |
31 class PageCycler(page_test.PageTest): | 31 class PageCycler(page_test.PageTest): |
32 def __init__(self, page_repeat, pageset_repeat, cold_load_percent=50, | 32 def __init__(self, page_repeat, pageset_repeat, cold_load_percent, |
33 report_speed_index=False, clear_cache_before_each_run=False): | 33 report_speed_index=False, clear_cache_before_each_run=False): |
34 super(PageCycler, self).__init__( | 34 super(PageCycler, self).__init__( |
35 action_name_to_run='RunPageInteractions', | 35 action_name_to_run='RunPageInteractions', |
36 clear_cache_before_each_run=clear_cache_before_each_run) | 36 clear_cache_before_each_run=clear_cache_before_each_run) |
37 | 37 |
38 with open(os.path.join(os.path.dirname(__file__), | 38 with open(os.path.join(os.path.dirname(__file__), |
39 'page_cycler.js'), 'r') as f: | 39 'page_cycler.js'), 'r') as f: |
40 self._page_cycler_js = f.read() | 40 self._page_cycler_js = f.read() |
41 | 41 |
42 self._report_speed_index = report_speed_index | 42 self._report_speed_index = report_speed_index |
(...skipping 11 matching lines...) Expand all Loading... |
54 raise Exception('cold-load-percent must be in the range [0-100]') | 54 raise Exception('cold-load-percent must be in the range [0-100]') |
55 | 55 |
56 # Make sure _cold_run_start_index is an integer multiple of page_repeat. | 56 # Make sure _cold_run_start_index is an integer multiple of page_repeat. |
57 # Without this, --pageset_shuffle + --page_repeat could lead to | 57 # Without this, --pageset_shuffle + --page_repeat could lead to |
58 # assertion failures on _started_warm in WillNavigateToPage. | 58 # assertion failures on _started_warm in WillNavigateToPage. |
59 if cold_runs_percent_set: | 59 if cold_runs_percent_set: |
60 number_warm_pageset_runs = int( | 60 number_warm_pageset_runs = int( |
61 (int(pageset_repeat) - 1) * (100 - cold_load_percent) / 100) | 61 (int(pageset_repeat) - 1) * (100 - cold_load_percent) / 100) |
62 number_warm_runs = number_warm_pageset_runs * page_repeat | 62 number_warm_runs = number_warm_pageset_runs * page_repeat |
63 self._cold_run_start_index = number_warm_runs + page_repeat | 63 self._cold_run_start_index = number_warm_runs + page_repeat |
64 self._discard_first_result = (not cold_load_percent or | |
65 self._discard_first_result) | |
66 else: | 64 else: |
67 self._cold_run_start_index = pageset_repeat * page_repeat | 65 self._cold_run_start_index = pageset_repeat * page_repeat |
68 | 66 |
69 def WillStartBrowser(self, platform): | 67 def WillStartBrowser(self, platform): |
70 """Initialize metrics once right before the browser has been launched.""" | 68 """Initialize metrics once right before the browser has been launched.""" |
71 self._power_metric = power.PowerMetric(platform) | 69 self._power_metric = power.PowerMetric(platform) |
72 | 70 |
73 def DidStartBrowser(self, browser): | 71 def DidStartBrowser(self, browser): |
74 """Initialize metrics once right after the browser has been launched.""" | 72 """Initialize metrics once right after the browser has been launched.""" |
75 self._memory_metric = memory.MemoryMetric(browser) | 73 self._memory_metric = memory.MemoryMetric(browser) |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 | 144 |
147 def ShouldRunCold(self, url): | 145 def ShouldRunCold(self, url): |
148 # We do the warm runs first for two reasons. The first is so we can | 146 # We do the warm runs first for two reasons. The first is so we can |
149 # preserve any initial profile cache for as long as possible. | 147 # preserve any initial profile cache for as long as possible. |
150 # The second is that, if we did cold runs first, we'd have a transition | 148 # The second is that, if we did cold runs first, we'd have a transition |
151 # page set during which we wanted the run for each URL to both | 149 # page set during which we wanted the run for each URL to both |
152 # contribute to the cold data and warm the catch for the following | 150 # contribute to the cold data and warm the catch for the following |
153 # warm run, and clearing the cache before the load of the following | 151 # warm run, and clearing the cache before the load of the following |
154 # URL would eliminate the intended warmup for the previous URL. | 152 # URL would eliminate the intended warmup for the previous URL. |
155 return (self._has_loaded_page[url] >= self._cold_run_start_index) | 153 return (self._has_loaded_page[url] >= self._cold_run_start_index) |
OLD | NEW |