2018-09-08 22:53:37 +02:00
|
|
|
import logging
|
2018-05-27 01:09:08 +02:00
|
|
|
|
2019-06-25 19:18:30 +02:00
|
|
|
import pytest
|
2018-05-27 01:09:08 +02:00
|
|
|
from flexmock import flexmock
|
|
|
|
|
|
|
|
from borgmatic.borg import list as module
|
|
|
|
|
2019-05-13 23:39:10 +02:00
|
|
|
from ..test_verbosity import insert_logging_mock
|
2018-05-27 01:09:08 +02:00
|
|
|
|
2020-01-30 01:59:02 +01:00
|
|
|
BORG_LIST_LATEST_ARGUMENTS = (
|
|
|
|
'--glob-archives',
|
|
|
|
module.BORG_EXCLUDE_CHECKPOINTS_GLOB,
|
|
|
|
'--last',
|
|
|
|
'1',
|
|
|
|
'--short',
|
|
|
|
'repo',
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_resolve_archive_name_passes_through_non_latest_archive_name():
|
|
|
|
archive = 'myhost-2030-01-01T14:41:17.647620'
|
|
|
|
|
|
|
|
assert module.resolve_archive_name('repo', archive, storage_config={}) == archive
|
|
|
|
|
|
|
|
|
|
|
|
def test_resolve_archive_name_calls_borg_with_parameters():
|
|
|
|
expected_archive = 'archive-name'
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2020-05-15 07:38:38 +02:00
|
|
|
('borg', 'list') + BORG_LIST_LATEST_ARGUMENTS, output_log_level=None, borg_local_path='borg'
|
2020-01-30 01:59:02 +01:00
|
|
|
).and_return(expected_archive + '\n')
|
|
|
|
|
|
|
|
assert module.resolve_archive_name('repo', 'latest', storage_config={}) == expected_archive
|
|
|
|
|
|
|
|
|
|
|
|
def test_resolve_archive_name_with_log_info_calls_borg_with_info_parameter():
|
|
|
|
expected_archive = 'archive-name'
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'list', '--info') + BORG_LIST_LATEST_ARGUMENTS,
|
|
|
|
output_log_level=None,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2020-01-30 01:59:02 +01:00
|
|
|
).and_return(expected_archive + '\n')
|
|
|
|
insert_logging_mock(logging.INFO)
|
|
|
|
|
|
|
|
assert module.resolve_archive_name('repo', 'latest', storage_config={}) == expected_archive
|
|
|
|
|
|
|
|
|
|
|
|
def test_resolve_archive_name_with_log_debug_calls_borg_with_debug_parameter():
|
|
|
|
expected_archive = 'archive-name'
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'list', '--debug', '--show-rc') + BORG_LIST_LATEST_ARGUMENTS,
|
|
|
|
output_log_level=None,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2020-01-30 01:59:02 +01:00
|
|
|
).and_return(expected_archive + '\n')
|
|
|
|
insert_logging_mock(logging.DEBUG)
|
|
|
|
|
|
|
|
assert module.resolve_archive_name('repo', 'latest', storage_config={}) == expected_archive
|
|
|
|
|
|
|
|
|
|
|
|
def test_resolve_archive_name_with_local_path_calls_borg_via_local_path():
|
|
|
|
expected_archive = 'archive-name'
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg1', 'list') + BORG_LIST_LATEST_ARGUMENTS,
|
|
|
|
output_log_level=None,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg1',
|
2020-01-30 01:59:02 +01:00
|
|
|
).and_return(expected_archive + '\n')
|
|
|
|
|
|
|
|
assert (
|
|
|
|
module.resolve_archive_name('repo', 'latest', storage_config={}, local_path='borg1')
|
|
|
|
== expected_archive
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_resolve_archive_name_with_remote_path_calls_borg_with_remote_path_parameters():
|
|
|
|
expected_archive = 'archive-name'
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'list', '--remote-path', 'borg1') + BORG_LIST_LATEST_ARGUMENTS,
|
|
|
|
output_log_level=None,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2020-01-30 01:59:02 +01:00
|
|
|
).and_return(expected_archive + '\n')
|
|
|
|
|
|
|
|
assert (
|
|
|
|
module.resolve_archive_name('repo', 'latest', storage_config={}, remote_path='borg1')
|
|
|
|
== expected_archive
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_resolve_archive_name_without_archives_raises():
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2020-05-15 07:38:38 +02:00
|
|
|
('borg', 'list') + BORG_LIST_LATEST_ARGUMENTS, output_log_level=None, borg_local_path='borg'
|
2020-01-30 01:59:02 +01:00
|
|
|
).and_return('')
|
|
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
module.resolve_archive_name('repo', 'latest', storage_config={})
|
|
|
|
|
|
|
|
|
|
|
|
def test_resolve_archive_name_with_lock_wait_calls_borg_with_lock_wait_parameters():
|
|
|
|
expected_archive = 'archive-name'
|
|
|
|
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'list', '--lock-wait', 'okay') + BORG_LIST_LATEST_ARGUMENTS,
|
|
|
|
output_log_level=None,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2020-01-30 01:59:02 +01:00
|
|
|
).and_return(expected_archive + '\n')
|
|
|
|
|
|
|
|
assert (
|
|
|
|
module.resolve_archive_name('repo', 'latest', storage_config={'lock_wait': 'okay'})
|
|
|
|
== expected_archive
|
|
|
|
)
|
|
|
|
|
2018-05-27 01:09:08 +02:00
|
|
|
|
|
|
|
def test_list_archives_calls_borg_with_parameters():
|
2019-06-12 21:11:36 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2020-05-15 07:38:38 +02:00
|
|
|
('borg', 'list', 'repo'), output_log_level=logging.WARNING, borg_local_path='borg'
|
2019-06-12 21:11:36 +02:00
|
|
|
)
|
2018-05-27 01:09:08 +02:00
|
|
|
|
2019-06-25 19:18:30 +02:00
|
|
|
module.list_archives(
|
2019-10-14 00:58:11 +02:00
|
|
|
repository='repo',
|
|
|
|
storage_config={},
|
2019-12-08 23:07:02 +01:00
|
|
|
list_arguments=flexmock(archive=None, paths=None, json=False, successful=False),
|
2019-06-25 19:18:30 +02:00
|
|
|
)
|
2018-05-27 01:09:08 +02:00
|
|
|
|
|
|
|
|
2018-09-08 22:53:37 +02:00
|
|
|
def test_list_archives_with_log_info_calls_borg_with_info_parameter():
|
2019-04-03 07:30:14 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2020-05-15 07:38:38 +02:00
|
|
|
('borg', 'list', '--info', 'repo'), output_log_level=logging.WARNING, borg_local_path='borg'
|
2019-04-03 07:30:14 +02:00
|
|
|
)
|
2018-09-08 22:53:37 +02:00
|
|
|
insert_logging_mock(logging.INFO)
|
2018-05-27 01:09:08 +02:00
|
|
|
|
2019-06-25 19:18:30 +02:00
|
|
|
module.list_archives(
|
2019-10-14 00:58:11 +02:00
|
|
|
repository='repo',
|
|
|
|
storage_config={},
|
2019-12-08 23:07:02 +01:00
|
|
|
list_arguments=flexmock(archive=None, paths=None, json=False, successful=False),
|
2019-06-25 19:18:30 +02:00
|
|
|
)
|
2018-05-27 01:09:08 +02:00
|
|
|
|
|
|
|
|
2019-06-13 19:01:55 +02:00
|
|
|
def test_list_archives_with_log_info_and_json_suppresses_most_borg_output():
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2020-05-15 07:38:38 +02:00
|
|
|
('borg', 'list', '--json', 'repo'), output_log_level=None, borg_local_path='borg'
|
2019-06-13 19:01:55 +02:00
|
|
|
)
|
|
|
|
insert_logging_mock(logging.INFO)
|
|
|
|
|
2019-06-25 19:18:30 +02:00
|
|
|
module.list_archives(
|
2019-10-14 00:58:11 +02:00
|
|
|
repository='repo',
|
|
|
|
storage_config={},
|
2019-12-08 23:07:02 +01:00
|
|
|
list_arguments=flexmock(archive=None, paths=None, json=True, successful=False),
|
2019-06-25 19:18:30 +02:00
|
|
|
)
|
2019-06-13 19:01:55 +02:00
|
|
|
|
|
|
|
|
2018-09-08 22:53:37 +02:00
|
|
|
def test_list_archives_with_log_debug_calls_borg_with_debug_parameter():
|
2019-04-03 07:30:14 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2019-12-01 01:55:05 +01:00
|
|
|
('borg', 'list', '--debug', '--show-rc', 'repo'),
|
|
|
|
output_log_level=logging.WARNING,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2019-04-03 07:30:14 +02:00
|
|
|
)
|
2018-09-08 22:53:37 +02:00
|
|
|
insert_logging_mock(logging.DEBUG)
|
2018-05-27 01:09:08 +02:00
|
|
|
|
2019-06-25 19:18:30 +02:00
|
|
|
module.list_archives(
|
2019-10-14 00:58:11 +02:00
|
|
|
repository='repo',
|
|
|
|
storage_config={},
|
2019-12-08 23:07:02 +01:00
|
|
|
list_arguments=flexmock(archive=None, paths=None, json=False, successful=False),
|
2019-06-25 19:18:30 +02:00
|
|
|
)
|
2018-05-27 01:09:08 +02:00
|
|
|
|
|
|
|
|
2019-06-13 19:01:55 +02:00
|
|
|
def test_list_archives_with_log_debug_and_json_suppresses_most_borg_output():
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2020-05-15 07:38:38 +02:00
|
|
|
('borg', 'list', '--json', 'repo'), output_log_level=None, borg_local_path='borg'
|
2019-06-13 19:01:55 +02:00
|
|
|
)
|
|
|
|
insert_logging_mock(logging.DEBUG)
|
|
|
|
|
2019-06-25 19:18:30 +02:00
|
|
|
module.list_archives(
|
2019-10-14 00:58:11 +02:00
|
|
|
repository='repo',
|
|
|
|
storage_config={},
|
2019-12-08 23:07:02 +01:00
|
|
|
list_arguments=flexmock(archive=None, paths=None, json=True, successful=False),
|
2019-06-25 19:18:30 +02:00
|
|
|
)
|
2019-06-13 19:01:55 +02:00
|
|
|
|
|
|
|
|
2019-02-24 08:02:17 +01:00
|
|
|
def test_list_archives_with_lock_wait_calls_borg_with_lock_wait_parameters():
|
|
|
|
storage_config = {'lock_wait': 5}
|
2019-04-03 07:30:14 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2019-12-01 01:55:05 +01:00
|
|
|
('borg', 'list', '--lock-wait', '5', 'repo'),
|
|
|
|
output_log_level=logging.WARNING,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2019-04-03 07:30:14 +02:00
|
|
|
)
|
2018-07-28 23:21:38 +02:00
|
|
|
|
2019-06-25 19:18:30 +02:00
|
|
|
module.list_archives(
|
|
|
|
repository='repo',
|
|
|
|
storage_config=storage_config,
|
2019-12-08 23:07:02 +01:00
|
|
|
list_arguments=flexmock(archive=None, paths=None, json=False, successful=False),
|
2019-06-25 19:18:30 +02:00
|
|
|
)
|
2019-02-24 08:02:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_list_archives_with_archive_calls_borg_with_archive_parameter():
|
|
|
|
storage_config = {}
|
2019-04-03 07:30:14 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2020-05-15 07:38:38 +02:00
|
|
|
('borg', 'list', 'repo::archive'), output_log_level=logging.WARNING, borg_local_path='borg'
|
2019-04-03 07:30:14 +02:00
|
|
|
)
|
2019-02-24 08:02:17 +01:00
|
|
|
|
2019-06-25 19:18:30 +02:00
|
|
|
module.list_archives(
|
|
|
|
repository='repo',
|
|
|
|
storage_config=storage_config,
|
2019-12-08 23:07:02 +01:00
|
|
|
list_arguments=flexmock(archive='archive', paths=None, json=False, successful=False),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_list_archives_with_path_calls_borg_with_path_parameter():
|
|
|
|
storage_config = {}
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'list', 'repo::archive', 'var/lib'),
|
|
|
|
output_log_level=logging.WARNING,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2019-12-08 23:07:02 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
module.list_archives(
|
|
|
|
repository='repo',
|
|
|
|
storage_config=storage_config,
|
|
|
|
list_arguments=flexmock(archive='archive', paths=['var/lib'], json=False, successful=False),
|
2019-06-25 19:18:30 +02:00
|
|
|
)
|
2018-07-28 23:21:38 +02:00
|
|
|
|
|
|
|
|
2018-05-27 01:09:08 +02:00
|
|
|
def test_list_archives_with_local_path_calls_borg_via_local_path():
|
2019-04-03 07:30:14 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2020-05-15 07:38:38 +02:00
|
|
|
('borg1', 'list', 'repo'), output_log_level=logging.WARNING, borg_local_path='borg1'
|
2019-04-03 07:30:14 +02:00
|
|
|
)
|
2018-05-27 01:09:08 +02:00
|
|
|
|
2019-06-25 19:18:30 +02:00
|
|
|
module.list_archives(
|
|
|
|
repository='repo',
|
|
|
|
storage_config={},
|
2019-12-08 23:07:02 +01:00
|
|
|
list_arguments=flexmock(archive=None, paths=None, json=False, successful=False),
|
2019-06-25 19:18:30 +02:00
|
|
|
local_path='borg1',
|
|
|
|
)
|
2018-05-27 01:09:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_list_archives_with_remote_path_calls_borg_with_remote_path_parameters():
|
2019-04-03 07:30:14 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2019-12-01 01:55:05 +01:00
|
|
|
('borg', 'list', '--remote-path', 'borg1', 'repo'),
|
|
|
|
output_log_level=logging.WARNING,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2019-04-03 07:30:14 +02:00
|
|
|
)
|
2018-05-27 01:09:08 +02:00
|
|
|
|
2019-06-25 19:18:30 +02:00
|
|
|
module.list_archives(
|
|
|
|
repository='repo',
|
|
|
|
storage_config={},
|
2019-12-08 23:07:02 +01:00
|
|
|
list_arguments=flexmock(archive=None, paths=None, json=False, successful=False),
|
2019-06-25 19:18:30 +02:00
|
|
|
remote_path='borg1',
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_list_archives_with_short_calls_borg_with_short_parameter():
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2019-12-01 01:55:05 +01:00
|
|
|
('borg', 'list', '--short', 'repo'),
|
|
|
|
output_log_level=logging.WARNING,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2019-06-25 19:18:30 +02:00
|
|
|
).and_return('[]')
|
|
|
|
|
|
|
|
module.list_archives(
|
|
|
|
repository='repo',
|
|
|
|
storage_config={},
|
2019-12-08 23:07:02 +01:00
|
|
|
list_arguments=flexmock(archive=None, paths=None, json=False, successful=False, short=True),
|
2019-06-25 19:18:30 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'argument_name',
|
|
|
|
(
|
|
|
|
'prefix',
|
|
|
|
'glob_archives',
|
|
|
|
'sort_by',
|
|
|
|
'first',
|
|
|
|
'last',
|
|
|
|
'exclude',
|
|
|
|
'exclude_from',
|
|
|
|
'pattern',
|
2019-10-23 07:42:36 +02:00
|
|
|
'patterns_from',
|
2019-06-25 19:18:30 +02:00
|
|
|
),
|
|
|
|
)
|
|
|
|
def test_list_archives_passes_through_arguments_to_borg(argument_name):
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2019-09-13 00:27:04 +02:00
|
|
|
('borg', 'list', '--' + argument_name.replace('_', '-'), 'value', 'repo'),
|
2019-06-25 19:18:30 +02:00
|
|
|
output_log_level=logging.WARNING,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2019-06-25 19:18:30 +02:00
|
|
|
).and_return('[]')
|
|
|
|
|
|
|
|
module.list_archives(
|
|
|
|
repository='repo',
|
|
|
|
storage_config={},
|
2019-10-14 00:58:11 +02:00
|
|
|
list_arguments=flexmock(
|
2019-12-08 23:07:02 +01:00
|
|
|
archive=None, paths=None, json=False, successful=False, **{argument_name: 'value'}
|
2019-10-14 00:58:11 +02:00
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_list_archives_with_successful_calls_borg_to_exclude_checkpoints():
|
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
|
('borg', 'list', '--glob-archives', module.BORG_EXCLUDE_CHECKPOINTS_GLOB, 'repo'),
|
|
|
|
output_log_level=logging.WARNING,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2019-10-14 00:58:11 +02:00
|
|
|
).and_return('[]')
|
|
|
|
|
|
|
|
module.list_archives(
|
|
|
|
repository='repo',
|
|
|
|
storage_config={},
|
2019-12-08 23:07:02 +01:00
|
|
|
list_arguments=flexmock(archive=None, paths=None, json=False, successful=True),
|
2019-06-25 19:18:30 +02:00
|
|
|
)
|
2018-05-27 01:09:08 +02:00
|
|
|
|
|
|
|
|
2019-02-24 08:02:17 +01:00
|
|
|
def test_list_archives_with_json_calls_borg_with_json_parameter():
|
2019-04-03 07:30:14 +02:00
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
2020-05-15 07:38:38 +02:00
|
|
|
('borg', 'list', '--json', 'repo'), output_log_level=None, borg_local_path='borg'
|
2019-04-03 07:30:14 +02:00
|
|
|
).and_return('[]')
|
|
|
|
|
2019-06-25 19:18:30 +02:00
|
|
|
json_output = module.list_archives(
|
2019-10-14 00:58:11 +02:00
|
|
|
repository='repo',
|
|
|
|
storage_config={},
|
2019-12-08 23:07:02 +01:00
|
|
|
list_arguments=flexmock(archive=None, paths=None, json=True, successful=False),
|
2019-06-25 19:18:30 +02:00
|
|
|
)
|
2018-05-27 01:09:08 +02:00
|
|
|
|
2019-04-03 07:30:14 +02:00
|
|
|
assert json_output == '[]'
|