Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Side by Side Diff: tools/chrome_proxy/integration_tests/chrome_proxy_benchmark.py

Issue 655703002: Added integration tests for falling back from the HTTP proxy to direct. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tools/chrome_proxy/integration_tests/chrome_proxy_measurements.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 integration_tests import chrome_proxy_measurements as measurements 5 from integration_tests import chrome_proxy_measurements as measurements
6 from integration_tests import chrome_proxy_pagesets as pagesets 6 from integration_tests import chrome_proxy_pagesets as pagesets
7 from telemetry import benchmark 7 from telemetry import benchmark
8 8
9 9
10 @benchmark.Enabled('android') 10 @benchmark.Enabled('android')
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 110
111 111
112 @benchmark.Enabled('android') 112 @benchmark.Enabled('android')
113 class ChromeProxyHTTPFallbackViaHeader(benchmark.Benchmark): 113 class ChromeProxyHTTPFallbackViaHeader(benchmark.Benchmark):
114 tag = 'fallback-viaheader' 114 tag = 'fallback-viaheader'
115 test = measurements.ChromeProxyHTTPFallbackViaHeader 115 test = measurements.ChromeProxyHTTPFallbackViaHeader
116 page_set = pagesets.FallbackViaHeaderPageSet 116 page_set = pagesets.FallbackViaHeaderPageSet
117 117
118 118
119 @benchmark.Enabled('android') 119 @benchmark.Enabled('android')
120 class ChromeProxyHTTPToDirectFallback(benchmark.Benchmark):
121 tag = 'http-to-direct-fallback'
122 test = measurements.ChromeProxyHTTPToDirectFallback
123 page_set = pagesets.HTTPToDirectFallbackPageSet
124
125
126 @benchmark.Enabled('android')
120 class ChromeProxySmoke(benchmark.Benchmark): 127 class ChromeProxySmoke(benchmark.Benchmark):
121 tag = 'smoke' 128 tag = 'smoke'
122 test = measurements.ChromeProxySmoke 129 test = measurements.ChromeProxySmoke
123 page_set = pagesets.SmokePageSet 130 page_set = pagesets.SmokePageSet
OLDNEW
« no previous file with comments | « no previous file | tools/chrome_proxy/integration_tests/chrome_proxy_measurements.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698