| # Copyright (c) 2012 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 logging |
| import os |
| import time |
| |
| from autotest_lib.client.bin import test, utils |
| from autotest_lib.client.common_lib import error |
| from autotest_lib.client.common_lib.cros import chrome |
| from autotest_lib.client.cros.power import sys_power |
| |
| |
| class power_FlashVideoSuspend(test.test): |
| """Suspend the system with a video playing.""" |
| version = 2 |
| |
| def run_once(self, video_url=None): |
| utils.verify_flash_installed() |
| with chrome.Chrome(init_network_controller=True) 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, 'youtube.html'))) |
| self.suspend_with_youtube(cr.browser.tabs[0], video_url) |
| |
| |
| def check_video_is_playing(self, tab): |
| """ |
| Checks if video is playing or not. |
| |
| @param tab: Object to the browser tab |
| """ |
| def get_current_time(): |
| """Get current time from the javascript.""" |
| return tab.EvaluateJavaScript('player.getCurrentTime()') |
| |
| old_time = get_current_time() |
| utils.poll_for_condition( |
| condition=lambda: get_current_time() > old_time, |
| exception=error.TestError('Player is stuck until timeout.')) |
| |
| |
| def suspend_with_youtube(self, tab, video_url): |
| """ |
| Suspends kernel while video is running in browser. |
| |
| @param tab: Object to the browser tab |
| @param video_url: Object to video url |
| """ |
| tab.WaitForDocumentReadyStateToBeInteractiveOrBetter() |
| logging.info('video url is %s', video_url) |
| tab.EvaluateJavaScript('play("%s")' % video_url) |
| tab.WaitForJavaScriptCondition('typeof player != "undefined"', |
| timeout=10) |
| |
| self.check_video_is_playing(tab) |
| |
| time.sleep(2) |
| try: |
| sys_power.do_suspend(10) |
| except Exception as e: |
| logging.error(e) |
| raise error.TestFail('====Kernel suspend failed====') |
| time.sleep(2) |
| |
| self.check_video_is_playing(tab) |