2018-09-30 08:15:18 +02:00
|
|
|
import logging
|
2017-08-06 01:21:39 +02:00
|
|
|
|
|
|
|
from flexmock import flexmock
|
|
|
|
|
|
|
|
from borgmatic.borg import create as module
|
2018-09-30 22:57:20 +02:00
|
|
|
from ..test_verbosity import insert_logging_mock
|
2017-08-06 01:21:39 +02:00
|
|
|
|
|
|
|
|
2017-09-10 02:23:31 +02:00
|
|
|
def test_expand_directory_with_basic_path_passes_it_through():
|
|
|
|
flexmock(module.os.path).should_receive('expanduser').and_return('foo')
|
|
|
|
flexmock(module.glob).should_receive('glob').and_return([])
|
|
|
|
|
|
|
|
paths = module._expand_directory('foo')
|
|
|
|
|
|
|
|
assert paths == ['foo']
|
|
|
|
|
|
|
|
|
|
|
|
def test_expand_directory_with_glob_expands():
|
|
|
|
flexmock(module.os.path).should_receive('expanduser').and_return('foo*')
|
|
|
|
flexmock(module.glob).should_receive('glob').and_return(['foo', 'food'])
|
|
|
|
|
|
|
|
paths = module._expand_directory('foo*')
|
|
|
|
|
|
|
|
assert paths == ['foo', 'food']
|
|
|
|
|
|
|
|
|
2018-02-19 00:34:19 +01:00
|
|
|
def test_expand_directories_flattens_expanded_directories():
|
2018-09-30 07:45:00 +02:00
|
|
|
flexmock(module).should_receive('_expand_directory').with_args('~/foo').and_return(
|
|
|
|
['/root/foo']
|
|
|
|
)
|
|
|
|
flexmock(module).should_receive('_expand_directory').with_args('bar*').and_return(
|
|
|
|
['bar', 'barf']
|
|
|
|
)
|
2018-02-19 00:34:19 +01:00
|
|
|
|
|
|
|
paths = module._expand_directories(('~/foo', 'bar*'))
|
|
|
|
|
|
|
|
assert paths == ('/root/foo', 'bar', 'barf')
|
|
|
|
|
|
|
|
|
|
|
|
def test_expand_directories_considers_none_as_no_directories():
|
|
|
|
paths = module._expand_directories(None)
|
|
|
|
|
|
|
|
assert paths == ()
|
|
|
|
|
|
|
|
|
2019-01-27 22:47:26 +01:00
|
|
|
def test_expand_home_directories_expands_tildes():
|
|
|
|
flexmock(module.os.path).should_receive('expanduser').with_args('~/bar').and_return('/foo/bar')
|
|
|
|
flexmock(module.os.path).should_receive('expanduser').with_args('baz').and_return('baz')
|
|
|
|
|
|
|
|
paths = module._expand_home_directories(('~/bar', 'baz'))
|
|
|
|
|
|
|
|
assert paths == ('/foo/bar', 'baz')
|
|
|
|
|
|
|
|
|
|
|
|
def test_expand_home_directories_considers_none_as_no_directories():
|
|
|
|
paths = module._expand_home_directories(None)
|
|
|
|
|
|
|
|
assert paths == ()
|
|
|
|
|
|
|
|
|
2018-01-15 00:52:19 +01:00
|
|
|
def test_write_pattern_file_does_not_raise():
|
2018-09-30 07:45:00 +02:00
|
|
|
temporary_file = flexmock(name='filename', write=lambda mode: None, flush=lambda: None)
|
2017-08-06 01:21:39 +02:00
|
|
|
flexmock(module.tempfile).should_receive('NamedTemporaryFile').and_return(temporary_file)
|
|
|
|
|
2018-01-15 00:52:19 +01:00
|
|
|
module._write_pattern_file(['exclude'])
|
2017-08-06 01:21:39 +02:00
|
|
|
|
|
|
|
|
2018-01-15 00:52:19 +01:00
|
|
|
def test_write_pattern_file_with_empty_exclude_patterns_does_not_raise():
|
|
|
|
module._write_pattern_file([])
|
2017-08-06 01:21:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
def insert_subprocess_mock(check_call_command, **kwargs):
|
|
|
|
subprocess = flexmock(module.subprocess)
|
|
|
|
subprocess.should_receive('check_call').with_args(check_call_command, **kwargs).once()
|
|
|
|
|
|
|
|
|
2018-01-15 00:52:19 +01:00
|
|
|
def test_make_pattern_flags_includes_pattern_filename_when_given():
|
|
|
|
pattern_flags = module._make_pattern_flags(
|
2018-09-30 07:45:00 +02:00
|
|
|
location_config={'patterns': ['R /', '- /var']}, pattern_filename='/tmp/patterns'
|
2018-01-15 00:52:19 +01:00
|
|
|
)
|
|
|
|
|
2018-01-16 05:22:53 +01:00
|
|
|
assert pattern_flags == ('--patterns-from', '/tmp/patterns')
|
2018-01-15 00:52:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_make_pattern_flags_includes_patterns_from_filenames_when_in_config():
|
|
|
|
pattern_flags = module._make_pattern_flags(
|
2018-09-30 07:45:00 +02:00
|
|
|
location_config={'patterns_from': ['patterns', 'other']}
|
2018-01-15 00:52:19 +01:00
|
|
|
)
|
|
|
|
|
2018-01-16 05:22:53 +01:00
|
|
|
assert pattern_flags == ('--patterns-from', 'patterns', '--patterns-from', 'other')
|
2018-01-15 00:52:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_make_pattern_flags_includes_both_filenames_when_patterns_given_and_patterns_from_in_config():
|
|
|
|
pattern_flags = module._make_pattern_flags(
|
2018-09-30 07:45:00 +02:00
|
|
|
location_config={'patterns_from': ['patterns']}, pattern_filename='/tmp/patterns'
|
2018-01-15 00:52:19 +01:00
|
|
|
)
|
|
|
|
|
2018-01-16 05:22:53 +01:00
|
|
|
assert pattern_flags == ('--patterns-from', 'patterns', '--patterns-from', '/tmp/patterns')
|
2018-01-15 00:52:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_make_pattern_flags_considers_none_patterns_from_filenames_as_empty():
|
2018-09-30 07:45:00 +02:00
|
|
|
pattern_flags = module._make_pattern_flags(location_config={'patterns_from': None})
|
2018-01-15 00:52:19 +01:00
|
|
|
|
|
|
|
assert pattern_flags == ()
|
|
|
|
|
|
|
|
|
2017-08-06 08:32:39 +02:00
|
|
|
def test_make_exclude_flags_includes_exclude_patterns_filename_when_given():
|
|
|
|
exclude_flags = module._make_exclude_flags(
|
2018-09-30 07:45:00 +02:00
|
|
|
location_config={'exclude_patterns': ['*.pyc', '/var']}, exclude_filename='/tmp/excludes'
|
2017-08-06 08:32:39 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
assert exclude_flags == ('--exclude-from', '/tmp/excludes')
|
|
|
|
|
|
|
|
|
|
|
|
def test_make_exclude_flags_includes_exclude_from_filenames_when_in_config():
|
|
|
|
|
|
|
|
exclude_flags = module._make_exclude_flags(
|
2018-09-30 07:45:00 +02:00
|
|
|
location_config={'exclude_from': ['excludes', 'other']}
|
2017-08-06 08:32:39 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
assert exclude_flags == ('--exclude-from', 'excludes', '--exclude-from', 'other')
|
|
|
|
|
|
|
|
|
|
|
|
def test_make_exclude_flags_includes_both_filenames_when_patterns_given_and_exclude_from_in_config():
|
|
|
|
exclude_flags = module._make_exclude_flags(
|
2018-09-30 07:45:00 +02:00
|
|
|
location_config={'exclude_from': ['excludes']}, exclude_filename='/tmp/excludes'
|
2017-08-06 08:32:39 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
assert exclude_flags == ('--exclude-from', 'excludes', '--exclude-from', '/tmp/excludes')
|
|
|
|
|
|
|
|
|
2017-08-27 19:01:49 +02:00
|
|
|
def test_make_exclude_flags_considers_none_exclude_from_filenames_as_empty():
|
2018-09-30 07:45:00 +02:00
|
|
|
exclude_flags = module._make_exclude_flags(location_config={'exclude_from': None})
|
2017-08-27 19:01:49 +02:00
|
|
|
|
|
|
|
assert exclude_flags == ()
|
|
|
|
|
|
|
|
|
2017-08-06 08:32:39 +02:00
|
|
|
def test_make_exclude_flags_includes_exclude_caches_when_true_in_config():
|
2018-09-30 07:45:00 +02:00
|
|
|
exclude_flags = module._make_exclude_flags(location_config={'exclude_caches': True})
|
2017-08-06 08:32:39 +02:00
|
|
|
|
|
|
|
assert exclude_flags == ('--exclude-caches',)
|
|
|
|
|
|
|
|
|
|
|
|
def test_make_exclude_flags_does_not_include_exclude_caches_when_false_in_config():
|
2018-09-30 07:45:00 +02:00
|
|
|
exclude_flags = module._make_exclude_flags(location_config={'exclude_caches': False})
|
2017-08-06 08:32:39 +02:00
|
|
|
|
|
|
|
assert exclude_flags == ()
|
|
|
|
|
|
|
|
|
|
|
|
def test_make_exclude_flags_includes_exclude_if_present_when_in_config():
|
2018-09-30 07:45:00 +02:00
|
|
|
exclude_flags = module._make_exclude_flags(location_config={'exclude_if_present': 'exclude_me'})
|
2017-08-06 08:32:39 +02:00
|
|
|
|
|
|
|
assert exclude_flags == ('--exclude-if-present', 'exclude_me')
|
|
|
|
|
|
|
|
|
|
|
|
def test_make_exclude_flags_is_empty_when_config_has_no_excludes():
|
|
|
|
exclude_flags = module._make_exclude_flags(location_config={})
|
|
|
|
|
|
|
|
assert exclude_flags == ()
|
|
|
|
|
|
|
|
|
2017-09-03 20:13:14 +02:00
|
|
|
DEFAULT_ARCHIVE_NAME = '{hostname}-{now:%Y-%m-%dT%H:%M:%S.%f}'
|
|
|
|
CREATE_COMMAND = ('borg', 'create', 'repo::{}'.format(DEFAULT_ARCHIVE_NAME), 'foo', 'bar')
|
2017-08-06 01:21:39 +02:00
|
|
|
|
|
|
|
|
2017-09-10 02:23:31 +02:00
|
|
|
def test_create_archive_calls_borg_with_parameters():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-08-06 08:32:39 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
2017-08-06 01:21:39 +02:00
|
|
|
insert_subprocess_mock(CREATE_COMMAND)
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-08-06 01:21:39 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-01-15 00:52:19 +01:00
|
|
|
def test_create_archive_with_patterns_calls_borg_with_patterns():
|
|
|
|
pattern_flags = ('--patterns-from', 'patterns')
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-09-30 07:45:00 +02:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(
|
|
|
|
flexmock(name='/tmp/patterns')
|
|
|
|
).and_return(None)
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(pattern_flags)
|
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(CREATE_COMMAND + pattern_flags)
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2018-01-15 00:52:19 +01:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'patterns': ['pattern'],
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-09-10 02:23:31 +02:00
|
|
|
def test_create_archive_with_exclude_patterns_calls_borg_with_excludes():
|
2017-08-06 08:32:39 +02:00
|
|
|
exclude_flags = ('--exclude-from', 'excludes')
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(('exclude',))
|
2018-09-30 07:45:00 +02:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None).and_return(
|
|
|
|
flexmock(name='/tmp/excludes')
|
|
|
|
)
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-08-06 08:32:39 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(exclude_flags)
|
|
|
|
insert_subprocess_mock(CREATE_COMMAND + exclude_flags)
|
2017-08-06 01:21:39 +02:00
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-08-06 01:21:39 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': ['exclude'],
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-09-08 22:53:37 +02:00
|
|
|
def test_create_archive_with_log_info_calls_borg_with_info_parameter():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-08-06 08:32:39 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
2018-12-03 00:03:07 +01:00
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--list', '--filter', 'AME-', '--info', '--stats'))
|
2018-09-08 22:53:37 +02:00
|
|
|
insert_logging_mock(logging.INFO)
|
2018-09-30 07:45:00 +02:00
|
|
|
|
2017-08-06 01:21:39 +02:00
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-08-06 01:21:39 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-09-08 22:53:37 +02:00
|
|
|
def test_create_archive_with_log_debug_calls_borg_with_debug_parameter():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-08-06 08:32:39 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
2018-09-30 07:45:00 +02:00
|
|
|
insert_subprocess_mock(
|
2018-12-03 00:03:07 +01:00
|
|
|
CREATE_COMMAND + ('--list', '--filter', 'AME-', '--stats', '--debug', '--show-rc')
|
2018-09-30 07:45:00 +02:00
|
|
|
)
|
2018-09-08 22:53:37 +02:00
|
|
|
insert_logging_mock(logging.DEBUG)
|
2017-08-06 01:21:39 +02:00
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_create_archive_with_dry_run_calls_borg_with_dry_run_parameter():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-16 05:55:27 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--dry-run',))
|
|
|
|
|
|
|
|
module.create_archive(
|
|
|
|
dry_run=True,
|
2017-08-06 01:21:39 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-09-08 22:53:37 +02:00
|
|
|
def test_create_archive_with_dry_run_and_log_info_calls_borg_without_stats_parameter():
|
2019-01-27 22:47:26 +01:00
|
|
|
# --dry-run and --stats are mutually exclusive, see:
|
|
|
|
# https://borgbackup.readthedocs.io/en/stable/usage/create.html#description
|
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-02-18 23:26:51 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
2018-12-03 00:03:07 +01:00
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--list', '--filter', 'AME-', '--info', '--dry-run'))
|
2018-09-08 22:53:37 +02:00
|
|
|
insert_logging_mock(logging.INFO)
|
2018-02-18 23:26:51 +01:00
|
|
|
|
|
|
|
module.create_archive(
|
|
|
|
dry_run=True,
|
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-09-08 22:53:37 +02:00
|
|
|
def test_create_archive_with_dry_run_and_log_debug_calls_borg_without_stats_parameter():
|
2019-01-27 22:47:26 +01:00
|
|
|
# --dry-run and --stats are mutually exclusive, see:
|
|
|
|
# https://borgbackup.readthedocs.io/en/stable/usage/create.html#description
|
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-02-18 23:26:51 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
2018-09-30 07:45:00 +02:00
|
|
|
insert_subprocess_mock(
|
2018-12-03 00:03:07 +01:00
|
|
|
CREATE_COMMAND + ('--list', '--filter', 'AME-', '--debug', '--show-rc', '--dry-run')
|
2018-09-30 07:45:00 +02:00
|
|
|
)
|
2018-09-08 22:53:37 +02:00
|
|
|
insert_logging_mock(logging.DEBUG)
|
2018-02-18 23:26:51 +01:00
|
|
|
|
|
|
|
module.create_archive(
|
|
|
|
dry_run=True,
|
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
2018-08-19 20:41:49 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_create_archive_with_checkpoint_interval_calls_borg_with_checkpoint_interval_parameters():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-08-19 20:41:49 +02:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--checkpoint-interval', '600'))
|
|
|
|
|
|
|
|
module.create_archive(
|
|
|
|
dry_run=False,
|
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={'checkpoint_interval': 600},
|
2018-02-18 23:26:51 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-10-28 00:57:28 +02:00
|
|
|
def test_create_archive_with_chunker_params_calls_borg_with_chunker_params_parameters():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-10-28 00:57:28 +02:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--chunker-params', '1,2,3,4'))
|
|
|
|
|
|
|
|
module.create_archive(
|
|
|
|
dry_run=False,
|
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={'chunker_params': '1,2,3,4'},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-09-10 02:23:31 +02:00
|
|
|
def test_create_archive_with_compression_calls_borg_with_compression_parameters():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-08-06 08:32:39 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
2017-08-06 01:21:39 +02:00
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--compression', 'rle'))
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-08-06 01:21:39 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={'compression': 'rle'},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-11-03 06:22:40 +01:00
|
|
|
def test_create_archive_with_remote_rate_limit_calls_borg_with_remote_ratelimit_parameters():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-11-03 06:22:40 +01:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--remote-ratelimit', '100'))
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-11-03 06:22:40 +01:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={'remote_rate_limit': 100},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-09-10 02:23:31 +02:00
|
|
|
def test_create_archive_with_one_file_system_calls_borg_with_one_file_system_parameters():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-08-06 08:32:39 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
2017-08-06 01:21:39 +02:00
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--one-file-system',))
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-08-06 01:21:39 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'one_file_system': True,
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
2017-11-03 06:03:11 +01:00
|
|
|
|
|
|
|
|
2018-09-09 20:14:33 +02:00
|
|
|
def test_create_archive_with_read_special_calls_borg_with_read_special_parameter():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-09-09 19:39:56 +02:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--read-special',))
|
|
|
|
|
|
|
|
module.create_archive(
|
|
|
|
dry_run=False,
|
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'read_special': True,
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-05-27 00:09:23 +02:00
|
|
|
def test_create_archive_with_bsd_flags_true_calls_borg_without_nobsdflags_parameter():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-05-27 00:09:23 +02:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(CREATE_COMMAND)
|
|
|
|
|
|
|
|
module.create_archive(
|
|
|
|
dry_run=False,
|
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'bsd_flags': True,
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_create_archive_with_bsd_flags_false_calls_borg_with_nobsdflags_parameter():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-05-27 00:09:23 +02:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--nobsdflags',))
|
|
|
|
|
|
|
|
module.create_archive(
|
|
|
|
dry_run=False,
|
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'bsd_flags': False,
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-11-03 06:03:11 +01:00
|
|
|
def test_create_archive_with_files_cache_calls_borg_with_files_cache_parameters():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-11-03 06:03:11 +01:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--files-cache', 'ctime,size'))
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-11-03 06:03:11 +01:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'files_cache': 'ctime,size',
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
2017-08-06 01:21:39 +02:00
|
|
|
|
|
|
|
|
2018-01-15 01:35:24 +01:00
|
|
|
def test_create_archive_with_local_path_calls_borg_via_local_path():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 01:35:24 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(('borg1',) + CREATE_COMMAND[1:])
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2018-01-15 01:35:24 +01:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
local_path='borg1',
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-09-10 02:23:31 +02:00
|
|
|
def test_create_archive_with_remote_path_calls_borg_with_remote_path_parameters():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-08-06 08:32:39 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
2017-08-06 01:21:39 +02:00
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--remote-path', 'borg1'))
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-08-06 01:21:39 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
2018-01-15 01:35:24 +01:00
|
|
|
remote_path='borg1',
|
2017-08-06 01:21:39 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-09-10 02:23:31 +02:00
|
|
|
def test_create_archive_with_umask_calls_borg_with_umask_parameters():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-08-06 08:32:39 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
2017-08-06 01:21:39 +02:00
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--umask', '740'))
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-08-06 01:21:39 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={'umask': 740},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-02-20 00:51:04 +01:00
|
|
|
def test_create_archive_with_lock_wait_calls_borg_with_lock_wait_parameters():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-02-20 00:51:04 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--lock-wait', '5'))
|
|
|
|
|
|
|
|
module.create_archive(
|
|
|
|
dry_run=False,
|
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={'lock_wait': 5},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-09-24 21:52:04 +02:00
|
|
|
def test_create_archive_with_json_calls_borg_with_json_parameter():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-09-24 21:52:04 +02:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(CREATE_COMMAND + ('--json',))
|
|
|
|
|
|
|
|
module.create_archive(
|
|
|
|
dry_run=False,
|
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
2018-09-30 07:45:00 +02:00
|
|
|
json=True,
|
2018-09-24 21:52:04 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-08-06 01:21:39 +02:00
|
|
|
def test_create_archive_with_source_directories_glob_expands():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'food'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-08-06 08:32:39 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
2018-09-30 07:45:00 +02:00
|
|
|
insert_subprocess_mock(
|
|
|
|
('borg', 'create', 'repo::{}'.format(DEFAULT_ARCHIVE_NAME), 'foo', 'food')
|
|
|
|
)
|
2017-08-06 01:21:39 +02:00
|
|
|
flexmock(module.glob).should_receive('glob').with_args('foo*').and_return(['foo', 'food'])
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-08-06 01:21:39 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo*'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_create_archive_with_non_matching_source_directories_glob_passes_through():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo*',))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-08-06 08:32:39 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
2017-09-03 20:13:14 +02:00
|
|
|
insert_subprocess_mock(('borg', 'create', 'repo::{}'.format(DEFAULT_ARCHIVE_NAME), 'foo*'))
|
2017-08-06 01:21:39 +02:00
|
|
|
flexmock(module.glob).should_receive('glob').with_args('foo*').and_return([])
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-08-06 01:21:39 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo*'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-09-10 02:23:31 +02:00
|
|
|
def test_create_archive_with_glob_calls_borg_with_expanded_directories():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'food'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-08-06 08:32:39 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
2018-09-30 07:45:00 +02:00
|
|
|
insert_subprocess_mock(
|
|
|
|
('borg', 'create', 'repo::{}'.format(DEFAULT_ARCHIVE_NAME), 'foo', 'food')
|
|
|
|
)
|
2017-08-06 01:21:39 +02:00
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-08-06 01:21:39 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo*'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
|
|
|
storage_config={},
|
|
|
|
)
|
2017-09-03 20:13:14 +02:00
|
|
|
|
|
|
|
|
2017-09-10 02:23:31 +02:00
|
|
|
def test_create_archive_with_archive_name_format_calls_borg_with_archive_name():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-09-03 20:13:14 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(('borg', 'create', 'repo::ARCHIVE_NAME', 'foo', 'bar'))
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-09-03 20:13:14 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
2018-09-30 07:45:00 +02:00
|
|
|
storage_config={'archive_name_format': 'ARCHIVE_NAME'},
|
2017-09-03 20:13:14 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_create_archive_with_archive_name_format_accepts_borg_placeholders():
|
2019-01-27 22:47:26 +01:00
|
|
|
flexmock(module).should_receive('_expand_directories').and_return(('foo', 'bar'))
|
|
|
|
flexmock(module).should_receive('_expand_home_directories').and_return(())
|
2018-01-15 00:52:19 +01:00
|
|
|
flexmock(module).should_receive('_write_pattern_file').and_return(None)
|
|
|
|
flexmock(module).should_receive('_make_pattern_flags').and_return(())
|
2017-09-03 20:13:14 +02:00
|
|
|
flexmock(module).should_receive('_make_exclude_flags').and_return(())
|
|
|
|
insert_subprocess_mock(('borg', 'create', 'repo::Documents_{hostname}-{now}', 'foo', 'bar'))
|
|
|
|
|
|
|
|
module.create_archive(
|
2018-01-16 05:55:27 +01:00
|
|
|
dry_run=False,
|
2017-09-03 20:13:14 +02:00
|
|
|
repository='repo',
|
|
|
|
location_config={
|
|
|
|
'source_directories': ['foo', 'bar'],
|
|
|
|
'repositories': ['repo'],
|
|
|
|
'exclude_patterns': None,
|
|
|
|
},
|
2018-09-30 07:45:00 +02:00
|
|
|
storage_config={'archive_name_format': 'Documents_{hostname}-{now}'},
|
2017-09-03 20:13:14 +02:00
|
|
|
)
|