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

Unified Diff: tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/quic.py

Issue 2357723002: Add integration tests for QUIC (Closed)
Patch Set: Addressed comments Created 4 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/quic.py
diff --git a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/pingback.py b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/quic.py
similarity index 58%
copy from tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/pingback.py
copy to tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/quic.py
index ea5dc4f0bd427bed05e381083a4c2e980f8da94e..2fd2ec409fa798518a64ec8fd07589a9b45fb76a 100644
--- a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/pingback.py
+++ b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/quic.py
@@ -6,22 +6,22 @@ from telemetry.page import page as page_module
from telemetry import story
-class PingbackPage(page_module.Page):
+class QuicPage(page_module.Page):
def __init__(self, url, page_set):
- super(PingbackPage, self).__init__(url=url, page_set=page_set)
+ super(QuicPage, self).__init__(url=url, page_set=page_set)
-class PingbackStorySet(story.StorySet):
+class QuicStorySet(story.StorySet):
- """ Chrome proxy test page to verify the pingback """
+ """ Chrome proxy test page to verify the QUIC proxy usage """
def __init__(self):
- super(PingbackStorySet, self).__init__()
+ super(QuicStorySet, self).__init__()
urls_list = [
'http://check.googlezip.net/test.html',
]
for url in urls_list:
- self.AddStory(PingbackPage(url, self))
+ self.AddStory(QuicPage(url, self))
« 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