Minor Python style clean-up
[chromium-blink-merge.git] / tools / chrome_proxy / integration_tests / chrome_proxy_pagesets / pass_through.py
blob259dc70f11b5c5f9a12faa91b400c5290d75ca5c
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.
5 from telemetry.page import page as page_module
6 from telemetry import story
8 class PassThroughPage(page_module.Page):
9 """
10 A test page for the chrome proxy pass-through tests.
11 """
13 def __init__(self, url, page_set):
14 super(PassThroughPage, self).__init__(url=url, page_set=page_set)
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)
28 class PassThroughStorySet(story.StorySet):
29 """ Chrome proxy test sites """
31 def __init__(self):
32 super(PassThroughStorySet, self).__init__()
34 urls_list = [
35 'http://check.googlezip.net/image.png',
38 for url in urls_list:
39 self.AddStory(PassThroughPage(url, self))