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-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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
borg_local_path='borg',
|
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
|
|
|
repository='repo', storage_config={}, options=['break-lock'],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_log_info_calls_borg_with_info_parameter():
|
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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
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(
|
|
|
|
repository='repo', storage_config={}, options=['break-lock'],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_log_debug_calls_borg_with_debug_parameter():
|
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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
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(
|
|
|
|
repository='repo', storage_config={}, options=['break-lock'],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_lock_wait_calls_borg_with_lock_wait_parameters():
|
|
|
|
storage_config = {'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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
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(
|
|
|
|
repository='repo', storage_config=storage_config, options=['break-lock'],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_archive_calls_borg_with_archive_parameter():
|
|
|
|
storage_config = {}
|
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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
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(
|
|
|
|
repository='repo', storage_config=storage_config, options=['break-lock'], archive='archive',
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_local_path_calls_borg_via_local_path():
|
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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
borg_local_path='borg1',
|
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
|
|
|
repository='repo', storage_config={}, options=['break-lock'], local_path='borg1',
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_remote_path_calls_borg_with_remote_path_parameters():
|
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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
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(
|
|
|
|
repository='repo', storage_config={}, options=['break-lock'], remote_path='borg1',
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_passes_borg_specific_parameters_to_borg():
|
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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
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(
|
|
|
|
repository='repo', storage_config={}, options=['list', '--progress'],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_omits_dash_dash_in_parameters_passed_to_borg():
|
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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
borg_local_path='borg',
|
|
|
|
extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
|
|
|
repository='repo', storage_config={}, options=['--', 'break-lock'],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_without_borg_specific_parameters_does_not_raise():
|
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',), output_log_level=logging.WARNING, borg_local_path='borg', extra_environment=None,
|
2021-06-18 05:41:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
|
|
|
repository='repo', storage_config={}, options=[],
|
|
|
|
)
|
2022-04-23 23:03:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_passes_key_sub_command_to_borg_before_repository():
|
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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
borg_local_path='borg',
|
|
|
|
extra_environment=None,
|
2022-04-23 23:03:15 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
|
|
|
repository='repo', storage_config={}, options=['key', 'export'],
|
|
|
|
)
|
2022-05-30 00:43:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_passes_debug_sub_command_to_borg_before_repository():
|
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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
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(
|
|
|
|
repository='repo', storage_config={}, options=['debug', 'dump-manifest', 'path'],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_debug_info_command_does_not_pass_borg_repository():
|
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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
borg_local_path='borg',
|
|
|
|
extra_environment=None,
|
2022-05-30 00:43:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
module.run_arbitrary_borg(
|
|
|
|
repository='repo', storage_config={}, options=['debug', 'info'],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_arbitrary_borg_with_debug_convert_profile_command_does_not_pass_borg_repository():
|
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'),
|
|
|
|
output_log_level=logging.WARNING,
|
|
|
|
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(
|
|
|
|
repository='repo', storage_config={}, options=['debug', 'convert-profile', 'in', 'out'],
|
|
|
|
)
|