blob: 824e04c53368fb6b4b818c920838ec3cf9916574 [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
Antoine Musso37758752014-04-05 23:01:35 +020020import zuul.cmd
Clark Boylanfba9b242013-08-20 10:11:17 -070021
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
Antoine Musso37758752014-04-05 23:01:35 +020032 zuul.cmd.stack_dump_handler(signal.SIGUSR2, None)
Clark Boylanfba9b242013-08-20 10:11:17 -070033 self.assertIn("Thread", self.log_fixture.output)
34 self.assertIn("test_stack_dump_logs", self.log_fixture.output)