mirror of
https://github.com/borgmatic-collective/borgmatic.git
synced 2026-07-22 02:03:01 +02:00
2045 lines
85 KiB
Python
2045 lines
85 KiB
Python
import logging
|
|
|
|
import pytest
|
|
from flexmock import flexmock
|
|
|
|
from borgmatic.borg import create as module
|
|
from borgmatic.borg.pattern import Pattern, Pattern_source, Pattern_style, Pattern_type
|
|
|
|
from ..test_verbosity import insert_logging_mock
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
'character_device,block_device,fifo,expected_result',
|
|
(
|
|
(False, False, False, False),
|
|
(True, False, False, True),
|
|
(False, True, False, True),
|
|
(True, True, False, True),
|
|
(False, False, True, True),
|
|
(False, True, True, True),
|
|
(True, False, True, True),
|
|
),
|
|
)
|
|
def test_special_file_looks_at_file_type(character_device, block_device, fifo, expected_result):
|
|
flexmock(module.os).should_receive('stat').and_return(flexmock(st_mode=flexmock()))
|
|
flexmock(module.stat).should_receive('S_ISCHR').and_return(character_device)
|
|
flexmock(module.stat).should_receive('S_ISBLK').and_return(block_device)
|
|
flexmock(module.stat).should_receive('S_ISFIFO').and_return(fifo)
|
|
|
|
assert module.special_file('/dev/special') == expected_result
|
|
|
|
|
|
def test_special_file_treats_broken_symlink_as_non_special():
|
|
flexmock(module.os).should_receive('stat').and_raise(FileNotFoundError)
|
|
|
|
assert module.special_file('/broken/symlink') is False
|
|
|
|
|
|
def test_special_file_prepends_relative_path_with_working_directory():
|
|
flexmock(module.os).should_receive('stat').with_args('/working/dir/relative').and_return(
|
|
flexmock(st_mode=flexmock()),
|
|
)
|
|
flexmock(module.stat).should_receive('S_ISCHR').and_return(False)
|
|
flexmock(module.stat).should_receive('S_ISBLK').and_return(False)
|
|
flexmock(module.stat).should_receive('S_ISFIFO').and_return(False)
|
|
|
|
assert module.special_file('relative', '/working/dir') is False
|
|
|
|
|
|
def test_any_parent_directories_treats_parents_as_match():
|
|
module.any_parent_directories('/foo/bar.txt', ('/foo', '/etc'))
|
|
|
|
|
|
def test_any_parent_directories_treats_grandparents_as_match():
|
|
module.any_parent_directories('/foo/bar/baz.txt', ('/foo', '/etc'))
|
|
|
|
|
|
def test_any_parent_directories_treats_unrelated_paths_as_non_match():
|
|
module.any_parent_directories('/foo/bar.txt', ('/usr', '/etc'))
|
|
|
|
|
|
def test_validate_planned_backup_paths_parses_borg_dry_run_file_list():
|
|
flexmock(module.flags).should_receive('omit_flag').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.flags).should_receive('omit_flag_and_value').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').and_yield(
|
|
'Processing files ...',
|
|
'- /foo',
|
|
'+ /bar',
|
|
'- /baz',
|
|
)
|
|
flexmock(module.os.path).should_receive('exists').and_return(False)
|
|
flexmock(module).should_receive('any_parent_directories').replace_with(
|
|
lambda path, candidates: any(path.startswith(parent) for parent in candidates)
|
|
)
|
|
flexmock(module).should_receive('special_file').with_args('/foo', None).and_return(False)
|
|
flexmock(module).should_receive('special_file').with_args('/bar', None).and_return(False)
|
|
flexmock(module).should_receive('special_file').with_args('/baz', None).and_return(False)
|
|
|
|
assert (
|
|
module.validate_planned_backup_paths(
|
|
dry_run=False,
|
|
create_command=('borg', 'create'),
|
|
config={},
|
|
patterns=(
|
|
module.borgmatic.borg.pattern.Pattern('/foo'),
|
|
module.borgmatic.borg.pattern.Pattern('/bar'),
|
|
module.borgmatic.borg.pattern.Pattern('/baz'),
|
|
),
|
|
local_path=None,
|
|
working_directory=None,
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
== ()
|
|
)
|
|
|
|
|
|
def test_validate_planned_backup_paths_skips_borgmatic_runtime_directory():
|
|
flexmock(module.flags).should_receive('omit_flag').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.flags).should_receive('omit_flag_and_value').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').and_yield(
|
|
'+ /foo',
|
|
'- /run/borgmatic/bar',
|
|
'- /baz',
|
|
)
|
|
flexmock(module.os.path).should_receive('exists').and_return(True)
|
|
flexmock(module).should_receive('any_parent_directories').replace_with(
|
|
lambda path, candidates: any(path.startswith(parent) for parent in candidates)
|
|
)
|
|
flexmock(module).should_receive('special_file').with_args('/foo', None).and_return(False)
|
|
flexmock(module).should_receive('special_file').with_args('/run/borgmatic/bar', None).never()
|
|
flexmock(module).should_receive('special_file').with_args('/baz', None).and_return(False)
|
|
|
|
assert (
|
|
module.validate_planned_backup_paths(
|
|
dry_run=False,
|
|
create_command=('borg', 'create'),
|
|
config={},
|
|
patterns=(
|
|
module.borgmatic.borg.pattern.Pattern('/foo'),
|
|
module.borgmatic.borg.pattern.Pattern(
|
|
'/run/borgmatic/bar', module.borgmatic.borg.pattern.Pattern_type.ROOT
|
|
),
|
|
module.borgmatic.borg.pattern.Pattern('/baz'),
|
|
),
|
|
local_path=None,
|
|
working_directory=None,
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
== ()
|
|
)
|
|
|
|
|
|
def test_validate_planned_backup_paths_with_borgmatic_runtime_directory_missing_from_paths_output_warns():
|
|
flexmock(module.flags).should_receive('omit_flag').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.flags).should_receive('omit_flag_and_value').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').and_yield(
|
|
'+ /foo',
|
|
'- /bar',
|
|
'- /baz',
|
|
)
|
|
flexmock(module.os.path).should_receive('exists').and_return(True)
|
|
flexmock(module).should_receive('any_parent_directories').replace_with(
|
|
lambda path, candidates: any(path.startswith(parent) for parent in candidates)
|
|
)
|
|
flexmock(module).should_receive('special_file').with_args('/foo', None).and_return(False)
|
|
flexmock(module).should_receive('special_file').with_args('/bar', None).and_return(False)
|
|
flexmock(module).should_receive('special_file').with_args('/baz', None).and_return(False)
|
|
flexmock(module.logger).should_receive('warning').once()
|
|
|
|
assert (
|
|
module.validate_planned_backup_paths(
|
|
dry_run=False,
|
|
create_command=('borg', 'create'),
|
|
config={},
|
|
patterns=(
|
|
module.borgmatic.borg.pattern.Pattern('/foo'),
|
|
module.borgmatic.borg.pattern.Pattern(
|
|
'/run/borgmatic/bar', module.borgmatic.borg.pattern.Pattern_type.ROOT
|
|
),
|
|
module.borgmatic.borg.pattern.Pattern('/baz'),
|
|
),
|
|
local_path=None,
|
|
working_directory=None,
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
== ()
|
|
)
|
|
|
|
|
|
def test_validate_planned_backup_paths_with_borgmatic_runtime_directory_partially_excluded_from_paths_output_does_not_warn():
|
|
flexmock(module.flags).should_receive('omit_flag').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.flags).should_receive('omit_flag_and_value').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment').and_return(None)
|
|
|
|
# /run/borgmatic/bar is present, but /run/borgmatic/quux is missing.
|
|
flexmock(module).should_receive('execute_command_and_capture_output').and_yield(
|
|
'+ /foo',
|
|
'- /run/borgmatic/bar',
|
|
'- /baz',
|
|
)
|
|
flexmock(module.os.path).should_receive('exists').and_return(True)
|
|
flexmock(module).should_receive('any_parent_directories').replace_with(
|
|
lambda path, candidates: any(path.startswith(parent) for parent in candidates)
|
|
)
|
|
flexmock(module).should_receive('special_file').with_args('/foo', None).and_return(False)
|
|
flexmock(module).should_receive('special_file').with_args('/run/borgmatic/bar', None).never()
|
|
flexmock(module).should_receive('special_file').with_args('/baz', None).and_return(False)
|
|
flexmock(module).should_receive('special_file').with_args('/run/borgmatic/quux', None).never()
|
|
flexmock(module.logger).should_receive('warning').never()
|
|
|
|
assert (
|
|
module.validate_planned_backup_paths(
|
|
dry_run=False,
|
|
create_command=('borg', 'create'),
|
|
config={},
|
|
patterns=(
|
|
module.borgmatic.borg.pattern.Pattern('/foo'),
|
|
module.borgmatic.borg.pattern.Pattern(
|
|
'/run/borgmatic/bar', module.borgmatic.borg.pattern.Pattern_type.ROOT
|
|
),
|
|
module.borgmatic.borg.pattern.Pattern('/baz'),
|
|
module.borgmatic.borg.pattern.Pattern(
|
|
'/run/borgmatic/quux', module.borgmatic.borg.pattern.Pattern_type.ROOT
|
|
),
|
|
),
|
|
local_path=None,
|
|
working_directory=None,
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
== ()
|
|
)
|
|
|
|
|
|
def test_validate_planned_backup_paths_with_borgmatic_runtime_directory_with_corresponding_include_and_missing_from_paths_output_does_not_warn():
|
|
flexmock(module.flags).should_receive('omit_flag').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.flags).should_receive('omit_flag_and_value').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').and_yield(
|
|
'+ /foo',
|
|
'- /bar',
|
|
'- /baz',
|
|
)
|
|
flexmock(module.os.path).should_receive('exists').and_return(True)
|
|
flexmock(module).should_receive('any_parent_directories').replace_with(
|
|
lambda path, candidates: any(path.startswith(parent) for parent in candidates)
|
|
)
|
|
flexmock(module).should_receive('special_file').with_args('/foo', None).and_return(False)
|
|
flexmock(module).should_receive('special_file').with_args('/bar', None).and_return(False)
|
|
flexmock(module).should_receive('special_file').with_args('/baz', None).and_return(False)
|
|
flexmock(module.logger).should_receive('warning').never()
|
|
|
|
assert (
|
|
module.validate_planned_backup_paths(
|
|
dry_run=False,
|
|
create_command=('borg', 'create'),
|
|
config={},
|
|
patterns=(
|
|
module.borgmatic.borg.pattern.Pattern('/foo'),
|
|
module.borgmatic.borg.pattern.Pattern(
|
|
'/run/borgmatic/bar', module.borgmatic.borg.pattern.Pattern_type.ROOT
|
|
),
|
|
module.borgmatic.borg.pattern.Pattern(
|
|
'/run/borgmatic/bar', module.borgmatic.borg.pattern.Pattern_type.INCLUDE
|
|
),
|
|
module.borgmatic.borg.pattern.Pattern('/baz'),
|
|
),
|
|
local_path=None,
|
|
working_directory=None,
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
== ()
|
|
)
|
|
|
|
|
|
def test_validate_planned_backup_paths_with_borgmatic_runtime_directory_missing_from_patterns_does_not_raise():
|
|
flexmock(module.flags).should_receive('omit_flag').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.flags).should_receive('omit_flag_and_value').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').and_yield(
|
|
'+ /foo',
|
|
'- /run/borgmatic/bar',
|
|
'- /baz',
|
|
)
|
|
flexmock(module.os.path).should_receive('exists').and_return(True)
|
|
flexmock(module).should_receive('any_parent_directories').replace_with(
|
|
lambda path, candidates: any(path.startswith(parent) for parent in candidates)
|
|
)
|
|
flexmock(module).should_receive('special_file').with_args('/foo', None).and_return(False)
|
|
flexmock(module).should_receive('special_file').with_args('/baz', None).and_return(False)
|
|
|
|
assert (
|
|
module.validate_planned_backup_paths(
|
|
dry_run=False,
|
|
create_command=('borg', 'create'),
|
|
config={},
|
|
patterns=(
|
|
module.borgmatic.borg.pattern.Pattern('/foo'),
|
|
module.borgmatic.borg.pattern.Pattern('/baz'),
|
|
),
|
|
local_path=None,
|
|
working_directory=None,
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
== ()
|
|
)
|
|
|
|
|
|
def test_validate_planned_backup_paths_with_dry_run_and_borgmatic_runtime_directory_missing_from_paths_output_does_not_raise():
|
|
flexmock(module.flags).should_receive('omit_flag').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.flags).should_receive('omit_flag_and_value').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').and_yield(
|
|
'+ /foo',
|
|
'- /run/borgmatic/bar',
|
|
'- /baz',
|
|
)
|
|
flexmock(module.os.path).should_receive('exists').and_return(True)
|
|
flexmock(module).should_receive('any_parent_directories').replace_with(
|
|
lambda path, candidates: any(path.startswith(parent) for parent in candidates)
|
|
)
|
|
flexmock(module).should_receive('special_file').with_args('/foo', None).and_return(False)
|
|
flexmock(module).should_receive('special_file').with_args('/run/borgmatic/bar', None).never()
|
|
flexmock(module).should_receive('special_file').with_args('/baz', None).and_return(False)
|
|
|
|
assert (
|
|
module.validate_planned_backup_paths(
|
|
dry_run=True,
|
|
create_command=('borg', 'create'),
|
|
config={},
|
|
patterns=(
|
|
module.borgmatic.borg.pattern.Pattern('/foo'),
|
|
module.borgmatic.borg.pattern.Pattern(
|
|
'/run/borgmatic/bar', module.borgmatic.borg.pattern.Pattern_type.ROOT
|
|
),
|
|
module.borgmatic.borg.pattern.Pattern('/baz'),
|
|
),
|
|
local_path=None,
|
|
working_directory=None,
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
== ()
|
|
)
|
|
|
|
|
|
DEFAULT_ARCHIVE_NAME = '{hostname}-{now:%Y-%m-%dT%H:%M:%S.%f}'
|
|
REPO_ARCHIVE = (f'repo::{DEFAULT_ARCHIVE_NAME}',)
|
|
|
|
|
|
def test_make_base_create_command_checks_root_patterns_exist_and_produces_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist').once()
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--log-json')
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_without_check_all_root_patterns_exist_skips_check_and_produces_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist').never()
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'source_directories_must_exist': False,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--log-json')
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_includes_patterns_file_in_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
mock_pattern_file = flexmock(name='/tmp/patterns')
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(
|
|
mock_pattern_file,
|
|
).and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
pattern_flags = ('--patterns-from', mock_pattern_file.name)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'patterns': ['pattern'],
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', *pattern_flags, '--log-json')
|
|
assert create_positional_arguments == (f'repo::{DEFAULT_ARCHIVE_NAME}',)
|
|
assert pattern_file == mock_pattern_file
|
|
|
|
|
|
def test_make_base_create_command_with_store_config_false_omits_config_files():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'store_config_files': False,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--log-json')
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
'option_name,option_value,feature_available,option_flags',
|
|
(
|
|
('checkpoint_interval', 600, True, ('--checkpoint-interval', '600')),
|
|
('checkpoint_volume', 1024, True, ('--checkpoint-volume', '1024')),
|
|
('chunker_params', '1,2,3,4', True, ('--chunker-params', '1,2,3,4')),
|
|
('compression', 'rle', True, ('--compression', 'rle')),
|
|
('one_file_system', True, True, ('--one-file-system',)),
|
|
('upload_rate_limit', 100, True, ('--upload-ratelimit', '100')),
|
|
('upload_rate_limit', 100, False, ('--remote-ratelimit', '100')),
|
|
('upload_buffer_size', 160, True, ('--upload-buffer', '160')),
|
|
('numeric_ids', True, True, ('--numeric-ids',)),
|
|
('numeric_ids', True, False, ('--numeric-owner',)),
|
|
('read_special', True, True, ('--read-special',)),
|
|
('ctime', True, True, ()),
|
|
('ctime', False, True, ('--noctime',)),
|
|
('birthtime', True, True, ()),
|
|
('birthtime', False, True, ('--nobirthtime',)),
|
|
('atime', True, True, ('--atime',)),
|
|
('atime', True, False, ()),
|
|
('atime', False, True, ()),
|
|
('atime', False, False, ('--noatime',)),
|
|
('flags', True, True, ()),
|
|
('flags', True, False, ()),
|
|
('flags', False, True, ('--noflags',)),
|
|
('flags', False, False, ('--nobsdflags',)),
|
|
('files_changed', 'mtime', True, ('--files-changed', 'mtime')),
|
|
('files_cache', 'ctime,size', True, ('--files-cache', 'ctime,size')),
|
|
('umask', 740, True, ('--umask', '740')),
|
|
('lock_wait', 5, True, ('--lock-wait', '5')),
|
|
),
|
|
)
|
|
def test_make_base_create_command_includes_configuration_option_as_command_flag(
|
|
option_name,
|
|
option_value,
|
|
feature_available,
|
|
option_flags,
|
|
):
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(feature_available)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
option_name: option_value,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', *option_flags, '--log-json')
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_with_progress_omits_log_json_from_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': ['exclude'],
|
|
'progress': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create')
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_with_log_json_and_progress_includes_log_json_in_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': ['exclude'],
|
|
'log_json': True,
|
|
'progress': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--log-json')
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_includes_dry_run_in_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=True,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': ['exclude'],
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--log-json', '--dry-run')
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_includes_comment_in_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': ['exclude'],
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
comment='a comment',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--comment', 'a comment', '--log-json')
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_includes_local_path_in_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
local_path='borg1',
|
|
)
|
|
|
|
assert create_flags == ('borg1', 'create', '--log-json')
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_includes_remote_path_in_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
remote_path='borg1',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--remote-path', 'borg1', '--log-json')
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_includes_list_flags_in_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'list_details': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--log-json', '--list', '--filter', 'FOO')
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_with_stream_processes_ignores_read_special_false_and_excludes_special_files():
|
|
patterns = [Pattern('foo'), Pattern('bar')]
|
|
patterns_file = flexmock(name='patterns')
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').with_args(
|
|
patterns,
|
|
'/run/borgmatic',
|
|
).and_return(patterns_file)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module.logger).should_receive('warning').twice()
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(('/dev/null',))
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').with_args(
|
|
(
|
|
Pattern(
|
|
'/dev/null',
|
|
Pattern_type.NO_RECURSE,
|
|
Pattern_style.FNMATCH,
|
|
source=Pattern_source.INTERNAL,
|
|
),
|
|
),
|
|
'/run/borgmatic',
|
|
patterns_file=patterns_file,
|
|
).and_return(patterns_file).once()
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'read_special': False,
|
|
},
|
|
patterns=patterns,
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
stream_processes=flexmock(),
|
|
)
|
|
|
|
assert create_flags == (
|
|
'borg',
|
|
'create',
|
|
'--patterns-from',
|
|
'patterns',
|
|
'--read-special',
|
|
'--log-json',
|
|
)
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert pattern_file
|
|
|
|
|
|
def test_make_base_create_command_without_patterns_and_with_stream_processes_ignores_read_special_false_and_excludes_special_files():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').with_args(
|
|
[],
|
|
'/run/borgmatic',
|
|
).and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module.logger).should_receive('warning').twice()
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(('/dev/null',))
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').with_args(
|
|
(
|
|
Pattern(
|
|
'/dev/null',
|
|
Pattern_type.NO_RECURSE,
|
|
Pattern_style.FNMATCH,
|
|
source=Pattern_source.INTERNAL,
|
|
),
|
|
),
|
|
'/run/borgmatic',
|
|
patterns_file=None,
|
|
).and_return(flexmock(name='patterns')).once()
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': [],
|
|
'repositories': ['repo'],
|
|
'read_special': False,
|
|
},
|
|
patterns=[],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
stream_processes=flexmock(),
|
|
)
|
|
|
|
assert create_flags == (
|
|
'borg',
|
|
'create',
|
|
'--read-special',
|
|
'--log-json',
|
|
'--patterns-from',
|
|
'patterns',
|
|
)
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert pattern_file
|
|
|
|
|
|
def test_make_base_create_command_with_stream_processes_and_read_special_true_skips_special_files_excludes():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module.logger).should_receive('warning').never()
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'read_special': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
stream_processes=flexmock(),
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--read-special', '--log-json')
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_includes_archive_name_format_in_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
('repo::ARCHIVE_NAME',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'archive_name_format': 'ARCHIVE_NAME',
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--log-json')
|
|
assert create_positional_arguments == ('repo::ARCHIVE_NAME',)
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_includes_default_archive_name_format_in_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
('repo::{hostname}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--log-json')
|
|
assert create_positional_arguments == ('repo::{hostname}',)
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_includes_archive_name_format_with_placeholders_in_borg_command():
|
|
repository_archive_pattern = 'repo::Documents_{hostname}-{now}'
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(repository_archive_pattern,),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'archive_name_format': 'Documents_{hostname}-{now}',
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--log-json')
|
|
assert create_positional_arguments == (repository_archive_pattern,)
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_includes_repository_and_archive_name_format_with_placeholders_in_borg_command():
|
|
repository_archive_pattern = '{fqdn}::Documents_{hostname}-{now}'
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(repository_archive_pattern,),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='{fqdn}',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['{fqdn}'],
|
|
'archive_name_format': 'Documents_{hostname}-{now}',
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--log-json')
|
|
assert create_positional_arguments == (repository_archive_pattern,)
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_includes_archive_suffix_in_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
DEFAULT_ARCHIVE_NAME,
|
|
)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
archive_suffix='.checkpoint',
|
|
)
|
|
|
|
assert create_flags == ('borg', 'create', '--log-json')
|
|
assert create_positional_arguments == (f'repo::{DEFAULT_ARCHIVE_NAME}.checkpoint',)
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_includes_extra_borg_options_in_borg_command():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{DEFAULT_ARCHIVE_NAME}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').and_return(())
|
|
|
|
(create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'extra_borg_options': {'create': '--extra --options "value with space"'},
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
assert create_flags == (
|
|
'borg',
|
|
'create',
|
|
'--log-json',
|
|
'--extra',
|
|
'--options',
|
|
'value with space',
|
|
)
|
|
assert create_positional_arguments == REPO_ARCHIVE
|
|
assert not pattern_file
|
|
|
|
|
|
def test_make_base_create_command_with_unsafe_skip_path_validation_before_create_skips_validation():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{module.flags.get_default_archive_name_format()}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').never()
|
|
|
|
module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'unsafe_skip_path_validation_before_create': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
|
|
def test_make_base_create_command_without_unsafe_skip_path_validation_before_create_calls_validation():
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('check_all_root_patterns_exist')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive('write_patterns_file').and_return(None)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_list_filter_flags').and_return('FOO')
|
|
flexmock(module.flags).should_receive('get_default_archive_name_format').and_return(
|
|
'{hostname}',
|
|
)
|
|
flexmock(module.feature).should_receive('available').and_return(True)
|
|
flexmock(module.borgmatic.borg.flags).should_receive('make_exclude_flags').and_return(())
|
|
flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
|
|
(f'repo::{module.flags.get_default_archive_name_format()}',),
|
|
)
|
|
flexmock(module).should_receive('validate_planned_backup_paths').once().and_return(())
|
|
|
|
module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
|
|
def test_make_base_create_command_with_non_existent_directory_and_source_directories_must_exist_raises():
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module.borgmatic.borg.pattern).should_receive(
|
|
'check_all_root_patterns_exist',
|
|
).and_raise(ValueError)
|
|
|
|
with pytest.raises(ValueError):
|
|
module.make_base_create_command(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'source_directories_must_exist': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
)
|
|
|
|
|
|
def test_create_archive_calls_borg_with_flags():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', *REPO_ARCHIVE),
|
|
output_log_level=logging.INFO,
|
|
output_file=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=None,
|
|
)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_create_archive_calls_borg_with_environment():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
environment = {'BORG_THINGY': 'YUP'}
|
|
flexmock(module.environment).should_receive('make_environment').and_return(environment)
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', *REPO_ARCHIVE),
|
|
output_log_level=logging.INFO,
|
|
output_file=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=environment,
|
|
)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_create_archive_with_log_info_calls_borg_with_info_flag():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', '--info', *REPO_ARCHIVE),
|
|
output_log_level=logging.INFO,
|
|
output_file=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=None,
|
|
)
|
|
insert_logging_mock(logging.INFO)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_create_archive_with_log_info_and_json_suppresses_most_borg_output():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').with_args(
|
|
('borg', 'create', '--json', *REPO_ARCHIVE),
|
|
working_directory=None,
|
|
environment=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
).and_yield()
|
|
insert_logging_mock(logging.INFO)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
json=True,
|
|
)
|
|
|
|
|
|
def test_create_archive_with_log_debug_calls_borg_with_debug_flag():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', '--debug', '--show-rc', *REPO_ARCHIVE),
|
|
output_log_level=logging.INFO,
|
|
output_file=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=None,
|
|
)
|
|
insert_logging_mock(logging.DEBUG)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_create_archive_with_log_debug_and_json_suppresses_most_borg_output():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').with_args(
|
|
('borg', 'create', '--json', *REPO_ARCHIVE),
|
|
working_directory=None,
|
|
environment=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
).and_yield()
|
|
insert_logging_mock(logging.DEBUG)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
json=True,
|
|
)
|
|
|
|
|
|
def test_create_archive_with_stats_and_dry_run_calls_borg_without_stats():
|
|
# --dry-run and --stats are mutually exclusive, see:
|
|
# https://borgbackup.readthedocs.io/en/stable/usage/create.html#description
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create', '--dry-run'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', '--dry-run', '--info', *REPO_ARCHIVE),
|
|
output_log_level=logging.INFO,
|
|
output_file=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=None,
|
|
)
|
|
insert_logging_mock(logging.INFO)
|
|
|
|
module.create_archive(
|
|
dry_run=True,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
'statistics': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_create_archive_with_quick_stats_and_dry_run_calls_borg_without_quick_stats():
|
|
# --dry-run and --quick-stats are mutually exclusive, see:
|
|
# https://borgbackup.readthedocs.io/en/stable/usage/create.html#description
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create', '--dry-run'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', '--dry-run', '--info', *REPO_ARCHIVE),
|
|
output_log_level=logging.INFO,
|
|
output_file=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=None,
|
|
)
|
|
insert_logging_mock(logging.INFO)
|
|
|
|
module.create_archive(
|
|
dry_run=True,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
'quick_statistics': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_create_archive_with_working_directory_calls_borg_with_working_directory():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(
|
|
'/working/dir',
|
|
)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', *REPO_ARCHIVE),
|
|
output_log_level=logging.INFO,
|
|
output_file=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory='/working/dir',
|
|
environment=None,
|
|
)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'working_directory': '/working/dir',
|
|
'exclude_patterns': None,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_create_archive_with_exit_codes_calls_borg_using_them():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
borg_exit_codes = flexmock()
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', *REPO_ARCHIVE),
|
|
output_log_level=logging.INFO,
|
|
output_file=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=borg_exit_codes,
|
|
working_directory=None,
|
|
environment=None,
|
|
)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
'borg_exit_codes': borg_exit_codes,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_create_archive_with_stats_calls_borg_with_stats_flag_and_answer_output_log_level():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', '--stats', *REPO_ARCHIVE),
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
|
output_file=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=None,
|
|
)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
'statistics': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_create_archive_with_files_calls_borg_with_answer_output_log_level():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(
|
|
('borg', 'create', '--list', '--filter', 'FOO'),
|
|
REPO_ARCHIVE,
|
|
flexmock(),
|
|
),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', '--list', '--filter', 'FOO', *REPO_ARCHIVE),
|
|
output_log_level=module.borgmatic.logger.ANSWER,
|
|
output_file=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=None,
|
|
)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
'list_details': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_create_archive_with_progress_and_log_info_calls_borg_with_progress_flag_and_no_list():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', '--info', '--progress', *REPO_ARCHIVE),
|
|
output_log_level=logging.INFO,
|
|
output_file=module.DO_NOT_CAPTURE,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=None,
|
|
)
|
|
insert_logging_mock(logging.INFO)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
'progress': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_create_archive_with_progress_calls_borg_with_progress_flag():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', '--progress', *REPO_ARCHIVE),
|
|
output_log_level=logging.INFO,
|
|
output_file=module.DO_NOT_CAPTURE,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=None,
|
|
)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
'progress': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_create_archive_with_progress_and_stream_processes_calls_borg_with_progress_flag():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
processes = flexmock()
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(
|
|
('borg', 'create', '--read-special'),
|
|
REPO_ARCHIVE,
|
|
flexmock(),
|
|
),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
create_command = ('borg', 'create', '--read-special', '--progress', *REPO_ARCHIVE)
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command_with_processes').with_args(
|
|
(*create_command, '--dry-run', '--list'),
|
|
processes=processes,
|
|
output_log_level=logging.INFO,
|
|
output_file=module.DO_NOT_CAPTURE,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=None,
|
|
).and_yield()
|
|
flexmock(module).should_receive('execute_command_with_processes').with_args(
|
|
create_command,
|
|
processes=processes,
|
|
output_log_level=logging.INFO,
|
|
output_file=module.DO_NOT_CAPTURE,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=None,
|
|
).and_yield()
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
'progress': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
stream_processes=processes,
|
|
)
|
|
|
|
|
|
def test_create_archive_with_json_calls_borg_with_json_flag():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').with_args(
|
|
('borg', 'create', '--json', *REPO_ARCHIVE),
|
|
working_directory=None,
|
|
environment=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
).and_yield('[]')
|
|
|
|
json_output = module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
json=True,
|
|
)
|
|
|
|
assert json_output == '[]'
|
|
|
|
|
|
def test_create_archive_with_stats_and_json_calls_borg_without_stats_flag():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').with_args(
|
|
('borg', 'create', '--json', *REPO_ARCHIVE),
|
|
working_directory=None,
|
|
environment=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
).and_yield('[]')
|
|
|
|
json_output = module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo*'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
'statistics': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
json=True,
|
|
)
|
|
|
|
assert json_output == '[]'
|
|
|
|
|
|
def test_create_archive_with_quick_stats_and_json_calls_borg_without_quick_stats_flag():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').with_args(
|
|
('borg', 'create', '--json', *REPO_ARCHIVE),
|
|
working_directory=None,
|
|
environment=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
).and_yield('[]')
|
|
|
|
json_output = module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo*'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
'quick_statistics': True,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
json=True,
|
|
)
|
|
|
|
assert json_output == '[]'
|
|
|
|
|
|
def test_create_archive_with_comment_calls_borg_with_comment_flag():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create', '--comment', 'a comment'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', '--comment', 'a comment', *REPO_ARCHIVE),
|
|
output_log_level=logging.INFO,
|
|
output_file=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory=None,
|
|
environment=None,
|
|
)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
json=False,
|
|
comment='a comment',
|
|
)
|
|
|
|
|
|
def test_create_archive_calls_borg_with_working_directory():
|
|
flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
|
|
flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
|
|
flexmock(module).should_receive('make_base_create_command').and_return(
|
|
(('borg', 'create'), REPO_ARCHIVE, flexmock()),
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(
|
|
'/working/dir',
|
|
)
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
('borg', 'create', *REPO_ARCHIVE),
|
|
output_log_level=logging.INFO,
|
|
output_file=None,
|
|
borg_local_path='borg',
|
|
borg_exit_codes=None,
|
|
working_directory='/working/dir',
|
|
environment=None,
|
|
)
|
|
|
|
module.create_archive(
|
|
dry_run=False,
|
|
repository_path='repo',
|
|
config={
|
|
'source_directories': ['foo', 'bar'],
|
|
'repositories': ['repo'],
|
|
'exclude_patterns': None,
|
|
'working_directory': '/working/dir',
|
|
},
|
|
patterns=[Pattern('foo'), Pattern('bar')],
|
|
local_borg_version='1.2.3',
|
|
global_arguments=flexmock(),
|
|
borgmatic_runtime_directory='/borgmatic/run',
|
|
)
|
|
|
|
|
|
def test_validate_planned_backup_paths_returns_special_files():
|
|
flexmock(module.flags).should_receive('omit_flag').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.flags).should_receive('omit_flag_and_value').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').and_yield(
|
|
'+ /dev/foo',
|
|
'- /run/borgmatic/bar',
|
|
'- /dev/baz',
|
|
'- /quux',
|
|
)
|
|
flexmock(module.os.path).should_receive('exists').and_return(True)
|
|
flexmock(module).should_receive('any_parent_directories').replace_with(
|
|
lambda path, candidates: any(path.startswith(parent) for parent in candidates)
|
|
)
|
|
flexmock(module).should_receive('special_file').with_args('/dev/foo', None).and_return(True)
|
|
flexmock(module).should_receive('special_file').with_args('/run/borgmatic/bar', None).never()
|
|
flexmock(module).should_receive('special_file').with_args('/dev/baz', None).and_return(True)
|
|
flexmock(module).should_receive('special_file').with_args('/quux', None).and_return(False)
|
|
|
|
assert module.validate_planned_backup_paths(
|
|
dry_run=False,
|
|
create_command=('borg', 'create'),
|
|
config={},
|
|
patterns=(
|
|
module.borgmatic.borg.pattern.Pattern('/dev/foo'),
|
|
module.borgmatic.borg.pattern.Pattern(
|
|
'/run/borgmatic/bar', module.borgmatic.borg.pattern.Pattern_type.ROOT
|
|
),
|
|
module.borgmatic.borg.pattern.Pattern('/dev/baz'),
|
|
),
|
|
local_path=None,
|
|
working_directory=None,
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
find_special_files=True,
|
|
) == ('/dev/foo', '/dev/baz')
|
|
|
|
|
|
def test_validate_planned_backup_paths_without_find_special_files_ignores_special_files():
|
|
flexmock(module.flags).should_receive('omit_flag').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.flags).should_receive('omit_flag_and_value').replace_with(
|
|
lambda arguments, flag: arguments,
|
|
)
|
|
flexmock(module.environment).should_receive('make_environment').and_return(None)
|
|
flexmock(module).should_receive('execute_command_and_capture_output').and_yield(
|
|
'+ /dev/foo',
|
|
'- /run/borgmatic/bar',
|
|
'- /dev/baz',
|
|
'- /quux',
|
|
)
|
|
flexmock(module.os.path).should_receive('exists').and_return(True)
|
|
flexmock(module).should_receive('any_parent_directories').replace_with(
|
|
lambda path, candidates: any(path.startswith(parent) for parent in candidates)
|
|
)
|
|
flexmock(module).should_receive('special_file').never()
|
|
|
|
assert (
|
|
module.validate_planned_backup_paths(
|
|
dry_run=False,
|
|
create_command=('borg', 'create'),
|
|
config={},
|
|
patterns=(
|
|
module.borgmatic.borg.pattern.Pattern('/dev/foo'),
|
|
module.borgmatic.borg.pattern.Pattern(
|
|
'/run/borgmatic/bar', module.borgmatic.borg.pattern.Pattern_type.ROOT
|
|
),
|
|
module.borgmatic.borg.pattern.Pattern('/dev/baz'),
|
|
),
|
|
local_path=None,
|
|
working_directory=None,
|
|
borgmatic_runtime_directory='/run/borgmatic',
|
|
find_special_files=False,
|
|
)
|
|
== ()
|
|
)
|