blob: b05fc4a27363adb59c8c65f013b41612dc39de0a [file] [log] [blame]
# Copyright (c) 2013 The Chromium OS 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 os
from autotest_lib.client.bin import test
from autotest_lib.client.common_lib.cros import chrome
class video_VideoCorruption(test.test):
"""This test verifies playing corrupted video in Chrome."""
version = 1
def run_once(self, video):
"""Tests whether Chrome handles corrupted videos gracefully.
@param video: Sample corrupted video file to be played in Chrome.
"""
with chrome.Chrome() as cr:
cr.browser.platform.SetHTTPServerDirectories(self.bindir)
tab = cr.browser.tabs[0]
tab.Navigate(cr.browser.platform.http_server.UrlOf(
os.path.join(self.bindir, 'video.html')))
tab.WaitForDocumentReadyStateToBeComplete()
tab.EvaluateJavaScript(
'loadSourceAndRunCorruptionTest("%s")' % video)
# Expect corruption being detected after playing corrupted video.
tab.WaitForJavaScriptExpression('corruptionDetected();', 30)