| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693 | import loggingimport sysimport pytestfrom flexmock import flexmockfrom borgmatic import logger as module@pytest.mark.parametrize('bool_val', (True, 'yes', 'on', '1', 'true', 'True', 1))def test_to_bool_parses_true_values(bool_val):    assert module.to_bool(bool_val)@pytest.mark.parametrize('bool_val', (False, 'no', 'off', '0', 'false', 'False', 0))def test_to_bool_parses_false_values(bool_val):    assert not module.to_bool(bool_val)def test_to_bool_passes_none_through():    assert module.to_bool(None) is Nonedef test_interactive_console_false_when_not_isatty(capsys):    with capsys.disabled():        flexmock(module.sys.stderr).should_receive('isatty').and_return(False)        assert module.interactive_console() is Falsedef test_interactive_console_false_when_TERM_is_dumb(capsys):    with capsys.disabled():        flexmock(module.sys.stderr).should_receive('isatty').and_return(True)        flexmock(module.os.environ).should_receive('get').with_args('TERM').and_return('dumb')        assert module.interactive_console() is Falsedef test_interactive_console_true_when_isatty_and_TERM_is_not_dumb(capsys):    with capsys.disabled():        flexmock(module.sys.stderr).should_receive('isatty').and_return(True)        flexmock(module.os.environ).should_receive('get').with_args('TERM').and_return('smart')        assert module.interactive_console() is Truedef test_should_do_markup_respects_no_color_value():    flexmock(module.os.environ).should_receive('get').and_return(None)    flexmock(module).should_receive('interactive_console').never()    assert module.should_do_markup(no_color=True, configs={}) is Falsedef test_should_do_markup_respects_config_value():    flexmock(module.os.environ).should_receive('get').and_return(None)    flexmock(module).should_receive('interactive_console').never()    assert module.should_do_markup(no_color=False, configs={'foo.yaml': {'color': False}}) is False    flexmock(module).should_receive('interactive_console').and_return(True).once()    assert module.should_do_markup(no_color=False, configs={'foo.yaml': {'color': True}}) is Truedef test_should_do_markup_prefers_any_false_config_value():    flexmock(module.os.environ).should_receive('get').and_return(None)    flexmock(module).should_receive('interactive_console').never()    assert (        module.should_do_markup(            no_color=False,            configs={                'foo.yaml': {'color': True},                'bar.yaml': {'color': False},            },        )        is False    )def test_should_do_markup_respects_PY_COLORS_environment_variable():    flexmock(module.os.environ).should_receive('get').with_args('PY_COLORS', None).and_return(        'True'    )    flexmock(module.os.environ).should_receive('get').with_args('NO_COLOR', None).and_return(None)    flexmock(module).should_receive('to_bool').and_return(True)    assert module.should_do_markup(no_color=False, configs={}) is Truedef test_should_do_markup_prefers_no_color_value_to_config_value():    flexmock(module.os.environ).should_receive('get').and_return(None)    flexmock(module).should_receive('interactive_console').never()    assert module.should_do_markup(no_color=True, configs={'foo.yaml': {'color': True}}) is Falsedef test_should_do_markup_prefers_config_value_to_environment_variables():    flexmock(module.os.environ).should_receive('get').and_return('True')    flexmock(module).should_receive('to_bool').and_return(True)    flexmock(module).should_receive('interactive_console').never()    assert module.should_do_markup(no_color=False, configs={'foo.yaml': {'color': False}}) is Falsedef test_should_do_markup_prefers_no_color_value_to_environment_variables():    flexmock(module.os.environ).should_receive('get').and_return('True')    flexmock(module).should_receive('to_bool').and_return(True)    flexmock(module).should_receive('interactive_console').never()    assert module.should_do_markup(no_color=True, configs={}) is Falsedef test_should_do_markup_respects_interactive_console_value():    flexmock(module.os.environ).should_receive('get').and_return(None)    flexmock(module).should_receive('interactive_console').and_return(True)    assert module.should_do_markup(no_color=False, configs={}) is Truedef test_should_do_markup_prefers_PY_COLORS_to_interactive_console_value():    flexmock(module.os.environ).should_receive('get').with_args('PY_COLORS', None).and_return(        'True'    )    flexmock(module.os.environ).should_receive('get').with_args('NO_COLOR', None).and_return(None)    flexmock(module).should_receive('to_bool').and_return(True)    flexmock(module).should_receive('interactive_console').never()    assert module.should_do_markup(no_color=False, configs={}) is Truedef test_should_do_markup_prefers_NO_COLOR_to_interactive_console_value():    flexmock(module.os.environ).should_receive('get').with_args('PY_COLORS', None).and_return(None)    flexmock(module.os.environ).should_receive('get').with_args('NO_COLOR', None).and_return('True')    flexmock(module).should_receive('interactive_console').never()    assert module.should_do_markup(no_color=False, configs={}) is Falsedef test_should_do_markup_respects_NO_COLOR_environment_variable():    flexmock(module.os.environ).should_receive('get').with_args('NO_COLOR', None).and_return('True')    flexmock(module.os.environ).should_receive('get').with_args('PY_COLORS', None).and_return(None)    flexmock(module).should_receive('interactive_console').never()    assert module.should_do_markup(no_color=False, configs={}) is Falsedef test_should_do_markup_ignores_empty_NO_COLOR_environment_variable():    flexmock(module.os.environ).should_receive('get').with_args('NO_COLOR', None).and_return('')    flexmock(module.os.environ).should_receive('get').with_args('PY_COLORS', None).and_return(None)    flexmock(module).should_receive('interactive_console').and_return(True)    assert module.should_do_markup(no_color=False, configs={}) is Truedef test_should_do_markup_prefers_NO_COLOR_to_PY_COLORS():    flexmock(module.os.environ).should_receive('get').with_args('PY_COLORS', None).and_return(        'True'    )    flexmock(module.os.environ).should_receive('get').with_args('NO_COLOR', None).and_return(        'SomeValue'    )    flexmock(module).should_receive('interactive_console').never()    assert module.should_do_markup(no_color=False, configs={}) is Falsedef test_multi_stream_handler_logs_to_handler_for_log_level():    error_handler = flexmock()    error_handler.should_receive('emit').once()    info_handler = flexmock()    multi_handler = module.Multi_stream_handler(        {module.logging.ERROR: error_handler, module.logging.INFO: info_handler}    )    multi_handler.emit(flexmock(levelno=module.logging.ERROR))def test_console_color_formatter_format_includes_log_message():    flexmock(module).should_receive('add_custom_log_levels')    flexmock(module.logging).ANSWER = module.ANSWER    plain_message = 'uh oh'    flexmock(module.logging.Formatter).should_receive('format').and_return(plain_message)    record = flexmock(levelno=logging.CRITICAL)    colored_message = module.Console_color_formatter().format(record)    assert colored_message != plain_message    assert plain_message in colored_messagedef test_color_text_does_not_raise():    flexmock(module).should_receive('ansi_escape_code').and_return('blah')    module.color_text(module.Color.RED, 'hi')def test_color_text_without_color_does_not_raise():    flexmock(module).should_receive('ansi_escape_code').and_return('blah')    module.color_text(None, 'hi')def test_add_logging_level_adds_level_name_and_sets_global_attributes_and_methods():    logger = flexmock()    flexmock(module.logging).should_receive('getLoggerClass').and_return(logger)    flexmock(module.logging).should_receive('addLevelName').with_args(99, 'PLAID')    builtins = flexmock(sys.modules['builtins'])    builtins.should_call('setattr')    builtins.should_receive('setattr').with_args(module.logging, 'PLAID', 99).once()    builtins.should_receive('setattr').with_args(logger, 'plaid', object).once()    builtins.should_receive('setattr').with_args(logging, 'plaid', object).once()    module.add_logging_level('PLAID', 99)def test_add_logging_level_skips_global_setting_if_already_set():    logger = flexmock()    flexmock(module.logging).should_receive('getLoggerClass').and_return(logger)    flexmock(module.logging).PLAID = 99    flexmock(logger).plaid = flexmock()    flexmock(logging).plaid = flexmock()    flexmock(module.logging).should_receive('addLevelName').never()    builtins = flexmock(sys.modules['builtins'])    builtins.should_call('setattr')    builtins.should_receive('setattr').with_args(module.logging, 'PLAID', 99).never()    builtins.should_receive('setattr').with_args(logger, 'plaid', object).never()    builtins.should_receive('setattr').with_args(logging, 'plaid', object).never()    module.add_logging_level('PLAID', 99)def test_get_log_prefix_gets_prefix_from_first_handler_formatter_with_prefix():    flexmock(module.logging).should_receive('getLogger').and_return(        flexmock(            handlers=[                flexmock(formatter=flexmock()),                flexmock(formatter=flexmock(prefix='myprefix')),            ],            removeHandler=lambda handler: None,        )    )    assert module.get_log_prefix() == 'myprefix'def test_get_log_prefix_with_no_handlers_does_not_raise():    flexmock(module.logging).should_receive('getLogger').and_return(        flexmock(            handlers=[],            removeHandler=lambda handler: None,        )    )    assert module.get_log_prefix() is Nonedef test_get_log_prefix_with_no_formatters_does_not_raise():    flexmock(module.logging).should_receive('getLogger').and_return(        flexmock(            handlers=[                flexmock(formatter=None),                flexmock(formatter=None),            ],            removeHandler=lambda handler: None,        )    )    assert module.get_log_prefix() is Nonedef test_get_log_prefix_with_no_prefix_does_not_raise():    flexmock(module.logging).should_receive('getLogger').and_return(        flexmock(            handlers=[                flexmock(                    formatter=flexmock(),                ),            ],            removeHandler=lambda handler: None,        )    )    assert module.get_log_prefix() is Nonedef test_set_log_prefix_updates_all_handler_formatters():    formatters = (        flexmock(prefix=None),        flexmock(prefix=None),    )    flexmock(module.logging).should_receive('getLogger').and_return(        flexmock(            handlers=[                flexmock(                    formatter=formatters[0],                ),                flexmock(                    formatter=formatters[1],                ),            ],            removeHandler=lambda handler: None,        )    )    module.set_log_prefix('myprefix')    for formatter in formatters:        assert formatter.prefix == 'myprefix'def test_set_log_prefix_skips_handlers_without_a_formatter():    formatter = flexmock(prefix=None)    flexmock(module.logging).should_receive('getLogger').and_return(        flexmock(            handlers=[                flexmock(                    formatter=None,                ),                flexmock(                    formatter=formatter,                ),            ],            removeHandler=lambda handler: None,        )    )    module.set_log_prefix('myprefix')    assert formatter.prefix == 'myprefix'def test_log_prefix_sets_prefix_and_then_restores_no_prefix_after():    flexmock(module).should_receive('get_log_prefix').and_return(None)    flexmock(module).should_receive('set_log_prefix').with_args('myprefix').once()    flexmock(module).should_receive('set_log_prefix').with_args(None).once()    with module.Log_prefix('myprefix'):        passdef test_log_prefix_sets_prefix_and_then_restores_original_prefix_after():    flexmock(module).should_receive('get_log_prefix').and_return('original')    flexmock(module).should_receive('set_log_prefix').with_args('myprefix').once()    flexmock(module).should_receive('set_log_prefix').with_args('original').once()    with module.Log_prefix('myprefix'):        passdef test_delayed_logging_handler_should_flush_without_targets_returns_false():    handler = module.Delayed_logging_handler()    assert handler.shouldFlush(flexmock()) is Falsedef test_delayed_logging_handler_should_flush_with_targets_returns_true():    handler = module.Delayed_logging_handler()    handler.targets = [flexmock()]    assert handler.shouldFlush(flexmock()) is Truedef test_delayed_logging_handler_flush_without_targets_does_not_raise():    handler = module.Delayed_logging_handler()    flexmock(handler).should_receive('acquire')    flexmock(handler).should_receive('release')    handler.flush()def test_delayed_logging_handler_flush_with_empty_buffer_does_not_raise():    handler = module.Delayed_logging_handler()    flexmock(handler).should_receive('acquire')    flexmock(handler).should_receive('release')    handler.targets = [flexmock()]    handler.flush()def test_delayed_logging_handler_flush_forwards_each_record_to_each_target():    handler = module.Delayed_logging_handler()    flexmock(handler).should_receive('acquire')    flexmock(handler).should_receive('release')    handler.targets = [flexmock(level=logging.DEBUG), flexmock(level=logging.DEBUG)]    handler.buffer = [flexmock(levelno=logging.DEBUG), flexmock(levelno=logging.DEBUG)]    handler.targets[0].should_receive('handle').with_args(handler.buffer[0]).once()    handler.targets[1].should_receive('handle').with_args(handler.buffer[0]).once()    handler.targets[0].should_receive('handle').with_args(handler.buffer[1]).once()    handler.targets[1].should_receive('handle').with_args(handler.buffer[1]).once()    handler.flush()    assert handler.buffer == []def test_delayed_logging_handler_flush_skips_forwarding_when_log_record_is_too_low_for_target():    handler = module.Delayed_logging_handler()    flexmock(handler).should_receive('acquire')    flexmock(handler).should_receive('release')    handler.targets = [flexmock(level=logging.INFO), flexmock(level=logging.DEBUG)]    handler.buffer = [flexmock(levelno=logging.DEBUG), flexmock(levelno=logging.INFO)]    handler.targets[0].should_receive('handle').with_args(handler.buffer[0]).never()    handler.targets[1].should_receive('handle').with_args(handler.buffer[0]).once()    handler.targets[0].should_receive('handle').with_args(handler.buffer[1]).once()    handler.targets[1].should_receive('handle').with_args(handler.buffer[1]).once()    handler.flush()    assert handler.buffer == []def test_flush_delayed_logging_without_handlers_does_not_raise():    root_logger = flexmock(handlers=[])    root_logger.should_receive('removeHandler')    flexmock(module.logging).should_receive('getLogger').and_return(root_logger)    module.flush_delayed_logging([flexmock()])def test_flush_delayed_logging_without_delayed_logging_handler_does_not_raise():    root_logger = flexmock(handlers=[flexmock()])    root_logger.should_receive('removeHandler')    flexmock(module.logging).should_receive('getLogger').and_return(root_logger)    module.flush_delayed_logging([flexmock()])def test_flush_delayed_logging_flushes_delayed_logging_handler():    delayed_logging_handler = module.Delayed_logging_handler()    root_logger = flexmock(handlers=[delayed_logging_handler])    flexmock(module.logging).should_receive('getLogger').and_return(root_logger)    flexmock(delayed_logging_handler).should_receive('flush').once()    root_logger.should_receive('removeHandler')    module.flush_delayed_logging([flexmock()])def test_configure_logging_with_syslog_log_level_probes_for_log_socket_on_linux():    flexmock(module).should_receive('add_custom_log_levels')    flexmock(module.logging).ANSWER = module.ANSWER    fake_formatter = flexmock()    flexmock(module).should_receive('Console_color_formatter').and_return(fake_formatter)    multi_stream_handler = flexmock(setLevel=lambda level: None, level=logging.INFO)    multi_stream_handler.should_receive('setFormatter').with_args(fake_formatter).once()    flexmock(module).should_receive('Multi_stream_handler').and_return(multi_stream_handler)    flexmock(module).should_receive('interactive_console').and_return(False)    flexmock(module).should_receive('flush_delayed_logging')    flexmock(module.logging).should_receive('basicConfig').with_args(        level=logging.DEBUG, handlers=list    )    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, syslog_log_level=logging.DEBUG)def test_configure_logging_with_syslog_log_level_probes_for_log_socket_on_macos():    flexmock(module).should_receive('add_custom_log_levels')    flexmock(module.logging).ANSWER = module.ANSWER    fake_formatter = flexmock()    flexmock(module).should_receive('Console_color_formatter').and_return(fake_formatter)    multi_stream_handler = flexmock(setLevel=lambda level: None, level=logging.INFO)    multi_stream_handler.should_receive('setFormatter').with_args(fake_formatter).once()    flexmock(module).should_receive('Multi_stream_handler').and_return(multi_stream_handler)    flexmock(module).should_receive('interactive_console').and_return(False)    flexmock(module).should_receive('flush_delayed_logging')    flexmock(module.logging).should_receive('basicConfig').with_args(        level=logging.DEBUG, handlers=list    )    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, syslog_log_level=logging.DEBUG)def test_configure_logging_with_syslog_log_level_probes_for_log_socket_on_freebsd():    flexmock(module).should_receive('add_custom_log_levels')    flexmock(module.logging).ANSWER = module.ANSWER    fake_formatter = flexmock()    flexmock(module).should_receive('Console_color_formatter').and_return(fake_formatter)    multi_stream_handler = flexmock(setLevel=lambda level: None, level=logging.INFO)    multi_stream_handler.should_receive('setFormatter').with_args(fake_formatter).once()    flexmock(module).should_receive('Multi_stream_handler').and_return(multi_stream_handler)    flexmock(module).should_receive('interactive_console').and_return(False)    flexmock(module).should_receive('flush_delayed_logging')    flexmock(module.logging).should_receive('basicConfig').with_args(        level=logging.DEBUG, handlers=list    )    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(False)    flexmock(module.os.path).should_receive('exists').with_args('/var/run/log').and_return(True)    syslog_handler = logging.handlers.SysLogHandler()    flexmock(module.logging.handlers).should_receive('SysLogHandler').with_args(        address='/var/run/log'    ).and_return(syslog_handler).once()    module.configure_logging(logging.INFO, syslog_log_level=logging.DEBUG)def test_configure_logging_without_syslog_log_level_skips_syslog():    flexmock(module).should_receive('add_custom_log_levels')    flexmock(module.logging).ANSWER = module.ANSWER    fake_formatter = flexmock()    flexmock(module).should_receive('Console_color_formatter').and_return(fake_formatter)    multi_stream_handler = flexmock(setLevel=lambda level: None, level=logging.INFO)    multi_stream_handler.should_receive('setFormatter').with_args(fake_formatter).once()    flexmock(module).should_receive('Multi_stream_handler').and_return(multi_stream_handler)    flexmock(module).should_receive('flush_delayed_logging')    flexmock(module.logging).should_receive('basicConfig').with_args(        level=logging.INFO, handlers=list    )    flexmock(module.os.path).should_receive('exists').never()    flexmock(module.logging.handlers).should_receive('SysLogHandler').never()    module.configure_logging(console_log_level=logging.INFO)def test_configure_logging_skips_syslog_if_not_found():    flexmock(module).should_receive('add_custom_log_levels')    flexmock(module.logging).ANSWER = module.ANSWER    fake_formatter = flexmock()    flexmock(module).should_receive('Console_color_formatter').and_return(fake_formatter)    multi_stream_handler = flexmock(setLevel=lambda level: None, level=logging.INFO)    multi_stream_handler.should_receive('setFormatter').with_args(fake_formatter).once()    flexmock(module).should_receive('Multi_stream_handler').and_return(multi_stream_handler)    flexmock(module).should_receive('flush_delayed_logging')    flexmock(module.logging).should_receive('basicConfig').with_args(        level=logging.INFO, handlers=list    )    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, syslog_log_level=logging.DEBUG)def test_configure_logging_skips_log_file_if_log_file_logging_is_disabled():    flexmock(module).should_receive('add_custom_log_levels')    flexmock(module.logging).DISABLED = module.DISABLED    fake_formatter = flexmock()    flexmock(module).should_receive('Console_color_formatter').and_return(fake_formatter)    multi_stream_handler = flexmock(setLevel=lambda level: None, level=logging.INFO)    multi_stream_handler.should_receive('setFormatter').with_args(fake_formatter).once()    flexmock(module).should_receive('Multi_stream_handler').and_return(multi_stream_handler)    flexmock(module).should_receive('flush_delayed_logging')    flexmock(module.logging).should_receive('basicConfig').with_args(        level=logging.INFO, handlers=list    )    flexmock(module.os.path).should_receive('exists').never()    flexmock(module.logging.handlers).should_receive('SysLogHandler').never()    flexmock(module.logging.handlers).should_receive('WatchedFileHandler').never()    module.configure_logging(        console_log_level=logging.INFO, log_file_log_level=logging.DISABLED, log_file='/tmp/logfile'    )def test_configure_logging_to_log_file_instead_of_syslog():    flexmock(module).should_receive('add_custom_log_levels')    flexmock(module.logging).ANSWER = module.ANSWER    fake_formatter = flexmock()    flexmock(module).should_receive('Console_color_formatter').and_return(fake_formatter)    multi_stream_handler = flexmock(setLevel=lambda level: None, level=logging.INFO)    multi_stream_handler.should_receive('setFormatter').with_args(fake_formatter).once()    flexmock(module).should_receive('Multi_stream_handler').and_return(multi_stream_handler)    flexmock(module).should_receive('flush_delayed_logging')    flexmock(module.logging).should_receive('basicConfig').with_args(        level=logging.DEBUG, handlers=list    )    flexmock(module.os.path).should_receive('exists').never()    flexmock(module.logging.handlers).should_receive('SysLogHandler').never()    file_handler = logging.handlers.WatchedFileHandler('/tmp/logfile')    flexmock(module.logging.handlers).should_receive('WatchedFileHandler').with_args(        '/tmp/logfile'    ).and_return(file_handler).once()    module.configure_logging(        console_log_level=logging.INFO,        syslog_log_level=logging.DISABLED,        log_file_log_level=logging.DEBUG,        log_file='/tmp/logfile',    )def test_configure_logging_to_both_log_file_and_syslog():    flexmock(module).should_receive('add_custom_log_levels')    flexmock(module.logging).ANSWER = module.ANSWER    fake_formatter = flexmock()    flexmock(module).should_receive('Console_color_formatter').and_return(fake_formatter)    multi_stream_handler = flexmock(setLevel=lambda level: None, level=logging.INFO)    multi_stream_handler.should_receive('setFormatter').with_args(fake_formatter).once()    flexmock(module).should_receive('Multi_stream_handler').and_return(multi_stream_handler)    flexmock(module).should_receive('flush_delayed_logging')    flexmock(module.logging).should_receive('basicConfig').with_args(        level=logging.DEBUG, handlers=list    )    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()    file_handler = logging.handlers.WatchedFileHandler('/tmp/logfile')    flexmock(module.logging.handlers).should_receive('WatchedFileHandler').with_args(        '/tmp/logfile'    ).and_return(file_handler).once()    module.configure_logging(        console_log_level=logging.INFO,        syslog_log_level=logging.DEBUG,        log_file_log_level=logging.DEBUG,        log_file='/tmp/logfile',    )def test_configure_logging_to_log_file_formats_with_custom_log_format():    flexmock(module).should_receive('add_custom_log_levels')    flexmock(module.logging).ANSWER = module.ANSWER    flexmock(module).should_receive('Log_prefix_formatter').with_args(        '{message}',  # noqa: FS003    ).once()    fake_formatter = flexmock()    flexmock(module).should_receive('Console_color_formatter').and_return(fake_formatter)    multi_stream_handler = flexmock(setLevel=lambda level: None, level=logging.INFO)    multi_stream_handler.should_receive('setFormatter').with_args(fake_formatter).once()    flexmock(module).should_receive('Multi_stream_handler').and_return(multi_stream_handler)    flexmock(module).should_receive('interactive_console').and_return(False)    flexmock(module).should_receive('flush_delayed_logging')    flexmock(module.logging).should_receive('basicConfig').with_args(        level=logging.DEBUG, handlers=list    )    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.handlers.WatchedFileHandler('/tmp/logfile')    flexmock(module.logging.handlers).should_receive('WatchedFileHandler').with_args(        '/tmp/logfile'    ).and_return(file_handler).once()    module.configure_logging(        console_log_level=logging.INFO,        log_file_log_level=logging.DEBUG,        log_file='/tmp/logfile',        log_file_format='{message}',  # noqa: FS003    )def test_configure_logging_skips_log_file_if_argument_is_none():    flexmock(module).should_receive('add_custom_log_levels')    flexmock(module.logging).ANSWER = module.ANSWER    fake_formatter = flexmock()    flexmock(module).should_receive('Console_color_formatter').and_return(fake_formatter)    multi_stream_handler = flexmock(setLevel=lambda level: None, level=logging.INFO)    multi_stream_handler.should_receive('setFormatter').with_args(fake_formatter).once()    flexmock(module).should_receive('Multi_stream_handler').and_return(multi_stream_handler)    flexmock(module).should_receive('flush_delayed_logging')    flexmock(module.logging).should_receive('basicConfig').with_args(        level=logging.INFO, handlers=list    )    flexmock(module.os.path).should_receive('exists').and_return(False)    flexmock(module.logging.handlers).should_receive('WatchedFileHandler').never()    module.configure_logging(console_log_level=logging.INFO, log_file=None)def test_configure_logging_uses_console_no_color_formatter_if_color_disabled():    flexmock(module).should_receive('add_custom_log_levels')    flexmock(module.logging).ANSWER = module.ANSWER    fake_formatter = flexmock()    flexmock(module).should_receive('Console_color_formatter').never()    flexmock(module).should_receive('Log_prefix_formatter').and_return(fake_formatter)    multi_stream_handler = flexmock(setLevel=lambda level: None, level=logging.INFO)    multi_stream_handler.should_receive('setFormatter').with_args(fake_formatter).once()    flexmock(module).should_receive('Multi_stream_handler').and_return(multi_stream_handler)    flexmock(module).should_receive('flush_delayed_logging')    flexmock(module.logging).should_receive('basicConfig').with_args(        level=logging.INFO, handlers=list    )    flexmock(module.os.path).should_receive('exists').and_return(False)    flexmock(module.logging.handlers).should_receive('WatchedFileHandler').never()    module.configure_logging(console_log_level=logging.INFO, log_file=None, color_enabled=False)
 |