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

Unified Diff: tools/telemetry/telemetry/core/tab_unittest.py

Issue 12294002: Revert 182991 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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 | « tools/telemetry/telemetry/core/tab_list.py ('k') | tools/telemetry/telemetry/core/temporary_http_server.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/core/tab_unittest.py
===================================================================
--- tools/telemetry/telemetry/core/tab_unittest.py (revision 182999)
+++ tools/telemetry/telemetry/core/tab_unittest.py (working copy)
@@ -1,66 +0,0 @@
-# Copyright (c) 2012 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 os
-
-from telemetry.core import util
-from telemetry.core import exceptions
-from telemetry.test import tab_test_case
-
-
-def _IsDocumentVisible(tab):
- state = tab.EvaluateJavaScript('document.webkitVisibilityState')
- # TODO(dtu): Remove when crbug.com/166243 is fixed.
- tab.Disconnect()
- return state == 'visible'
-
-
-class TabTest(tab_test_case.TabTestCase):
- def testNavigateAndWaitToForCompleteState(self):
- self._tab.Navigate('http://www.google.com')
- self._tab.WaitForDocumentReadyStateToBeComplete()
-
- def testNavigateAndWaitToForInteractiveState(self):
- self._tab.Navigate('http://www.google.com')
- self._tab.WaitForDocumentReadyStateToBeInteractiveOrBetter()
-
- def testTabBrowserIsRightBrowser(self):
- self.assertEquals(self._tab.browser, self._browser)
-
- def testRendererCrash(self):
- self.assertRaises(exceptions.TabCrashException,
- lambda: self._tab.Navigate('chrome://crash',
- timeout=5))
-
- def testActivateTab(self):
- if not self._browser.supports_tab_control:
- return
- self.assertTrue(_IsDocumentVisible(self._tab))
- new_tab = self._browser.tabs.New()
- util.WaitFor(lambda: _IsDocumentVisible(new_tab), timeout=5)
- self.assertFalse(_IsDocumentVisible(self._tab))
- self._tab.Activate()
- util.WaitFor(lambda: _IsDocumentVisible(self._tab), timeout=5)
- self.assertFalse(_IsDocumentVisible(new_tab))
-
-
-class GpuTabTest(tab_test_case.TabTestCase):
- def setUp(self):
- self._extra_browser_args = ['--enable-gpu-benchmarking']
- super(GpuTabTest, self).setUp()
-
- def testScreenshot(self):
- unittest_data_dir = os.path.join(os.path.dirname(__file__),
- '..', '..', 'unittest_data')
- self._browser.SetHTTPServerDirectory(unittest_data_dir)
- self._tab.Navigate(
- self._browser.http_server.UrlOf('green_rect.html'))
- self._tab.WaitForDocumentReadyStateToBeComplete()
-
- # Skip this test if running against a browser without screenshot support
- if self._tab.screenshot_supported:
- screenshot = self._tab.Screenshot(5)
- assert screenshot
- screenshot.GetPixelColor(0, 0).AssertIsRGB(0, 255, 0)
- screenshot.GetPixelColor(31, 31).AssertIsRGB(0, 255, 0)
- screenshot.GetPixelColor(32, 32).AssertIsRGB(255, 255, 255)
« no previous file with comments | « tools/telemetry/telemetry/core/tab_list.py ('k') | tools/telemetry/telemetry/core/temporary_http_server.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698