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

Unified Diff: tools/telemetry/telemetry/inspector_console_unittest.py

Issue 12278015: [Telemetry] Reorganize everything. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-add shebangs. 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/inspector_console.py ('k') | tools/telemetry/telemetry/inspector_page.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/inspector_console_unittest.py
diff --git a/tools/telemetry/telemetry/inspector_console_unittest.py b/tools/telemetry/telemetry/inspector_console_unittest.py
deleted file mode 100644
index a7e14f5b0f750873674aa561536fe7d4ed319664..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/inspector_console_unittest.py
+++ /dev/null
@@ -1,36 +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
-import re
-import StringIO
-
-from telemetry import tab_test_case
-from telemetry import util
-
-class TabConsoleTest(tab_test_case.TabTestCase):
- def testConsoleOutputStream(self):
- unittest_data_dir = os.path.join(os.path.dirname(__file__),
- '..', 'unittest_data')
- self._browser.SetHTTPServerDirectory(unittest_data_dir)
-
- stream = StringIO.StringIO()
- self._tab.message_output_stream = stream
-
- self._tab.Navigate(
- self._browser.http_server.UrlOf('page_that_logs_to_console.html'))
- self._tab.WaitForDocumentReadyStateToBeComplete()
-
- initial = self._tab.EvaluateJavaScript('window.__logCount')
- def GotLog():
- current = self._tab.EvaluateJavaScript('window.__logCount')
- return current > initial
- util.WaitFor(GotLog, 5)
-
- lines = [l for l in stream.getvalue().split('\n') if len(l)]
-
- self.assertTrue(len(lines) >= 1)
- for l in lines:
- u_l = 'http://localhost:(\d+)/page_that_logs_to_console.html:9'
- self.assertTrue(re.match('At %s: Hello, world' % u_l, l))
-
« no previous file with comments | « tools/telemetry/telemetry/inspector_console.py ('k') | tools/telemetry/telemetry/inspector_page.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698