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

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

Issue 544463002: Integration test for data reduction proxy version header (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 6 years, 3 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 class ChromeProxyDataSavingSyntheticDirect(ChromeProxyDataSavingDirect): 63 class ChromeProxyDataSavingSyntheticDirect(ChromeProxyDataSavingDirect):
64 page_set = pagesets.SyntheticPageSet 64 page_set = pagesets.SyntheticPageSet
65 65
66 66
67 @benchmark.Enabled('android') 67 @benchmark.Enabled('android')
68 class ChromeProxyHeaderValidation(benchmark.Benchmark): 68 class ChromeProxyHeaderValidation(benchmark.Benchmark):
69 tag = 'header_validation' 69 tag = 'header_validation'
70 test = measurements.ChromeProxyHeaders 70 test = measurements.ChromeProxyHeaders
71 page_set = pagesets.Top20PageSet 71 page_set = pagesets.Top20PageSet
72 72
73 @benchmark.Enabled('android')
74 class ChromeProxyClientVersion(benchmark.Benchmark):
75 tag = 'client_version'
76 test = measurements.ChromeProxyClientVersion
77 page_set = pagesets.SyntheticPageSet
73 78
74 @benchmark.Enabled('android') 79 @benchmark.Enabled('android')
75 class ChromeProxyBypass(benchmark.Benchmark): 80 class ChromeProxyBypass(benchmark.Benchmark):
76 tag = 'bypass' 81 tag = 'bypass'
77 test = measurements.ChromeProxyBypass 82 test = measurements.ChromeProxyBypass
78 page_set = pagesets.BypassPageSet 83 page_set = pagesets.BypassPageSet
79 84
80 85
81 @benchmark.Enabled('android') 86 @benchmark.Enabled('android')
82 class ChromeProxySafeBrowsing(benchmark.Benchmark): 87 class ChromeProxySafeBrowsing(benchmark.Benchmark):
(...skipping 14 matching lines...) Expand all
97 tag = 'fallback-viaheader' 102 tag = 'fallback-viaheader'
98 test = measurements.ChromeProxyHTTPFallbackViaHeader 103 test = measurements.ChromeProxyHTTPFallbackViaHeader
99 page_set = pagesets.FallbackViaHeaderPageSet 104 page_set = pagesets.FallbackViaHeaderPageSet
100 105
101 106
102 @benchmark.Enabled('android') 107 @benchmark.Enabled('android')
103 class ChromeProxySmoke(benchmark.Benchmark): 108 class ChromeProxySmoke(benchmark.Benchmark):
104 tag = 'smoke' 109 tag = 'smoke'
105 test = measurements.ChromeProxySmoke 110 test = measurements.ChromeProxySmoke
106 page_set = pagesets.SmokePageSet 111 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