summaryrefslogtreecommitdiff
path: root/chromium/tools/chrome_proxy/integration_tests/chrome_proxy_measurements.py
blob: 7b07d760fe45992e18adf3d60980b472d2b32e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import base64
import logging
import urlparse

from common import chrome_proxy_measurements as measurements
from common.chrome_proxy_measurements import ChromeProxyValidation
from integration_tests import chrome_proxy_metrics as metrics
from metrics import loading
from telemetry.core import exceptions, util
from telemetry.page import legacy_page_test

class ChromeProxyBypassOnTimeout(ChromeProxyValidation):
  """Checks the client bypasses when endpoint site times out."""

  def __init__(self):
    super(ChromeProxyBypassOnTimeout, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyBypassOnTimeout, self).CustomizeBrowserOptions(
        options)

  def AddResults(self, tab, results):
    self._metrics.AddResultsForBypassOnTimeout(tab, results)

class ChromeProxyDataSaving(legacy_page_test.LegacyPageTest):
  """Chrome proxy data saving measurement."""
  def __init__(self, *args, **kwargs):
    super(ChromeProxyDataSaving, self).__init__(*args, **kwargs)
    self._metrics = metrics.ChromeProxyMetric()
    self._enable_proxy = True

  def CustomizeBrowserOptions(self, options):
    if self._enable_proxy:
      options.AppendExtraBrowserArgs('--enable-spdy-proxy-auth')

  def WillNavigateToPage(self, page, tab):
    if self._enable_proxy:
      measurements.WaitForViaHeader(tab)
    tab.ClearCache(force=True)
    self._metrics.Start(page, tab)

  def ValidateAndMeasurePage(self, page, tab, results):
    # Wait for the load event.
    tab.WaitForJavaScriptCondition(
        'performance.timing.loadEventStart', timeout=300)
    self._metrics.Stop(page, tab)
    self._metrics.AddResultsForDataSaving(tab, results)


class ChromeProxyHeaders(ChromeProxyValidation):
  """Correctness measurement for response headers."""

  def __init__(self):
    super(ChromeProxyHeaders, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def AddResults(self, tab, results):
    self._metrics.AddResultsForHeaderValidation(tab, results)


class ChromeProxyBypass(ChromeProxyValidation):
  """Correctness measurement for bypass responses."""

  def __init__(self):
    super(ChromeProxyBypass, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def AddResults(self, tab, results):
    self._metrics.AddResultsForBypass(tab, results)


class ChromeProxyHTTPSBypass(ChromeProxyValidation):
  """Correctness measurement for bypass responses."""

  def __init__(self):
    super(ChromeProxyHTTPSBypass, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def AddResults(self, tab, results):
    self._metrics.AddResultsForHTTPSBypass(tab, results)


class ChromeProxyYouTube(ChromeProxyValidation):
  """Correctness measurement for youtube video playback."""

  def __init__(self):
    super(ChromeProxyYouTube, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def AddResults(self, tab, results):
    self._metrics.AddResultsForYouTube(tab, results)


class ChromeProxyHTML5Test(ChromeProxyValidation):
  """Correctness measurement for html5test page."""

  def __init__(self):
    super(ChromeProxyHTML5Test, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def AddResults(self, tab, results):
    self._metrics.AddResultsForHTML5Test(tab, results)


class ChromeProxyCorsBypass(ChromeProxyValidation):
  """Correctness measurement for bypass responses for CORS requests."""

  def __init__(self):
    super(ChromeProxyCorsBypass, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def ValidateAndMeasurePage(self, page, tab, results):
    # The test page sets window.xhrRequestCompleted to true when the XHR fetch
    # finishes.
    tab.WaitForJavaScriptCondition('window.xhrRequestCompleted', timeout=300)
    super(ChromeProxyCorsBypass,
          self).ValidateAndMeasurePage(page, tab, results)

  def AddResults(self, tab, results):
    self._metrics.AddResultsForCorsBypass(tab, results)


class ChromeProxyBlockOnce(ChromeProxyValidation):
  """Correctness measurement for block-once responses."""

  def __init__(self):
    super(ChromeProxyBlockOnce, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def AddResults(self, tab, results):
    self._metrics.AddResultsForBlockOnce(tab, results)


class ChromeProxySafebrowsingOn(ChromeProxyValidation):
  """Correctness measurement for safebrowsing."""

  def __init__(self):
    super(ChromeProxySafebrowsingOn, self).__init__(
        metrics=metrics.ChromeProxyMetric())

  def AddResults(self, tab, results):
    self._metrics.AddResultsForSafebrowsingOn(tab, results)

class ChromeProxySafebrowsingOff(ChromeProxyValidation):
  """Correctness measurement for safebrowsing."""

  def __init__(self):
    super(ChromeProxySafebrowsingOff, self).__init__(
        metrics=metrics.ChromeProxyMetric())

  def AddResults(self, tab, results):
    self._metrics.AddResultsForSafebrowsingOff(tab, results)

_FAKE_PROXY_AUTH_VALUE = 'aabbccdd3b7579186c1b0620614fdb1f0000ffff'
_TEST_SERVER = 'chromeproxy-test.appspot.com'
_TEST_SERVER_DEFAULT_URL = 'http://' + _TEST_SERVER + '/default'


# We rely on the chromeproxy-test server to facilitate some of the tests.
# The test server code is at <TBD location> and runs at _TEST_SERVER
#
# The test server allow request to override response status, headers, and
# body through query parameters. See GetResponseOverrideURL.
def GetResponseOverrideURL(url=_TEST_SERVER_DEFAULT_URL, respStatus=0,
                           respHeader="", respBody=""):
  """ Compose the request URL with query parameters to override
  the chromeproxy-test server response.
  """

  queries = []
  if respStatus > 0:
    queries.append('respStatus=%d' % respStatus)
  if respHeader:
    queries.append('respHeader=%s' % base64.b64encode(respHeader))
  if respBody:
    queries.append('respBody=%s' % base64.b64encode(respBody))
  if len(queries) == 0:
    return url
  "&".join(queries)
  # url has query already
  if urlparse.urlparse(url).query:
    return url + '&' + "&".join(queries)
  else:
    return url + '?' + "&".join(queries)

class ChromeProxyBadHTTPSFallback(ChromeProxyValidation):
  """Checks the client falls back to HTTP proxy when HTTPS proxy errors."""

  def __init__(self):
    super(ChromeProxyBadHTTPSFallback, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())
    self._is_chrome_proxy_enabled = True

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyBadHTTPSFallback, self).CustomizeBrowserOptions(
        options)

  def AddResults(self, tab, results):
    self._metrics.AddResultsForBadHTTPSFallback(tab, results)

class ChromeProxyHTTPFallbackProbeURL(ChromeProxyValidation):
  """Correctness measurement for proxy fallback.

  In this test, the probe URL does not return 'OK'. Chrome is expected
  to use the fallback proxy.
  """

  def __init__(self):
    super(ChromeProxyHTTPFallbackProbeURL, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyHTTPFallbackProbeURL,
          self).CustomizeBrowserOptions(options)
    # Set the secure proxy check URL to the google.com favicon, which will be
    # interpreted as a secure proxy check failure since the response body is not
    # "OK". The google.com favicon is used because it will load reliably fast,
    # and there have been problems with chromeproxy-test.appspot.com being slow
    # and causing tests to flake.
    options.AppendExtraBrowserArgs(
        '--data-reduction-proxy-secure-proxy-check-url='
        'http://www.google.com/favicon.ico')

  def AddResults(self, tab, results):
    self._metrics.AddResultsForHTTPFallback(tab, results)


class ChromeProxyHTTPFallbackViaHeader(ChromeProxyValidation):
  """Correctness measurement for proxy fallback.

  In this test, the configured proxy is the chromeproxy-test server which
  will send back a response without the expected Via header. Chrome is
  expected to use the fallback proxy and add the configured proxy to the
  bad proxy list.
  """

  def __init__(self):
    super(ChromeProxyHTTPFallbackViaHeader, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyHTTPFallbackViaHeader,
          self).CustomizeBrowserOptions(options)
    options.AppendExtraBrowserArgs('--ignore-certificate-errors')
    # Set the primary Data Reduction Proxy to be the test server. The test
    # doesn't know if Chrome is configuring the DRP using the Data Saver API or
    # not, so the appropriate flags are set for both cases.
    options.AppendExtraBrowserArgs(
        '--spdy-proxy-auth-origin=http://%s' % _TEST_SERVER)
    options.AppendExtraBrowserArgs(
        '--data-reduction-proxy-http-proxies='
        'http://%s;http://compress.googlezip.net' % _TEST_SERVER)

  def AddResults(self, tab, results):
    self._metrics.AddResultsForHTTPFallback(tab, results)


class ChromeProxyClientType(ChromeProxyValidation):
  """Correctness measurement for Chrome-Proxy header client type directives."""

  def __init__(self):
    super(ChromeProxyClientType, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())
    self._chrome_proxy_client_type = None

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyClientType, self).CustomizeBrowserOptions(options)
    options.AppendExtraBrowserArgs('--disable-quic')

  def AddResults(self, tab, results):
    # Get the Chrome-Proxy client type from the first page in the page set, so
    # that the client type value can be used to determine which of the later
    # pages in the page set should be bypassed.
    if not self._chrome_proxy_client_type:
      client_type = self._metrics.GetClientTypeFromRequests(tab)
      if client_type:
        self._chrome_proxy_client_type = client_type

    self._metrics.AddResultsForClientType(tab,
                                          results,
                                          self._chrome_proxy_client_type,
                                          self._page.bypass_for_client_type)


class ChromeProxyLoFi(ChromeProxyValidation):
  """Correctness measurement for Lo-Fi in Chrome-Proxy header."""

  def __init__(self):
    super(ChromeProxyLoFi, self).__init__(restart_after_each_page=True,
                                          metrics=metrics.ChromeProxyMetric())

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyLoFi, self).CustomizeBrowserOptions(options)
    options.AppendExtraBrowserArgs('--data-reduction-proxy-lo-fi=always-on')
    # Disable server experiments such as tamper detection.
    options.AppendExtraBrowserArgs(
        '--data-reduction-proxy-server-experiments-disabled')
    options.AppendExtraBrowserArgs('--disable-quic')

  def AddResults(self, tab, results):
    self._metrics.AddResultsForLoFi(tab, results)

class ChromeProxyCacheLoFiDisabled(ChromeProxyValidation):
  """
  Correctness measurement for Lo-Fi placeholder is not loaded from cache when a
  page is reloaded with LoFi disabled. First a test page is opened with LoFi and
  chrome proxy enabled. This allows Chrome to cache the LoFi placeholder image.
  The browser is restarted with LoFi disabled and the same test page is loaded.
  This second page load should not pick the LoFi placeholder from cache and
  original image should be loaded. This test should be run with
  --profile-type=default command line for the same user profile and cache to be
  used across the two page loads.
  """

  def __init__(self):
    super(ChromeProxyCacheLoFiDisabled, self).__init__(
            restart_after_each_page=True,
            metrics=metrics.ChromeProxyMetric(),
            clear_cache_before_each_run=False)

  def AddResults(self, tab, results):
    self._metrics.AddResultsForLoFiCache(tab, results, self._is_lo_fi_enabled)

  def WillStartBrowser(self, platform):
    super(ChromeProxyCacheLoFiDisabled, self).WillStartBrowser(platform)
    self.options.AppendExtraBrowserArgs('--disable-quic')
    if not self._page:
      # First page load, enable LoFi and chrome proxy. Disable server
      # experiments such as tamper detection.
      self.options.AppendExtraBrowserArgs(
            '--data-reduction-proxy-lo-fi=always-on')
      self.options.AppendExtraBrowserArgs(
        '--data-reduction-proxy-server-experiments-disabled')
      self._is_lo_fi_enabled = True
    else:
      # Second page load, disable LoFi. Chrome proxy is still enabled. Disable
      # server experiments such as tamper detection.
      self.options.browser_options.extra_browser_args.discard(
            '--data-reduction-proxy-lo-fi=always-on')
      self.options.AppendExtraBrowserArgs(
        '--data-reduction-proxy-server-experiments-disabled')
      self._is_lo_fi_enabled = False

  def WillNavigateToPage(self, page, tab):
    super(ChromeProxyCacheLoFiDisabled, self).WillNavigateToPage(page, tab)
    if self._is_lo_fi_enabled:
      # Clear cache for the first page to pick LoFi image from server.
      tab.ClearCache(force=True)

  def DidNavigateToPage(self, page, tab):
    if not self._is_lo_fi_enabled:
      tab.ExecuteJavaScript('window.location.reload()')
      util.WaitFor(tab.HasReachedQuiescence, 3)

class ChromeProxyCacheProxyDisabled(ChromeProxyValidation):
  """
  Correctness measurement for Lo-Fi placeholder is not loaded from cache when a
  page is reloaded with data reduction proxy disabled. First a test page is
  opened with LoFi and chrome proxy enabled. This allows Chrome to cache the
  LoFi placeholder image. The browser is restarted with chrome proxy disabled
  and the same test page is loaded. This second page load should not pick the
  LoFi placeholder from cache and original image should be loaded. This test
  should be run with --profile-type=default command line for the same user
  profile and cache to be used across the two page loads.
  """

  def __init__(self):
    super(ChromeProxyCacheProxyDisabled, self).__init__(
            restart_after_each_page=True,
            metrics=metrics.ChromeProxyMetric(),
            clear_cache_before_each_run=False)

  def AddResults(self, tab, results):
    self._metrics.AddResultsForLoFiCache(tab, results,
                                         self._is_chrome_proxy_enabled)

  def WillStartBrowser(self, platform):
    super(ChromeProxyCacheProxyDisabled, self).WillStartBrowser(platform)
    self.options.AppendExtraBrowserArgs('--disable-quic')
    if not self._page:
      # First page load, enable LoFi and chrome proxy. Disable server
      # experiments such as tamper detection.
      self.options.AppendExtraBrowserArgs(
            '--data-reduction-proxy-lo-fi=always-on')
      self.options.AppendExtraBrowserArgs(
        '--data-reduction-proxy-server-experiments-disabled')
    else:
      # Second page load, disable chrome proxy. LoFi is still enabled.
      self.DisableChromeProxy()

  def WillNavigateToPage(self, page, tab):
    super(ChromeProxyCacheProxyDisabled, self).WillNavigateToPage(page, tab)
    if self._is_chrome_proxy_enabled:
      # Clear cache for the first page to pick LoFi image from server.
      tab.ClearCache(force=True)

  def DidNavigateToPage(self, page, tab):
    if not self._is_chrome_proxy_enabled:
      tab.ExecuteJavaScript('window.location.reload()')
      util.WaitFor(tab.HasReachedQuiescence, 3)

class ChromeProxyLitePage(ChromeProxyValidation):
  """Correctness measurement for lite pages in the Chrome-Proxy header."""

  def __init__(self):
    super(ChromeProxyLitePage, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyLitePage, self).CustomizeBrowserOptions(options)
    options.AppendExtraBrowserArgs(
        '--data-reduction-proxy-lo-fi=always-on')
    options.AppendExtraBrowserArgs(
        '--enable-data-reduction-proxy-lite-page')
    options.AppendExtraBrowserArgs('--disable-quic')

  def AddResults(self, tab, results):
    self._metrics.AddResultsForLitePage(tab, results)

class ChromeProxyExpDirective(ChromeProxyValidation):
  """Correctness measurement for experiment directives in Chrome-Proxy header.

  This test verifies that "exp=test" in the Chrome-Proxy request header
  causes a bypass on the experiment test page.
  """

  def __init__(self):
    super(ChromeProxyExpDirective, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyExpDirective, self).CustomizeBrowserOptions(options)
    options.AppendExtraBrowserArgs('--data-reduction-proxy-experiment=test')

  def AddResults(self, tab, results):
    self._metrics.AddResultsForBypass(tab, results, url_pattern='/exp/')

class ChromeProxyPassThrough(ChromeProxyValidation):
  """Correctness measurement for Chrome-Proxy-Accept-Transform identity
  directives.

  This test verifies that "identity" in the Chrome-Proxy-Accept-Transform
  request header causes a resource to be loaded without Data Reduction Proxy
  transformations.
  """

  def __init__(self):
    super(ChromeProxyPassThrough, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyPassThrough, self).CustomizeBrowserOptions(options)
    options.AppendExtraBrowserArgs('--disable-quic')

  def AddResults(self, tab, results):
    self._metrics.AddResultsForPassThrough(tab, results)

class ChromeProxyHTTPToDirectFallback(ChromeProxyValidation):
  """Correctness measurement for HTTP proxy fallback to direct."""

  def __init__(self):
    super(ChromeProxyHTTPToDirectFallback, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyHTTPToDirectFallback,
          self).CustomizeBrowserOptions(options)
    # Set the primary proxy to something that will fail to be resolved so that
    # this test will run using the HTTP fallback proxy. The test doesn't know if
    # Chrome is configuring the DRP using the Data Saver API or not, so the
    # appropriate flags are set for both cases.
    options.AppendExtraBrowserArgs(
        '--spdy-proxy-auth-origin=http://nonexistent.googlezip.net')
    options.AppendExtraBrowserArgs(
        '--data-reduction-proxy-http-proxies='
        'http://nonexistent.googlezip.net;http://compress.googlezip.net')

  def WillNavigateToPage(self, page, tab):
    super(ChromeProxyHTTPToDirectFallback, self).WillNavigateToPage(page, tab)
    # Attempt to load a page through the nonexistent primary proxy in order to
    # cause a proxy fallback, and have this test run starting from the HTTP
    # fallback proxy.
    tab.Navigate(_TEST_SERVER_DEFAULT_URL)
    tab.WaitForJavaScriptCondition(
        'performance.timing.loadEventStart', timeout=300)

  def AddResults(self, tab, results):
    self._metrics.AddResultsForHTTPToDirectFallback(tab, results, _TEST_SERVER)


class ChromeProxyReenableAfterBypass(ChromeProxyValidation):
  """Correctness measurement for re-enabling proxies after bypasses.

  This test loads a page that causes all data reduction proxies to be bypassed
  for 1 to 5 minutes, then waits 5 minutes and verifies that the proxy is no
  longer bypassed.
  """

  def __init__(self):
    super(ChromeProxyReenableAfterBypass, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def AddResults(self, tab, results):
    self._metrics.AddResultsForReenableAfterBypass(
        tab, results, self._page.bypass_seconds_min,
        self._page.bypass_seconds_max)


class ChromeProxyReenableAfterSetBypass(ChromeProxyValidation):
  """Correctness test for re-enabling proxies after bypasses with set duration.

  This test loads a page that causes all data reduction proxies to be bypassed
  for 20 seconds.
  """

  def __init__(self):
    super(ChromeProxyReenableAfterSetBypass, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def AddResults(self, tab, results):
    self._metrics.AddResultsForReenableAfterSetBypass(
        tab, results, self._page.BYPASS_SECONDS)


class ChromeProxySmoke(ChromeProxyValidation):
  """Smoke measurement for basic chrome proxy correctness."""

  def __init__(self):
    super(ChromeProxySmoke, self).__init__(restart_after_each_page=True,
                                           metrics=metrics.ChromeProxyMetric())

  def AddResults(self, tab, results):
    # Map a page name to its AddResults func.
    page_to_metrics = {
        'header validation': [self._metrics.AddResultsForHeaderValidation],
        'compression: image': [
            self._metrics.AddResultsForHeaderValidation,
            self._metrics.AddResultsForDataSaving,
            ],
        'compression: javascript': [
            self._metrics.AddResultsForHeaderValidation,
            self._metrics.AddResultsForDataSaving,
            ],
        'compression: css': [
            self._metrics.AddResultsForHeaderValidation,
            self._metrics.AddResultsForDataSaving,
            ],
        'bypass': [self._metrics.AddResultsForBypass],
        }
    if not self._page.name in page_to_metrics:
      raise page_test.MeasurementFailure(
          'Invalid page name (%s) in smoke. Page name must be one of:\n%s' % (
          self._page.name, page_to_metrics.keys()))
    for add_result in page_to_metrics[self._page.name]:
      add_result(tab, results)

class ChromeProxyQuicSmoke(legacy_page_test.LegacyPageTest):
  """Smoke measurement for basic chrome proxy correctness when using a
  proxy that supports QUIC."""

  def __init__(self, *args, **kwargs):
    super(ChromeProxyQuicSmoke, self).__init__(*args, **kwargs)
    self._metrics = metrics.ChromeProxyMetric()
    self._enable_proxy = True

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyQuicSmoke, self).CustomizeBrowserOptions(options)
    options.AppendExtraBrowserArgs(
      '--enable-quic')
    options.AppendExtraBrowserArgs(
      '--data-reduction-proxy-http-proxies=https://proxy.googlezip.net:443')
    options.AppendExtraBrowserArgs(
      '--force-fieldtrials=DataReductionProxyUseQuic/Enabled')
    options.AppendExtraBrowserArgs('--enable-spdy-proxy-auth')

  def WillNavigateToPage(self, page, tab):
    if self._enable_proxy:
      measurements.WaitForViaHeader(tab)
    tab.ClearCache(force=True)
    self._metrics.Start(page, tab)

  def ValidateAndMeasurePage(self, page, tab, results):
    # Wait for the load event.
    tab.WaitForJavaScriptCondition(
        'performance.timing.loadEventStart', timeout=300)
    self._metrics.Stop(page, tab)
    page_to_metrics = {
        'header validation': [self._metrics.AddResultsForHeaderValidation],
        'compression: image': [
            self._metrics.AddResultsForHeaderValidation,
            self._metrics.AddResultsForDataSaving,
            ],
        'compression: javascript': [
            self._metrics.AddResultsForHeaderValidation,
            self._metrics.AddResultsForDataSaving,
            ],
        'compression: css': [
            self._metrics.AddResultsForHeaderValidation,
            self._metrics.AddResultsForDataSaving,
            ],
        'bypass': [self._metrics.AddResultsForBypass],
        }
    if not page.name in page_to_metrics:
      raise page_test.MeasurementFailure(
          'Invalid page name (%s) in QUIC smoke. '
          'Page name must be one of:\n%s' % (
          page.name, page_to_metrics.keys()))
    for add_result in page_to_metrics[page.name]:
      add_result(tab, results)

PROXIED = metrics.PROXIED
DIRECT = metrics.DIRECT

class ChromeProxyClientConfig(ChromeProxyValidation):
  """Chrome proxy client configuration service validation."""

  def __init__(self):
    super(ChromeProxyClientConfig, self).__init__(
        restart_after_each_page=True,
        metrics=metrics.ChromeProxyMetric())

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyClientConfig, self).CustomizeBrowserOptions(options)
    options.AppendExtraBrowserArgs(
      '--enable-data-reduction-proxy-config-client')
    options.AppendExtraBrowserArgs('--disable-quic')

  def AddResults(self, tab, results):
    self._metrics.AddResultsForClientConfig(tab, results)

class ChromeProxyVideoValidation(legacy_page_test.LegacyPageTest):
  """Validation for video pages.

  Measures pages using metrics.ChromeProxyVideoMetric. Pages can be fetched
  either direct from the origin server or via the proxy. If a page is fetched
  both ways, then the PROXIED and DIRECT measurements are compared to ensure
  the same video was loaded in both cases.
  """

  def __init__(self):
    super(ChromeProxyVideoValidation, self).__init__(
        needs_browser_restart_after_each_page=True,
        clear_cache_before_each_run=True)
    # The type is _allMetrics[url][PROXIED,DIRECT][metricName] = value,
    # where (metricName,value) is a metric computed by videowrapper.js.
    self._allMetrics = {}

  def WillNavigateToPage(self, page, tab):
    if page.use_chrome_proxy:
      measurements.WaitForViaHeader(tab)
    super(ChromeProxyVideoValidation, self).WillNavigateToPage(page, tab)

  def DidNavigateToPage(self, page, tab):
    self._currMetrics = metrics.ChromeProxyVideoMetric(tab)
    self._currMetrics.Start(page, tab)

  def ValidateAndMeasurePage(self, page, tab, results):
    assert self._currMetrics
    self._currMetrics.Stop(page, tab)
    if page.url not in self._allMetrics:
      self._allMetrics[page.url] = {}

    # Verify this page.
    if page.use_chrome_proxy:
      self._currMetrics.AddResultsForProxied(tab, results)
      self._allMetrics[page.url][PROXIED] = self._currMetrics.videoMetrics
    else:
      self._currMetrics.AddResultsForDirect(tab, results)
      self._allMetrics[page.url][DIRECT] = self._currMetrics.videoMetrics
    self._currMetrics = None

    # Compare proxied and direct results for this url, if they exist.
    m = self._allMetrics[page.url]
    if PROXIED in m and DIRECT in m:
      self._CompareProxiedAndDirectMetrics(page.url, m[PROXIED], m[DIRECT])

  def _CompareProxiedAndDirectMetrics(self, url, pm, dm):
    """Compare metrics from PROXIED and DIRECT fetches.

    Compares video metrics computed by videowrapper.js for pages that were
    fetch both PROXIED and DIRECT.

    Args:
        url: The url for the page being tested.
        pm: Metrics when loaded by the Flywheel proxy.
        dm: Metrics when loaded directly from the origin server.

    Raises:
        ChromeProxyMetricException on failure.
    """
    def err(s):
      raise ChromeProxyMetricException, s

    if not pm['ready']:
      err('Proxied page did not load video: %s' % page.url)
    if not dm['ready']:
      err('Direct page did not load video: %s' % page.url)

    # Compare metrics that should match for PROXIED and DIRECT.
    for x in ('video_height', 'video_width', 'video_duration',
              'decoded_frames'):
      if x not in pm:
        err('Proxied page has no %s: %s' % (x, page.url))
      if x not in dm:
        err('Direct page has no %s: %s' % (x, page.url))
      if pm[x] != dm[x]:
        err('Mismatch for %s (proxied=%s direct=%s): %s' %
            (x, str(pm[x]), str(dm[x]), page.url))

    # Proxied XOCL should match direct CL.
    pxocl = pm['x_original_content_length_header']
    dcl = dm['content_length_header']
    if pxocl != dcl:
      err('Mismatch for content length (proxied=%s direct=%s): %s' %
          (str(pxocl), str(dcl), page.url))

class ChromeProxyInstrumentedVideoValidation(legacy_page_test.LegacyPageTest):
  """Tests a specially instrumented page for correct video transcoding."""

  def __init__(self):
    super(ChromeProxyInstrumentedVideoValidation, self).__init__(
        needs_browser_restart_after_each_page=True,
        clear_cache_before_each_run=True)
    self._metrics = metrics.ChromeProxyInstrumentedVideoMetric()

  def CustomizeBrowserOptions(self, options):
    options.AppendExtraBrowserArgs('--enable-spdy-proxy-auth')

  def WillNavigateToPage(self, page, tab):
    measurements.WaitForViaHeader(tab)
    tab.ClearCache(force=True)
    self._metrics.Start(page, tab)

  def ValidateAndMeasurePage(self, page, tab, results):
    self._metrics.Stop(page, tab)
    self._metrics.AddResults(tab, results)

class ChromeProxyPingback(ChromeProxyValidation):
  """Chrome proxy pageload metrics pingback service validation."""

  def __init__(self):
    super(ChromeProxyPingback, self).__init__(
        metrics=metrics.ChromeProxyMetric())

  def CustomizeBrowserOptions(self, options):
    super(ChromeProxyPingback, self).CustomizeBrowserOptions(options)
    options.AppendExtraBrowserArgs(
      '--enable-data-reduction-proxy-force-pingback')
    options.AppendExtraBrowserArgs(
      '--enable-stats-collection-bindings')

  def AddResults(self, tab, results):
    self._metrics.AddResultsForPingback(tab, results)

class ChromeProxyQuicTransaction(legacy_page_test.LegacyPageTest):
  """Chrome quic proxy usage validation when connecting to a proxy that
  supports QUIC."""

  def __init__(self, *args, **kwargs):
    super(ChromeProxyQuicTransaction, self).__init__(*args, **kwargs)
    self._metrics = metrics.ChromeProxyMetric()
    self._enable_proxy = True

  def CustomizeBrowserOptions(self, options):
    options.AppendExtraBrowserArgs(
      '--enable-quic')
    options.AppendExtraBrowserArgs(
      '--data-reduction-proxy-http-proxies=https://proxy.googlezip.net:443')
    options.AppendExtraBrowserArgs(
      '--force-fieldtrials=DataReductionProxyUseQuic/Enabled')
    options.AppendExtraBrowserArgs('--enable-spdy-proxy-auth')
    options.AppendExtraBrowserArgs(
      '--enable-stats-collection-bindings')

  def WillNavigateToPage(self, page, tab):
    if self._enable_proxy:
      measurements.WaitForViaHeader(tab)
    tab.ClearCache(force=True)
    self._metrics.Start(page, tab)

  def ValidateAndMeasurePage(self, page, tab, results):
    # Wait for the load event.
    tab.WaitForJavaScriptCondition(
        'performance.timing.loadEventStart', timeout=300)
    self._metrics.Stop(page, tab)
    self._metrics.AddResultsForQuicTransaction(tab, results)