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

Side by Side Diff: tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/pass_through.py

Issue 1151753003: Integration test for Chrome-Proxy: pass-through directive (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@loFiSnackbar
Patch Set: rebase Created 5 years, 7 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 | « tools/chrome_proxy/integration_tests/chrome_proxy_metrics.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 from telemetry.page import page as page_module
6 from telemetry.page import page_set as page_set_module
7
8 class PassThroughPage(page_module.Page):
9 """
10 A test page for the chrome proxy pass-through tests.
11 """
12
13 def __init__(self, url, page_set):
14 super(PassThroughPage, self).__init__(url=url, page_set=page_set)
15
16 def RunNavigateSteps(self, action_runner):
17 super(PassThroughPage, self).RunNavigateSteps(action_runner)
18 action_runner.ExecuteJavaScript('''
19 (function() {
20 var request = new XMLHttpRequest();
21 request.open("GET", "%s");
22 request.setRequestHeader("Chrome-Proxy", "pass-through");
23 request.send(null);
24 })();''' % (self.url))
25 action_runner.Wait(1)
26
27
28 class PassThroughPageSet(page_set_module.PageSet):
29 """ Chrome proxy test sites """
30
31 def __init__(self):
32 super(PassThroughPageSet, self).__init__()
33
34 urls_list = [
35 'http://check.googlezip.net/image.png',
36 ]
37
38 for url in urls_list:
39 self.AddUserStory(PassThroughPage(url, self))
OLDNEW
« no previous file with comments | « tools/chrome_proxy/integration_tests/chrome_proxy_metrics.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698