123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- import logging
- from flexmock import flexmock
- from borgmatic.borg import borg as module
- from ..test_verbosity import insert_logging_mock
- def test_run_arbitrary_borg_calls_borg_with_parameters():
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- flexmock(module.flags).should_receive('make_flags').and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg', 'break-lock', 'repo'),
- output_log_level=logging.WARNING,
- borg_local_path='borg',
- extra_environment=None,
- )
- module.run_arbitrary_borg(
- repository='repo', storage_config={}, local_borg_version='1.2.3', options=['break-lock'],
- )
- def test_run_arbitrary_borg_with_log_info_calls_borg_with_info_parameter():
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- flexmock(module.flags).should_receive('make_flags').and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg', 'break-lock', 'repo', '--info'),
- output_log_level=logging.WARNING,
- borg_local_path='borg',
- extra_environment=None,
- )
- insert_logging_mock(logging.INFO)
- module.run_arbitrary_borg(
- repository='repo', storage_config={}, local_borg_version='1.2.3', options=['break-lock'],
- )
- def test_run_arbitrary_borg_with_log_debug_calls_borg_with_debug_parameter():
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- flexmock(module.flags).should_receive('make_flags').and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg', 'break-lock', 'repo', '--debug', '--show-rc'),
- output_log_level=logging.WARNING,
- borg_local_path='borg',
- extra_environment=None,
- )
- insert_logging_mock(logging.DEBUG)
- module.run_arbitrary_borg(
- repository='repo', storage_config={}, local_borg_version='1.2.3', options=['break-lock'],
- )
- def test_run_arbitrary_borg_with_lock_wait_calls_borg_with_lock_wait_parameters():
- storage_config = {'lock_wait': 5}
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- flexmock(module.flags).should_receive('make_flags').and_return(()).and_return(
- ('--lock-wait', '5')
- )
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg', 'break-lock', 'repo', '--lock-wait', '5'),
- output_log_level=logging.WARNING,
- borg_local_path='borg',
- extra_environment=None,
- )
- module.run_arbitrary_borg(
- repository='repo',
- storage_config=storage_config,
- local_borg_version='1.2.3',
- options=['break-lock'],
- )
- def test_run_arbitrary_borg_with_archive_calls_borg_with_archive_parameter():
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- ('repo::archive',)
- )
- flexmock(module.flags).should_receive('make_flags').and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg', 'break-lock', 'repo::archive'),
- output_log_level=logging.WARNING,
- borg_local_path='borg',
- extra_environment=None,
- )
- module.run_arbitrary_borg(
- repository='repo',
- storage_config={},
- local_borg_version='1.2.3',
- options=['break-lock'],
- archive='archive',
- )
- def test_run_arbitrary_borg_with_local_path_calls_borg_via_local_path():
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- flexmock(module.flags).should_receive('make_flags').and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg1', 'break-lock', 'repo'),
- output_log_level=logging.WARNING,
- borg_local_path='borg1',
- extra_environment=None,
- )
- module.run_arbitrary_borg(
- repository='repo',
- storage_config={},
- local_borg_version='1.2.3',
- options=['break-lock'],
- local_path='borg1',
- )
- def test_run_arbitrary_borg_with_remote_path_calls_borg_with_remote_path_parameters():
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- flexmock(module.flags).should_receive('make_flags').and_return(
- ('--remote-path', 'borg1')
- ).and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg', 'break-lock', 'repo', '--remote-path', 'borg1'),
- output_log_level=logging.WARNING,
- borg_local_path='borg',
- extra_environment=None,
- )
- module.run_arbitrary_borg(
- repository='repo',
- storage_config={},
- local_borg_version='1.2.3',
- options=['break-lock'],
- remote_path='borg1',
- )
- def test_run_arbitrary_borg_passes_borg_specific_parameters_to_borg():
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- flexmock(module.flags).should_receive('make_flags').and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg', 'list', 'repo', '--progress'),
- output_log_level=logging.WARNING,
- borg_local_path='borg',
- extra_environment=None,
- )
- module.run_arbitrary_borg(
- repository='repo',
- storage_config={},
- local_borg_version='1.2.3',
- options=['list', '--progress'],
- )
- def test_run_arbitrary_borg_omits_dash_dash_in_parameters_passed_to_borg():
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- flexmock(module.flags).should_receive('make_flags').and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg', 'break-lock', 'repo'),
- output_log_level=logging.WARNING,
- borg_local_path='borg',
- extra_environment=None,
- )
- module.run_arbitrary_borg(
- repository='repo',
- storage_config={},
- local_borg_version='1.2.3',
- options=['--', 'break-lock'],
- )
- def test_run_arbitrary_borg_without_borg_specific_parameters_does_not_raise():
- flexmock(module.flags).should_receive('make_repository_flags').never()
- flexmock(module.flags).should_receive('make_flags').and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg',), output_log_level=logging.WARNING, borg_local_path='borg', extra_environment=None,
- )
- module.run_arbitrary_borg(
- repository='repo', storage_config={}, local_borg_version='1.2.3', options=[],
- )
- def test_run_arbitrary_borg_passes_key_sub_command_to_borg_before_repository():
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- flexmock(module.flags).should_receive('make_flags').and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg', 'key', 'export', 'repo'),
- output_log_level=logging.WARNING,
- borg_local_path='borg',
- extra_environment=None,
- )
- module.run_arbitrary_borg(
- repository='repo', storage_config={}, local_borg_version='1.2.3', options=['key', 'export'],
- )
- def test_run_arbitrary_borg_passes_debug_sub_command_to_borg_before_repository():
- flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
- flexmock(module.flags).should_receive('make_flags').and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg', 'debug', 'dump-manifest', 'repo', 'path'),
- output_log_level=logging.WARNING,
- borg_local_path='borg',
- extra_environment=None,
- )
- module.run_arbitrary_borg(
- repository='repo',
- storage_config={},
- local_borg_version='1.2.3',
- options=['debug', 'dump-manifest', 'path'],
- )
- def test_run_arbitrary_borg_with_debug_info_command_does_not_pass_borg_repository():
- flexmock(module.flags).should_receive('make_repository_flags').never()
- flexmock(module.flags).should_receive('make_flags').and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg', 'debug', 'info'),
- output_log_level=logging.WARNING,
- borg_local_path='borg',
- extra_environment=None,
- )
- module.run_arbitrary_borg(
- repository='repo', storage_config={}, local_borg_version='1.2.3', options=['debug', 'info'],
- )
- def test_run_arbitrary_borg_with_debug_convert_profile_command_does_not_pass_borg_repository():
- flexmock(module.flags).should_receive('make_repository_flags').never()
- flexmock(module.flags).should_receive('make_flags').and_return(())
- flexmock(module.environment).should_receive('make_environment')
- flexmock(module).should_receive('execute_command').with_args(
- ('borg', 'debug', 'convert-profile', 'in', 'out'),
- output_log_level=logging.WARNING,
- borg_local_path='borg',
- extra_environment=None,
- )
- module.run_arbitrary_borg(
- repository='repo',
- storage_config={},
- local_borg_version='1.2.3',
- options=['debug', 'convert-profile', 'in', 'out'],
- )
|