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

Unified Diff: tools/chrome_proxy/webdriver/video.py

Issue 2696793003: Add video frames and volume tests (Closed)
Patch Set: Move via header assertion Created 3 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/chrome_proxy/webdriver/video.py
diff --git a/tools/chrome_proxy/webdriver/video.py b/tools/chrome_proxy/webdriver/video.py
index ef02a0f278e79020b58dfa4e5c31c197b248389b..9755e045fe301cdb0a298feb976dca399dfbb03f 100644
--- a/tools/chrome_proxy/webdriver/video.py
+++ b/tools/chrome_proxy/webdriver/video.py
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import time
+
import common
from common import TestDriver
from common import IntegrationTest
@@ -40,5 +42,49 @@ class Video(IntegrationTest):
self.assertHasChromeProxyViaHeader(response)
self.assertTrue(saw_video_response, 'No video request seen in test!')
+ # Check the frames of a compressed video.
+ def testVideoFrames(self):
+ self.instrumentedVideoTest('http://check.googlezip.net/cacheable/video/buck_bunny_640x360_24fps_video.html')
+
+ # Check the audio volume of a compressed video.
+ def testVideoAudio(self):
+ self.instrumentedVideoTest('http://check.googlezip.net/cacheable/video/buck_bunny_640x360_24fps_audio.html')
+
+ def instrumentedVideoTest(self, url):
+ """Run an instrumented video test. The given page is reloaded up to some
+ maximum number of times until a compressed video is seen by ChromeDriver by
+ inspecting the network logs. Once that happens, test.ready is set and that
+ will signal the Javascript test on the page to begin. Once it is complete,
+ check the results.
+ """
+ # The maximum number of times to attempt to reload the page for a compressed
+ # video.
+ max_attempts = 10
+ with TestDriver() as t:
+ t.AddChromeArg('--enable-spdy-proxy-auth')
+ loaded_compressed_video = False
+ attempts = 0
+ while not loaded_compressed_video and attempts < max_attempts:
+ t.LoadURL(url)
+ attempts += 1
+ for resp in t.GetHTTPResponses():
+ if ('content-type' in resp.response_headers
+ and resp.response_headers['content-type'] == 'video/webm'):
+ loaded_compressed_video = True
+ self.assertHasChromeProxyViaHeader(resp)
+ else:
+ # Take a breath before requesting again.
+ time.sleep(1)
+ if attempts >= max_attempts:
+ self.fail('Could not get a compressed video after %d tries' % attempts)
+ t.ExecuteJavascriptStatement('test.ready = true')
+ wait_time = int(t.ExecuteJavascriptStatement('test.waitTime'))
+ t.WaitForJavascriptExpression('test.metrics.complete', wait_time)
+ metrics = t.ExecuteJavascriptStatement('test.metrics')
+ if not metrics['complete']:
+ raise Exception('Test not complete after %d seconds.' % wait_time)
+ if metrics['failed']:
+ raise Exception('Test failed!')
+
if __name__ == '__main__':
IntegrationTest.RunAllTests()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698