123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- import logging
- from collections import OrderedDict
- from flexmock import flexmock
- from borgmatic.borg import prune as module
- from ..test_verbosity import insert_logging_mock
- def insert_execute_command_mock(prune_command, output_log_level):
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- prune_command,
- output_log_level=output_log_level,
- borg_local_path=prune_command[0],
- extra_environment=None,
- ).once()
- BASE_PRUNE_FLAGS = (('--keep-daily', '1'), ('--keep-weekly', '2'), ('--keep-monthly', '3'))
- def test_make_prune_flags_returns_flags_from_config_plus_default_prefix_glob():
- retention_config = OrderedDict((('keep_daily', 1), ('keep_weekly', 2), ('keep_monthly', 3)))
- flexmock(module.feature).should_receive('available').and_return(True)
- result = module.make_prune_flags(retention_config, local_borg_version='1.2.3')
- assert tuple(result) == BASE_PRUNE_FLAGS + (('--match-archives', 'sh:{hostname}-*'),)
- def test_make_prune_flags_accepts_prefix_with_placeholders():
- retention_config = OrderedDict((('keep_daily', 1), ('prefix', 'Documents_{hostname}-{now}')))
- flexmock(module.feature).should_receive('available').and_return(True)
- result = module.make_prune_flags(retention_config, local_borg_version='1.2.3')
- expected = (('--keep-daily', '1'), ('--match-archives', 'sh:Documents_{hostname}-{now}*'))
- assert tuple(result) == expected
- def test_make_prune_flags_with_prefix_without_borg_features_uses_glob_archives():
- retention_config = OrderedDict((('keep_daily', 1), ('prefix', 'Documents_{hostname}-{now}')))
- flexmock(module.feature).should_receive('available').and_return(False)
- result = module.make_prune_flags(retention_config, local_borg_version='1.2.3')
- expected = (('--keep-daily', '1'), ('--glob-archives', 'Documents_{hostname}-{now}*'))
- assert tuple(result) == expected
- def test_make_prune_flags_treats_empty_prefix_as_no_prefix():
- retention_config = OrderedDict((('keep_daily', 1), ('prefix', '')))
- flexmock(module.feature).should_receive('available').and_return(True)
- result = module.make_prune_flags(retention_config, local_borg_version='1.2.3')
- expected = (('--keep-daily', '1'),)
- assert tuple(result) == expected
- def test_make_prune_flags_treats_none_prefix_as_no_prefix():
- retention_config = OrderedDict((('keep_daily', 1), ('prefix', None)))
- flexmock(module.feature).should_receive('available').and_return(True)
- result = module.make_prune_flags(retention_config, local_borg_version='1.2.3')
- expected = (('--keep-daily', '1'),)
- assert tuple(result) == expected
- PRUNE_COMMAND = ('borg', 'prune', '--keep-daily', '1', '--keep-weekly', '2', '--keep-monthly', '3')
- def test_prune_archives_calls_borg_with_parameters():
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_execute_command_mock(PRUNE_COMMAND + ('repo',), logging.INFO)
- module.prune_archives(
- dry_run=False,
- repository='repo',
- storage_config={},
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- )
- def test_prune_archives_with_log_info_calls_borg_with_info_parameter():
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_execute_command_mock(PRUNE_COMMAND + ('--info', 'repo'), logging.INFO)
- insert_logging_mock(logging.INFO)
- module.prune_archives(
- repository='repo',
- storage_config={},
- dry_run=False,
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- )
- def test_prune_archives_with_log_debug_calls_borg_with_debug_parameter():
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_execute_command_mock(PRUNE_COMMAND + ('--debug', '--show-rc', 'repo'), logging.INFO)
- insert_logging_mock(logging.DEBUG)
- module.prune_archives(
- repository='repo',
- storage_config={},
- dry_run=False,
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- )
- def test_prune_archives_with_dry_run_calls_borg_with_dry_run_parameter():
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_execute_command_mock(PRUNE_COMMAND + ('--dry-run', 'repo'), logging.INFO)
- module.prune_archives(
- repository='repo',
- storage_config={},
- dry_run=True,
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- )
- def test_prune_archives_with_local_path_calls_borg_via_local_path():
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_execute_command_mock(('borg1',) + PRUNE_COMMAND[1:] + ('repo',), logging.INFO)
- module.prune_archives(
- dry_run=False,
- repository='repo',
- storage_config={},
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- local_path='borg1',
- )
- def test_prune_archives_with_remote_path_calls_borg_with_remote_path_parameters():
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_execute_command_mock(PRUNE_COMMAND + ('--remote-path', 'borg1', 'repo'), logging.INFO)
- module.prune_archives(
- dry_run=False,
- repository='repo',
- storage_config={},
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- remote_path='borg1',
- )
- def test_prune_archives_with_stats_calls_borg_with_stats_parameter_and_warning_output_log_level():
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_execute_command_mock(PRUNE_COMMAND + ('--stats', 'repo'), logging.WARNING)
- module.prune_archives(
- dry_run=False,
- repository='repo',
- storage_config={},
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- stats=True,
- )
- def test_prune_archives_with_stats_and_log_info_calls_borg_with_stats_parameter_and_info_output_log_level():
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_logging_mock(logging.INFO)
- insert_execute_command_mock(PRUNE_COMMAND + ('--stats', '--info', 'repo'), logging.INFO)
- module.prune_archives(
- dry_run=False,
- repository='repo',
- storage_config={},
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- stats=True,
- )
- def test_prune_archives_with_files_calls_borg_with_list_parameter_and_warning_output_log_level():
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_execute_command_mock(PRUNE_COMMAND + ('--list', 'repo'), logging.WARNING)
- module.prune_archives(
- dry_run=False,
- repository='repo',
- storage_config={},
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- list_archives=True,
- )
- def test_prune_archives_with_files_and_log_info_calls_borg_with_list_parameter_and_info_output_log_level():
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_logging_mock(logging.INFO)
- insert_execute_command_mock(PRUNE_COMMAND + ('--info', '--list', 'repo'), logging.INFO)
- module.prune_archives(
- dry_run=False,
- repository='repo',
- storage_config={},
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- list_archives=True,
- )
- def test_prune_archives_with_umask_calls_borg_with_umask_parameters():
- storage_config = {'umask': '077'}
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_execute_command_mock(PRUNE_COMMAND + ('--umask', '077', 'repo'), logging.INFO)
- module.prune_archives(
- dry_run=False,
- repository='repo',
- storage_config=storage_config,
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- )
- def test_prune_archives_with_lock_wait_calls_borg_with_lock_wait_parameters():
- storage_config = {'lock_wait': 5}
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_execute_command_mock(PRUNE_COMMAND + ('--lock-wait', '5', 'repo'), logging.INFO)
- module.prune_archives(
- dry_run=False,
- repository='repo',
- storage_config=storage_config,
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- )
- def test_prune_archives_with_extra_borg_options_calls_borg_with_extra_options():
- flexmock(module).should_receive('make_prune_flags').and_return(BASE_PRUNE_FLAGS)
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- insert_execute_command_mock(PRUNE_COMMAND + ('--extra', '--options', 'repo'), logging.INFO)
- module.prune_archives(
- dry_run=False,
- repository='repo',
- storage_config={'extra_borg_options': {'prune': '--extra --options'}},
- retention_config=flexmock(),
- local_borg_version='1.2.3',
- )
|