2014-10-23 13:56:15 -05:00
|
|
|
# Copyright (C) 2014 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
2014-12-02 07:09:23 -06:00
|
|
|
"""Test integration with BeakerLib
|
2014-10-23 13:56:15 -05:00
|
|
|
|
2014-12-02 07:09:23 -06:00
|
|
|
IPA-specific configuration for the BeakerLib plugin (from pytest-beakerlib).
|
|
|
|
If the plugin is active, sets up IPA logging to also log to Beaker.
|
2014-10-23 13:56:15 -05:00
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
2017-05-24 09:35:07 -05:00
|
|
|
from ipapython.ipa_log_manager import Formatter
|
2014-10-23 13:56:15 -05:00
|
|
|
|
|
|
|
|
2014-12-02 07:09:23 -06:00
|
|
|
def pytest_configure(config):
|
|
|
|
plugin = config.pluginmanager.getplugin('BeakerLibPlugin')
|
|
|
|
if plugin:
|
2017-05-24 09:35:07 -05:00
|
|
|
root_logger = logging.getLogger()
|
2016-09-14 08:45:50 -05:00
|
|
|
root_logger.setLevel(logging.DEBUG)
|
|
|
|
|
2014-12-02 07:09:23 -06:00
|
|
|
handler = BeakerLibLogHandler(plugin.run_beakerlib_command)
|
2016-09-14 08:45:50 -05:00
|
|
|
handler.setLevel(logging.INFO)
|
|
|
|
handler.setFormatter(Formatter('[%(name)s] %(message)s'))
|
|
|
|
root_logger.addHandler(handler)
|
2014-10-23 13:56:15 -05:00
|
|
|
|
|
|
|
|
|
|
|
class BeakerLibLogHandler(logging.Handler):
|
|
|
|
def __init__(self, beakerlib_command):
|
|
|
|
super(BeakerLibLogHandler, self).__init__()
|
|
|
|
self.beakerlib_command = beakerlib_command
|
|
|
|
|
|
|
|
def emit(self, record):
|
|
|
|
command = {
|
|
|
|
'DEBUG': 'rlLogDebug',
|
|
|
|
'INFO': 'rlLogInfo',
|
|
|
|
'WARNING': 'rlLogWarning',
|
|
|
|
'ERROR': 'rlLogError',
|
|
|
|
'CRITICAL': 'rlLogFatal',
|
|
|
|
}.get(record.levelname, 'rlLog')
|
|
|
|
self.beakerlib_command([command, self.format(record)])
|