2021-06-18 05:41:44 +02:00
|
|
|
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():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
|
|
|
|
flexmock(module.flags).should_receive('make_flags').and_return(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2021-06-18 05:41:44 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2022-06-30 22:42:17 +02:00
|
|
|
('borg', 'break-lock', 'repo'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2022-06-30 22:42:17 +02:00
|
|
|
borg_local_path='borg',
|
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
|
|
|
storage_config={},
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['break-lock'],
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_log_info_calls_borg_with_info_parameter():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
|
|
|
|
flexmock(module.flags).should_receive('make_flags').and_return(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2021-06-18 05:41:44 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'break-lock', 'repo', '--info'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2021-06-18 05:41:44 +02:00
|
|
|
borg_local_path='borg',
|
2022-06-30 22:42:17 +02:00
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
insert_logging_mock(logging.INFO)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
|
|
|
storage_config={},
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['break-lock'],
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_log_debug_calls_borg_with_debug_parameter():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
|
|
|
|
flexmock(module.flags).should_receive('make_flags').and_return(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2021-06-18 05:41:44 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'break-lock', 'repo', '--debug', '--show-rc'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2021-06-18 05:41:44 +02:00
|
|
|
borg_local_path='borg',
|
2022-06-30 22:42:17 +02:00
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
insert_logging_mock(logging.DEBUG)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
|
|
|
storage_config={},
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['break-lock'],
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_lock_wait_calls_borg_with_lock_wait_parameters():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2021-06-18 05:41:44 +02:00
|
|
|
storage_config = {'lock_wait': 5}
|
2022-08-16 18:30:00 +02:00
|
|
|
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')
|
|
|
|
)
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2021-06-18 05:41:44 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'break-lock', 'repo', '--lock-wait', '5'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2021-06-18 05:41:44 +02:00
|
|
|
borg_local_path='borg',
|
2022-06-30 22:42:17 +02:00
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
2022-08-16 18:30:00 +02:00
|
|
|
storage_config=storage_config,
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['break-lock'],
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_archive_calls_borg_with_archive_parameter():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
|
|
('repo::archive',)
|
|
|
|
)
|
|
|
|
flexmock(module.flags).should_receive('make_flags').and_return(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2021-06-18 05:41:44 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'break-lock', 'repo::archive'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2021-06-18 05:41:44 +02:00
|
|
|
borg_local_path='borg',
|
2022-06-30 22:42:17 +02:00
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
2022-08-16 18:30:00 +02:00
|
|
|
storage_config={},
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['break-lock'],
|
|
|
|
archive='archive',
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_local_path_calls_borg_via_local_path():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
|
|
|
|
flexmock(module.flags).should_receive('make_flags').and_return(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2021-06-18 05:41:44 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2022-06-30 22:42:17 +02:00
|
|
|
('borg1', 'break-lock', 'repo'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2022-06-30 22:42:17 +02:00
|
|
|
borg_local_path='borg1',
|
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
2022-08-16 18:30:00 +02:00
|
|
|
storage_config={},
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['break-lock'],
|
|
|
|
local_path='borg1',
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_remote_path_calls_borg_with_remote_path_parameters():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
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(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2021-06-18 05:41:44 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'break-lock', 'repo', '--remote-path', 'borg1'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2021-06-18 05:41:44 +02:00
|
|
|
borg_local_path='borg',
|
2022-06-30 22:42:17 +02:00
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
2022-08-16 18:30:00 +02:00
|
|
|
storage_config={},
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['break-lock'],
|
|
|
|
remote_path='borg1',
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_passes_borg_specific_parameters_to_borg():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
|
|
|
|
flexmock(module.flags).should_receive('make_flags').and_return(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2021-06-18 05:41:44 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'list', 'repo', '--progress'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2021-06-18 05:41:44 +02:00
|
|
|
borg_local_path='borg',
|
2022-06-30 22:42:17 +02:00
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
2022-08-16 18:30:00 +02:00
|
|
|
storage_config={},
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['list', '--progress'],
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_omits_dash_dash_in_parameters_passed_to_borg():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
|
|
|
|
flexmock(module.flags).should_receive('make_flags').and_return(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2021-06-18 05:41:44 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2022-06-30 22:42:17 +02:00
|
|
|
('borg', 'break-lock', 'repo'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2022-06-30 22:42:17 +02:00
|
|
|
borg_local_path='borg',
|
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
2022-08-16 18:30:00 +02:00
|
|
|
storage_config={},
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['--', 'break-lock'],
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_without_borg_specific_parameters_does_not_raise():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
flexmock(module.flags).should_receive('make_repository_flags').never()
|
|
|
|
flexmock(module.flags).should_receive('make_flags').and_return(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2021-06-18 05:41:44 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2022-12-02 21:12:10 +01:00
|
|
|
('borg',),
|
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
|
borg_local_path='borg',
|
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo', storage_config={}, local_borg_version='1.2.3', options=[],
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
2022-04-23 23:03:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_passes_key_sub_command_to_borg_before_repository():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
|
|
|
|
flexmock(module.flags).should_receive('make_flags').and_return(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2022-04-23 23:03:15 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2022-06-30 22:42:17 +02:00
|
|
|
('borg', 'key', 'export', 'repo'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2022-06-30 22:42:17 +02:00
|
|
|
borg_local_path='borg',
|
|
|
|
extra_environment=None,
|
2022-04-23 23:03:15 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
|
|
|
storage_config={},
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['key', 'export'],
|
2022-04-23 23:03:15 +02:00
|
|
|
)
|
2022-05-30 00:43:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_passes_debug_sub_command_to_borg_before_repository():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
flexmock(module.flags).should_receive('make_repository_flags').and_return(('repo',))
|
|
|
|
flexmock(module.flags).should_receive('make_flags').and_return(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2022-05-30 00:43:03 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'debug', 'dump-manifest', 'repo', 'path'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2022-05-30 00:43:03 +02:00
|
|
|
borg_local_path='borg',
|
2022-06-30 22:42:17 +02:00
|
|
|
extra_environment=None,
|
2022-05-30 00:43:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
2022-08-16 18:30:00 +02:00
|
|
|
storage_config={},
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['debug', 'dump-manifest', 'path'],
|
2022-05-30 00:43:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_debug_info_command_does_not_pass_borg_repository():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
flexmock(module.flags).should_receive('make_repository_flags').never()
|
|
|
|
flexmock(module.flags).should_receive('make_flags').and_return(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2022-05-30 00:43:03 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2022-06-30 22:42:17 +02:00
|
|
|
('borg', 'debug', 'info'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2022-06-30 22:42:17 +02:00
|
|
|
borg_local_path='borg',
|
|
|
|
extra_environment=None,
|
2022-05-30 00:43:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
|
|
|
storage_config={},
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['debug', 'info'],
|
2022-05-30 00:43:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_debug_convert_profile_command_does_not_pass_borg_repository():
|
2022-12-02 21:12:10 +01:00
|
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
2022-08-16 18:30:00 +02:00
|
|
|
flexmock(module.flags).should_receive('make_repository_flags').never()
|
|
|
|
flexmock(module.flags).should_receive('make_flags').and_return(())
|
2022-06-30 22:42:17 +02:00
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
2022-05-30 00:43:03 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'debug', 'convert-profile', 'in', 'out'),
|
2022-12-02 21:12:10 +01:00
|
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
2022-05-30 00:43:03 +02:00
|
|
|
borg_local_path='borg',
|
2022-06-30 22:42:17 +02:00
|
|
|
extra_environment=None,
|
2022-05-30 00:43:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
2023-03-26 20:22:25 +02:00
|
|
|
repository_path='repo',
|
2022-08-16 18:30:00 +02:00
|
|
|
storage_config={},
|
|
|
|
local_borg_version='1.2.3',
|
|
|
|
options=['debug', 'convert-profile', 'in', 'out'],
|
2022-05-30 00:43:03 +02:00
|
|
|
)
|