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

Unified Diff: tools/chrome_proxy/integration_tests/chrome_proxy_metrics.py

Issue 820093002: Integration tests for desktop platforms and safebrowsing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test names. Add @classmethod. Created 5 years, 11 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
Index: tools/chrome_proxy/integration_tests/chrome_proxy_metrics.py
diff --git a/tools/chrome_proxy/integration_tests/chrome_proxy_metrics.py b/tools/chrome_proxy/integration_tests/chrome_proxy_metrics.py
index 8857a56e4cff95393360195f389fa1e3a96bc157..63773da6a536fa71c50adc2429d5c32b15353b6a 100644
--- a/tools/chrome_proxy/integration_tests/chrome_proxy_metrics.py
+++ b/tools/chrome_proxy/integration_tests/chrome_proxy_metrics.py
@@ -54,14 +54,6 @@ class ChromeProxyResponse(network_metrics.HTTPResponse):
return (not self.ShouldHaveChromeProxyViaHeader() or
self.HasChromeProxyViaHeader())
- def IsSafebrowsingResponse(self):
- if (self.response.status == 307 and
- self.response.GetHeader('X-Malware-Url') == '1' and
- self.IsValidByViaHeader() and
- self.response.GetHeader('Location') == self.response.url):
- return True
- return False
-
def GetChromeProxyClientType(self):
"""Get the client type directive from the Chrome-Proxy request header.
@@ -270,27 +262,29 @@ class ChromeProxyMetric(network_metrics.NetworkMetric):
results.AddValue(scalar.ScalarValue(
results.current_page, 'bypass', 'count', bypass_count))
- def AddResultsForSafebrowsing(self, tab, results):
- count = 0
- safebrowsing_count = 0
+ def AddResultsForSafebrowsingOn(self, tab, results):
+ results.AddValue(scalar.ScalarValue(
+ results.current_page, 'safebrowsing', 'timeout responses', 1))
+ def AddResultsForSafebrowsingOff(self, tab, results):
+ response_count = 0
for resp in self.IterResponses(tab):
- count += 1
- if resp.IsSafebrowsingResponse():
- safebrowsing_count += 1
- else:
+ # Data reduction proxy should return the real response for sites with
+ # malware.
+ response_count += 1
+ if not resp.HasChromeProxyViaHeader():
r = resp.response
raise ChromeProxyMetricException, (
- '%s: Not a valid safe browsing response.\n'
+ '%s: Safebrowsing feature should be off for desktop and webview.\n'
'Reponse: status=(%d, %s)\nHeaders:\n %s' % (
r.url, r.status, r.status_text, r.headers))
- if count == safebrowsing_count:
- results.AddValue(scalar.ScalarValue(
- results.current_page, 'safebrowsing', 'boolean', True))
- else:
+
+ if response_count == 0:
raise ChromeProxyMetricException, (
- 'Safebrowsing failed (count=%d, safebrowsing_count=%d)\n' % (
- count, safebrowsing_count))
+ 'Safebrowsing test failed: No valid responses received')
+
+ results.AddValue(scalar.ScalarValue(
+ results.current_page, 'safebrowsing', 'responses', response_count))
def AddResultsForHTTPFallback(self, tab, results):
via_fallback_count = 0

Powered by Google App Engine
This is Rietveld 408576698