2019-06-13 20:11:42 +02:00
|
|
|
import logging
|
|
|
|
|
2019-05-13 13:38:14 +02:00
|
|
|
import pytest
|
2019-05-14 05:49:20 +02:00
|
|
|
from flexmock import flexmock
|
2019-05-13 13:38:14 +02:00
|
|
|
|
2019-05-14 05:49:20 +02:00
|
|
|
from borgmatic import logger as module
|
2019-05-13 13:38:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('bool_val', (True, 'yes', 'on', '1', 'true', 'True', 1))
|
2019-05-14 05:49:20 +02:00
|
|
|
def test_to_bool_parses_true_values(bool_val):
|
|
|
|
assert module.to_bool(bool_val)
|
2019-05-13 13:38:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('bool_val', (False, 'no', 'off', '0', 'false', 'False', 0))
|
2019-05-14 05:49:20 +02:00
|
|
|
def test_to_bool_parses_false_values(bool_val):
|
|
|
|
assert not module.to_bool(bool_val)
|
2019-05-13 13:38:14 +02:00
|
|
|
|
|
|
|
|
2019-05-14 05:49:20 +02:00
|
|
|
def test_to_bool_passes_none_through():
|
|
|
|
assert module.to_bool(None) is None
|
|
|
|
|
|
|
|
|
2019-06-27 23:41:21 +02:00
|
|
|
def test_interactive_console_false_when_not_isatty(capsys):
|
|
|
|
with capsys.disabled():
|
|
|
|
flexmock(module.sys.stdout).should_receive('isatty').and_return(False)
|
|
|
|
|
|
|
|
assert module.interactive_console() is False
|
|
|
|
|
|
|
|
|
|
|
|
def test_interactive_console_false_when_TERM_is_dumb(capsys):
|
|
|
|
with capsys.disabled():
|
|
|
|
flexmock(module.sys.stdout).should_receive('isatty').and_return(True)
|
|
|
|
flexmock(module.os.environ).should_receive('get').with_args('TERM').and_return('dumb')
|
|
|
|
|
|
|
|
assert module.interactive_console() is False
|
|
|
|
|
|
|
|
|
|
|
|
def test_interactive_console_true_when_isatty_and_TERM_is_not_dumb(capsys):
|
|
|
|
with capsys.disabled():
|
|
|
|
flexmock(module.sys.stdout).should_receive('isatty').and_return(True)
|
|
|
|
flexmock(module.os.environ).should_receive('get').with_args('TERM').and_return('smart')
|
|
|
|
|
|
|
|
assert module.interactive_console() is True
|
|
|
|
|
|
|
|
|
2019-05-14 05:49:20 +02:00
|
|
|
def test_should_do_markup_respects_no_color_value():
|
2019-06-20 05:48:54 +02:00
|
|
|
assert module.should_do_markup(no_color=True, configs={}) is False
|
|
|
|
|
|
|
|
|
|
|
|
def test_should_do_markup_respects_config_value():
|
|
|
|
assert (
|
|
|
|
module.should_do_markup(no_color=False, configs={'foo.yaml': {'output': {'color': False}}})
|
|
|
|
is False
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_should_do_markup_prefers_any_false_config_value():
|
|
|
|
assert (
|
|
|
|
module.should_do_markup(
|
|
|
|
no_color=False,
|
|
|
|
configs={
|
|
|
|
'foo.yaml': {'output': {'color': True}},
|
|
|
|
'bar.yaml': {'output': {'color': False}},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
is False
|
|
|
|
)
|
2019-05-14 05:49:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_should_do_markup_respects_PY_COLORS_environment_variable():
|
|
|
|
flexmock(module.os.environ).should_receive('get').and_return('True')
|
|
|
|
flexmock(module).should_receive('to_bool').and_return(True)
|
|
|
|
|
2019-06-20 05:48:54 +02:00
|
|
|
assert module.should_do_markup(no_color=False, configs={}) is True
|
|
|
|
|
|
|
|
|
|
|
|
def test_should_do_markup_prefers_no_color_value_to_config_value():
|
|
|
|
assert (
|
|
|
|
module.should_do_markup(no_color=True, configs={'foo.yaml': {'output': {'color': True}}})
|
|
|
|
is False
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_should_do_markup_prefers_config_value_to_PY_COLORS():
|
|
|
|
flexmock(module.os.environ).should_receive('get').and_return('True')
|
|
|
|
flexmock(module).should_receive('to_bool').and_return(True)
|
|
|
|
|
|
|
|
assert (
|
|
|
|
module.should_do_markup(no_color=False, configs={'foo.yaml': {'output': {'color': False}}})
|
|
|
|
is False
|
|
|
|
)
|
2019-05-14 05:49:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_should_do_markup_prefers_no_color_value_to_PY_COLORS():
|
|
|
|
flexmock(module.os.environ).should_receive('get').and_return('True')
|
|
|
|
flexmock(module).should_receive('to_bool').and_return(True)
|
|
|
|
|
2019-06-20 05:48:54 +02:00
|
|
|
assert module.should_do_markup(no_color=True, configs={}) is False
|
2019-05-14 05:49:20 +02:00
|
|
|
|
|
|
|
|
2019-06-27 23:41:21 +02:00
|
|
|
def test_should_do_markup_respects_interactive_console_value():
|
2019-05-14 05:49:20 +02:00
|
|
|
flexmock(module.os.environ).should_receive('get').and_return(None)
|
2019-06-27 23:41:21 +02:00
|
|
|
flexmock(module).should_receive('interactive_console').and_return(True)
|
2019-05-14 05:49:20 +02:00
|
|
|
|
2019-06-27 23:41:21 +02:00
|
|
|
assert module.should_do_markup(no_color=False, configs={}) is True
|
2019-05-14 05:49:20 +02:00
|
|
|
|
|
|
|
|
2019-06-27 23:41:21 +02:00
|
|
|
def test_should_do_markup_prefers_PY_COLORS_to_interactive_console_value():
|
2019-05-14 05:49:20 +02:00
|
|
|
flexmock(module.os.environ).should_receive('get').and_return('True')
|
|
|
|
flexmock(module).should_receive('to_bool').and_return(True)
|
2019-06-27 23:41:21 +02:00
|
|
|
flexmock(module).should_receive('interactive_console').and_return(False)
|
2019-05-14 05:49:20 +02:00
|
|
|
|
2019-06-20 05:48:54 +02:00
|
|
|
assert module.should_do_markup(no_color=False, configs={}) is True
|
2019-05-14 06:10:26 +02:00
|
|
|
|
|
|
|
|
2019-06-17 20:53:08 +02:00
|
|
|
def test_console_color_formatter_format_includes_log_message():
|
|
|
|
plain_message = 'uh oh'
|
|
|
|
record = flexmock(levelno=logging.CRITICAL, msg=plain_message)
|
2019-05-14 06:10:26 +02:00
|
|
|
|
2019-06-17 20:53:08 +02:00
|
|
|
colored_message = module.Console_color_formatter().format(record)
|
2019-05-14 06:10:26 +02:00
|
|
|
|
2019-06-17 20:53:08 +02:00
|
|
|
assert colored_message != plain_message
|
|
|
|
assert plain_message in colored_message
|
2019-05-14 06:10:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_color_text_does_not_raise():
|
|
|
|
module.color_text(module.colorama.Fore.RED, 'hi')
|
|
|
|
|
|
|
|
|
|
|
|
def test_color_text_without_color_does_not_raise():
|
|
|
|
module.color_text(None, 'hi')
|
2019-06-13 20:11:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_configure_logging_probes_for_log_socket_on_linux():
|
2019-06-17 20:53:08 +02:00
|
|
|
flexmock(module).should_receive('Console_color_formatter')
|
2019-06-27 23:41:21 +02:00
|
|
|
flexmock(module).should_receive('interactive_console').and_return(False)
|
2019-06-13 20:11:42 +02:00
|
|
|
flexmock(module.logging).should_receive('basicConfig').with_args(
|
|
|
|
level=logging.INFO, handlers=tuple
|
|
|
|
)
|
|
|
|
flexmock(module.os.path).should_receive('exists').with_args('/dev/log').and_return(True)
|
|
|
|
syslog_handler = logging.handlers.SysLogHandler()
|
|
|
|
flexmock(module.logging.handlers).should_receive('SysLogHandler').with_args(
|
|
|
|
address='/dev/log'
|
|
|
|
).and_return(syslog_handler).once()
|
|
|
|
|
|
|
|
module.configure_logging(logging.INFO)
|
|
|
|
|
|
|
|
|
|
|
|
def test_configure_logging_probes_for_log_socket_on_macos():
|
2019-06-17 20:53:08 +02:00
|
|
|
flexmock(module).should_receive('Console_color_formatter')
|
2019-06-27 23:41:21 +02:00
|
|
|
flexmock(module).should_receive('interactive_console').and_return(False)
|
2019-06-13 20:11:42 +02:00
|
|
|
flexmock(module.logging).should_receive('basicConfig').with_args(
|
|
|
|
level=logging.INFO, handlers=tuple
|
|
|
|
)
|
|
|
|
flexmock(module.os.path).should_receive('exists').with_args('/dev/log').and_return(False)
|
|
|
|
flexmock(module.os.path).should_receive('exists').with_args('/var/run/syslog').and_return(True)
|
|
|
|
syslog_handler = logging.handlers.SysLogHandler()
|
|
|
|
flexmock(module.logging.handlers).should_receive('SysLogHandler').with_args(
|
|
|
|
address='/var/run/syslog'
|
|
|
|
).and_return(syslog_handler).once()
|
|
|
|
|
|
|
|
module.configure_logging(logging.INFO)
|
|
|
|
|
|
|
|
|
|
|
|
def test_configure_logging_sets_global_logger_to_most_verbose_log_level():
|
2019-06-17 20:53:08 +02:00
|
|
|
flexmock(module).should_receive('Console_color_formatter')
|
2019-06-13 20:11:42 +02:00
|
|
|
flexmock(module.logging).should_receive('basicConfig').with_args(
|
|
|
|
level=logging.DEBUG, handlers=tuple
|
|
|
|
).once()
|
|
|
|
flexmock(module.os.path).should_receive('exists').and_return(False)
|
|
|
|
|
|
|
|
module.configure_logging(console_log_level=logging.INFO, syslog_log_level=logging.DEBUG)
|
|
|
|
|
|
|
|
|
|
|
|
def test_configure_logging_skips_syslog_if_not_found():
|
2019-06-17 20:53:08 +02:00
|
|
|
flexmock(module).should_receive('Console_color_formatter')
|
2019-06-13 20:11:42 +02:00
|
|
|
flexmock(module.logging).should_receive('basicConfig').with_args(
|
|
|
|
level=logging.INFO, handlers=tuple
|
|
|
|
)
|
|
|
|
flexmock(module.os.path).should_receive('exists').and_return(False)
|
|
|
|
flexmock(module.logging.handlers).should_receive('SysLogHandler').never()
|
|
|
|
|
|
|
|
module.configure_logging(console_log_level=logging.INFO)
|
2019-06-27 23:41:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_configure_logging_skips_syslog_if_interactive_console():
|
|
|
|
flexmock(module).should_receive('Console_color_formatter')
|
|
|
|
flexmock(module).should_receive('interactive_console').and_return(True)
|
|
|
|
flexmock(module.logging).should_receive('basicConfig').with_args(
|
|
|
|
level=logging.INFO, handlers=tuple
|
|
|
|
)
|
|
|
|
flexmock(module.os.path).should_receive('exists').with_args('/dev/log').and_return(True)
|
|
|
|
flexmock(module.logging.handlers).should_receive('SysLogHandler').never()
|
|
|
|
|
|
|
|
module.configure_logging(console_log_level=logging.INFO)
|
2019-11-02 14:34:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_configure_logging_to_logfile_instead_syslog():
|
|
|
|
# syslog skipped in non-interactive console if --log-file argument provided
|
|
|
|
flexmock(module).should_receive('interactive_console').and_return(False)
|
|
|
|
flexmock(module.logging).should_receive('basicConfig').with_args(
|
|
|
|
level=logging.INFO, handlers=tuple
|
|
|
|
)
|
|
|
|
flexmock(module.os.path).should_receive('exists').with_args('/dev/log').and_return(True)
|
|
|
|
flexmock(module.logging.handlers).should_receive('SysLogHandler').never()
|
|
|
|
file_handler = logging.FileHandler('/tmp/logfile')
|
|
|
|
flexmock(module.logging).should_receive('FileHandler').with_args('/tmp/logfile').and_return(
|
|
|
|
file_handler
|
|
|
|
).once()
|
|
|
|
|
|
|
|
module.configure_logging(console_log_level=logging.INFO, log_file='/tmp/logfile')
|
|
|
|
|
|
|
|
|
|
|
|
def test_configure_logging_skips_logfile_if_argument_is_none():
|
|
|
|
# No FileHandler added if argument --log-file is None
|
|
|
|
flexmock(module).should_receive('interactive_console').and_return(False)
|
|
|
|
flexmock(module.logging).should_receive('basicConfig').with_args(
|
|
|
|
level=logging.INFO, handlers=tuple
|
|
|
|
)
|
|
|
|
flexmock(module.os.path).should_receive('exists').and_return(False)
|
|
|
|
flexmock(module.logging).should_receive('FileHandler').never()
|
|
|
|
|
|
|
|
module.configure_logging(console_log_level=logging.INFO, log_file=None)
|