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

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

Issue 792303006: Remove the net-internals dependency from chrome proxy telemetry tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 5 years, 11 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 105
106 @benchmark.Enabled('android') 106 @benchmark.Enabled('android')
107 class ChromeProxySafeBrowsing(benchmark.Benchmark): 107 class ChromeProxySafeBrowsing(benchmark.Benchmark):
108 tag = 'safebrowsing' 108 tag = 'safebrowsing'
109 test = measurements.ChromeProxySafebrowsing 109 test = measurements.ChromeProxySafebrowsing
110 page_set = pagesets.SafebrowsingPageSet 110 page_set = pagesets.SafebrowsingPageSet
111 111
112 112
113 @benchmark.Enabled('android') 113 @benchmark.Enabled('android')
114 class ChromeProxyHTTPFallbackProbeURL(benchmark.Benchmark): 114 class ChromeProxyHTTPFallbackProbeURL(benchmark.Benchmark):
115 tag = 'fallback-probe' 115 tag = 'fallback_probe'
116 test = measurements.ChromeProxyHTTPFallbackProbeURL 116 test = measurements.ChromeProxyHTTPFallbackProbeURL
117 page_set = pagesets.SyntheticPageSet 117 page_set = pagesets.SyntheticPageSet
118 118
119 119
120 @benchmark.Enabled('android') 120 @benchmark.Enabled('android')
121 class ChromeProxyHTTPFallbackViaHeader(benchmark.Benchmark): 121 class ChromeProxyHTTPFallbackViaHeader(benchmark.Benchmark):
122 tag = 'fallback-viaheader' 122 tag = 'fallback_viaheader'
123 test = measurements.ChromeProxyHTTPFallbackViaHeader 123 test = measurements.ChromeProxyHTTPFallbackViaHeader
124 page_set = pagesets.FallbackViaHeaderPageSet 124 page_set = pagesets.FallbackViaHeaderPageSet
125 125
126 126
127 @benchmark.Enabled('android') 127 @benchmark.Enabled('android')
128 class ChromeProxyHTTPToDirectFallback(benchmark.Benchmark): 128 class ChromeProxyHTTPToDirectFallback(benchmark.Benchmark):
129 tag = 'http-to-direct-fallback' 129 tag = 'http_to_direct_fallback'
130 test = measurements.ChromeProxyHTTPToDirectFallback 130 test = measurements.ChromeProxyHTTPToDirectFallback
131 page_set = pagesets.HTTPToDirectFallbackPageSet 131 page_set = pagesets.HTTPToDirectFallbackPageSet
132 132
133 133
134 @benchmark.Enabled('android') 134 @benchmark.Enabled('android')
135 class ChromeProxyExplicitBypass(benchmark.Benchmark): 135 class ChromeProxyReenableAfterBypass(benchmark.Benchmark):
136 tag = 'explicit-bypass' 136 tag = 'reenable_after_bypass'
137 test = measurements.ChromeProxyExplicitBypass 137 test = measurements.ChromeProxyReenableAfterBypass
138 page_set = pagesets.ExplicitBypassPageSet 138 page_set = pagesets.ReenableAfterBypassPageSet
139 139
140 140
141 @benchmark.Enabled('android') 141 @benchmark.Enabled('android')
142 class ChromeProxySmoke(benchmark.Benchmark): 142 class ChromeProxySmoke(benchmark.Benchmark):
143 tag = 'smoke' 143 tag = 'smoke'
144 test = measurements.ChromeProxySmoke 144 test = measurements.ChromeProxySmoke
145 page_set = pagesets.SmokePageSet 145 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