| 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))
|
| -
|
|
|