1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
# Copyright 2018 Facundo Batista, Nicolás Demarchi
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3, as published
# by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY, 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/>.
#
# For further info, check https://github.com/PyAr/fades
"""Tests for logger related code."""
from fades.logger import set_up as log_set_up
def test_salutes_info(logs):
"""Check saluting handler."""
logger = log_set_up(verbose=False, quiet=True)
logger.warning("test foobar")
assert "Hi! This is fades" in logs.info
assert "test foobar" in logs.warning
def test_salutes_once(logs):
logger = log_set_up(verbose=False, quiet=False)
logger.info("test foobar")
assert "Hi! This is fades" in logs.info
assert "test foobar" in logs.info
# again, check this time it didn't salute, but original log message is ok
logs.reset()
logger.info("test barbarroja")
assert "Hi! This is fades" not in logs.info
assert "test barbarroja" in logs.info
|