Files
zuul/tests/unit/test_stack_dump.py
James E. Blair d1a5291882 Fix stack_dump_handler test
If the test suite is run in an environment with yappi or objgraph
installed, the stack_dump_handler test will activate them, and so
we need to call the handler a second time to turn them off.
Otherwise, test performance or errors can occur.

Change-Id: If073f0e46b24fc4e9f1281f911ce287f5c23d4dd
2024-03-01 14:25:39 -08:00

39 lines
1.4 KiB
Python

# Copyright 2013 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import fixtures
import logging
import signal
import testtools
import zuul.cmd
class TestStackDump(testtools.TestCase):
def setUp(self):
super(TestStackDump, self).setUp()
self.log_fixture = self.useFixture(
fixtures.FakeLogger(level=logging.DEBUG))
def test_stack_dump_logs(self):
"Test that stack dumps end up in logs."
zuul.cmd.stack_dump_handler(signal.SIGUSR2, None)
self.assertIn("Thread", self.log_fixture.output)
self.assertIn("MainThread", self.log_fixture.output)
self.assertIn("test_stack_dump_logs", self.log_fixture.output)
# Call it again in case yappi or objgraph are installed in the
# venv so that we turn them back off.
zuul.cmd.stack_dump_handler(signal.SIGUSR2, None)