Index: tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/block_single.py |
diff --git a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/bypass.py b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/block_single.py |
similarity index 51% |
copy from tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/bypass.py |
copy to tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/block_single.py |
index f8a764c22e1141fc7ed1e043a6478fb596038871..7906023663c393ff8c9b7dde58796c33037c9046 100644 |
--- a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/bypass.py |
+++ b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/block_single.py |
@@ -6,24 +6,22 @@ from telemetry.page import page as page_module |
from telemetry.page import page_set as page_set_module |
-class BypassPage(page_module.Page): |
+class BlockSinglePage(page_module.Page): |
def __init__(self, url, page_set): |
- super(BypassPage, self).__init__(url=url, page_set=page_set) |
- self.archive_data_file = '../data/chrome_proxy_bypass.json' |
+ super(BlockSinglePage, self).__init__(url=url, page_set=page_set) |
-class BypassPageSet(page_set_module.PageSet): |
+class BlockSinglePageSet(page_set_module.PageSet): |
""" Chrome proxy test sites """ |
def __init__(self): |
- super(BypassPageSet, self).__init__( |
- archive_data_file='../data/chrome_proxy_bypass.json') |
+ super(BlockSinglePageSet, self).__init__() |
urls_list = [ |
- 'http://aws1.mdw.la/bypass/', |
+ 'http://check.googlezip.net/blocksingle', |
] |
for url in urls_list: |
- self.AddPage(BypassPage(url, self)) |
+ self.AddPage(BlockSinglePage(url, self)) |