Clark Boylan | fba9b24 | 2013-08-20 10:11:17 -0700 | [diff] [blame] | 1 | # Copyright 2013 Hewlett-Packard Development Company, L.P. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 4 | # not use this file except in compliance with the License. You may obtain |
| 5 | # a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | # License for the specific language governing permissions and limitations |
| 13 | # under the License. |
| 14 | |
| 15 | import fixtures |
| 16 | import logging |
| 17 | import signal |
| 18 | import testtools |
| 19 | |
| 20 | import zuul.cmd.server |
| 21 | |
| 22 | |
| 23 | class TestStackDump(testtools.TestCase): |
| 24 | def setUp(self): |
| 25 | super(TestStackDump, self).setUp() |
| 26 | self.log_fixture = self.useFixture( |
| 27 | fixtures.FakeLogger(level=logging.DEBUG)) |
| 28 | |
| 29 | def test_stack_dump_logs(self): |
| 30 | "Test that stack dumps end up in logs." |
| 31 | |
| 32 | zuul.cmd.server.stack_dump_handler(signal.SIGUSR2, None) |
| 33 | self.assertIn("Thread", self.log_fixture.output) |
| 34 | self.assertIn("test_stack_dump_logs", self.log_fixture.output) |