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 import collections | 5 import collections |
6 import page_sets | 6 import page_sets |
7 import re | 7 import re |
8 | 8 |
9 from telemetry import benchmark | 9 from telemetry import benchmark |
10 from telemetry.core import util | 10 from telemetry.core import util |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 browser_process = self._timeline_controller.model.browser_process | 166 browser_process = self._timeline_controller.model.browser_process |
167 filter_text = '(RegisterServiceWorker|'\ | 167 filter_text = '(RegisterServiceWorker|'\ |
168 'UnregisterServiceWorker|'\ | 168 'UnregisterServiceWorker|'\ |
169 'ProcessAllocate|'\ | 169 'ProcessAllocate|'\ |
170 'FindRegistrationForDocument|'\ | 170 'FindRegistrationForDocument|'\ |
171 'DispatchFetchEvent)' | 171 'DispatchFetchEvent)' |
172 timeline_metric.AddResultsOfEvents( | 172 timeline_metric.AddResultsOfEvents( |
173 browser_process, 'IOThread', filter_text , results) | 173 browser_process, 'IOThread', filter_text , results) |
174 | 174 |
175 | 175 |
176 # TODO(ksakamoto): Disabled due to Android One failure. crbug.com/469841 | |
177 @benchmark.Disabled('android') | |
178 class ServiceWorkerPerfTest(benchmark.Benchmark): | 176 class ServiceWorkerPerfTest(benchmark.Benchmark): |
179 """Performance test on public applications using ServiceWorker""" | 177 """Performance test on public applications using ServiceWorker""" |
180 test = _ServiceWorkerMeasurement | 178 test = _ServiceWorkerMeasurement |
181 page_set = page_sets.ServiceWorkerPageSet | 179 page_set = page_sets.ServiceWorkerPageSet |
182 | 180 |
183 @classmethod | 181 @classmethod |
184 def Name(cls): | 182 def Name(cls): |
185 return 'service_worker.service_worker' | 183 return 'service_worker.service_worker' |
186 | 184 |
187 | 185 |
188 # Disabled due to redness on the tree. crbug.com/442752 | 186 # Disabled due to redness on the tree. crbug.com/442752 |
189 # TODO(horo): Enable after the reference build newer than M39 will be rolled. | 187 # TODO(horo): Enable after the reference build newer than M39 will be rolled. |
190 @benchmark.Disabled('reference') | 188 @benchmark.Disabled('reference') |
191 class ServiceWorkerMicroBenchmarkPerfTest(benchmark.Benchmark): | 189 class ServiceWorkerMicroBenchmarkPerfTest(benchmark.Benchmark): |
192 """This test measures the performance of pages using ServiceWorker. | 190 """This test measures the performance of pages using ServiceWorker. |
193 | 191 |
194 As a page set, two benchamrk pages (many registration, many concurrent | 192 As a page set, two benchamrk pages (many registration, many concurrent |
195 fetching) and one application (Trained-to-thrill: | 193 fetching) and one application (Trained-to-thrill: |
196 https://jakearchibald.github.io/trained-to-thrill/) are included. Execution | 194 https://jakearchibald.github.io/trained-to-thrill/) are included. Execution |
197 time of these pages will be shown as Speed Index, and TRACE_EVENTs are | 195 time of these pages will be shown as Speed Index, and TRACE_EVENTs are |
198 subsidiary information to know more detail performance regression. | 196 subsidiary information to know more detail performance regression. |
199 """ | 197 """ |
200 test = _ServiceWorkerMicroBenchmarkMeasurement | 198 test = _ServiceWorkerMicroBenchmarkMeasurement |
201 page_set = page_sets.ServiceWorkerMicroBenchmarkPageSet | 199 page_set = page_sets.ServiceWorkerMicroBenchmarkPageSet |
202 @classmethod | 200 @classmethod |
203 def Name(cls): | 201 def Name(cls): |
204 return 'service_worker.service_worker_micro_benchmark' | 202 return 'service_worker.service_worker_micro_benchmark' |
205 | 203 |
OLD | NEW |