blob: cc8cf8fd6673aa825bc785a8fcf94068ebdf7558 [file] [log] [blame]
Clark Boylanfba9b242013-08-20 10:11:17 -07001# 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
15import fixtures
16import logging
17import signal
18import testtools
19
20import zuul.cmd.server
21
22
23class 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)