| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import tempfile | 5 import tempfile |
| 6 import os | 6 import os |
| 7 | 7 |
| 8 from telemetry.core import exceptions | 8 from telemetry.core import exceptions |
| 9 from telemetry import decorators | 9 from telemetry import decorators |
| 10 from telemetry.testing import tab_test_case | 10 from telemetry.testing import tab_test_case |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 # Stack traces aren't working on Android yet. | 24 # Stack traces aren't working on Android yet. |
| 25 @decorators.Enabled('mac', 'linux') | 25 @decorators.Enabled('mac', 'linux') |
| 26 @decorators.Disabled('snowleopard') | 26 @decorators.Disabled('snowleopard') |
| 27 def testCrashSymbols(self): | 27 def testCrashSymbols(self): |
| 28 with self.assertRaises(exceptions.DevtoolsTargetCrashException) as c: | 28 with self.assertRaises(exceptions.DevtoolsTargetCrashException) as c: |
| 29 self._tab.Navigate('chrome://crash', timeout=5) | 29 self._tab.Navigate('chrome://crash', timeout=5) |
| 30 self.assertIn('CrashIntentionally', '\n'.join(c.exception.stack_trace)) | 30 self.assertIn('CrashIntentionally', '\n'.join(c.exception.stack_trace)) |
| 31 | 31 |
| 32 # Some platforms do not support full stack traces, this test requires only | 32 # Some platforms do not support full stack traces, this test requires only |
| 33 # minimal symbols to be available. | 33 # minimal symbols to be available. |
| 34 @decorators.Enabled('mac', 'linux', 'win') | 34 # Disabled on win due to crbug.com/706328. |
| 35 @decorators.Disabled('snowleopard') | 35 @decorators.Enabled('mac', 'linux') |
| 36 @decorators.Disabled('snowleopard', 'win') |
| 36 def testCrashMinimalSymbols(self): | 37 def testCrashMinimalSymbols(self): |
| 37 with self.assertRaises(exceptions.DevtoolsTargetCrashException) as c: | 38 with self.assertRaises(exceptions.DevtoolsTargetCrashException) as c: |
| 38 self._tab.Navigate('chrome://crash', timeout=5) | 39 self._tab.Navigate('chrome://crash', timeout=5) |
| 39 self.assertIn('PrepareRenderViewForNavigation', | 40 self.assertIn('PrepareRenderViewForNavigation', |
| 40 '\n'.join(c.exception.stack_trace)) | 41 '\n'.join(c.exception.stack_trace)) |
| 41 | 42 |
| 42 # The breakpad file specific test only apply to platforms which use the | 43 # The breakpad file specific test only apply to platforms which use the |
| 43 # breakpad symbol format. This also must be tested in isolation because it can | 44 # breakpad symbol format. This also must be tested in isolation because it can |
| 44 # potentially interfere with other tests symbol parsing. | 45 # potentially interfere with other tests symbol parsing. |
| 45 @decorators.Enabled('mac', 'linux') | 46 @decorators.Enabled('mac', 'linux') |
| (...skipping 15 matching lines...) Expand all Loading... |
| 61 tmp_dir = os.path.join(self._browser._browser_backend._tmp_minidump_dir) | 62 tmp_dir = os.path.join(self._browser._browser_backend._tmp_minidump_dir) |
| 62 symbol_dir = os.path.join(tmp_dir, 'symbols') | 63 symbol_dir = os.path.join(tmp_dir, 'symbols') |
| 63 self.assertTrue(os.path.isdir(symbol_dir)) | 64 self.assertTrue(os.path.isdir(symbol_dir)) |
| 64 | 65 |
| 65 # Bad breakpad file should not be in the symbol directory | 66 # Bad breakpad file should not be in the symbol directory |
| 66 garbage_symbol_dir = os.path.join(symbol_dir, executable, garbage_hash) | 67 garbage_symbol_dir = os.path.join(symbol_dir, executable, garbage_hash) |
| 67 self.assertFalse(os.path.isdir(garbage_symbol_dir)) | 68 self.assertFalse(os.path.isdir(garbage_symbol_dir)) |
| 68 | 69 |
| 69 # Stack trace should still work. | 70 # Stack trace should still work. |
| 70 self.assertIn('CrashIntentionally', '\n'.join(c.exception.stack_trace)) | 71 self.assertIn('CrashIntentionally', '\n'.join(c.exception.stack_trace)) |
| OLD | NEW |