123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593 |
- 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
- def test_write_patterns_file_writes_pattern_lines():
- temporary_file = flexmock(name='filename', flush=lambda: None)
- temporary_file.should_receive('write').with_args('R /foo\n+ sh:/foo/bar')
- flexmock(module.tempfile).should_receive('NamedTemporaryFile').and_return(temporary_file)
- module.write_patterns_file(
- [Pattern('/foo'), Pattern('/foo/bar', Pattern_type.INCLUDE, Pattern_style.SHELL)],
- borgmatic_runtime_directory='/run/user/0',
- )
- def test_write_patterns_file_with_empty_exclude_patterns_does_not_raise():
- module.write_patterns_file([], borgmatic_runtime_directory='/run/user/0')
- def test_write_patterns_file_appends_to_existing():
- patterns_file = flexmock(name='filename', flush=lambda: None)
- patterns_file.should_receive('write').with_args('\n')
- patterns_file.should_receive('write').with_args('R /foo\n+ /foo/bar')
- flexmock(module.tempfile).should_receive('NamedTemporaryFile').never()
- module.write_patterns_file(
- [Pattern('/foo'), Pattern('/foo/bar', Pattern_type.INCLUDE)],
- borgmatic_runtime_directory='/run/user/0',
- patterns_file=patterns_file,
- )
- def test_make_exclude_flags_includes_exclude_caches_when_true_in_config():
- exclude_flags = module.make_exclude_flags(config={'exclude_caches': True})
- assert exclude_flags == ('--exclude-caches',)
- def test_make_exclude_flags_does_not_include_exclude_caches_when_false_in_config():
- exclude_flags = module.make_exclude_flags(config={'exclude_caches': False})
- assert exclude_flags == ()
- def test_make_exclude_flags_includes_exclude_if_present_when_in_config():
- exclude_flags = module.make_exclude_flags(
- config={'exclude_if_present': ['exclude_me', 'also_me']}
- )
- assert exclude_flags == (
- '--exclude-if-present',
- 'exclude_me',
- '--exclude-if-present',
- 'also_me',
- )
- def test_make_exclude_flags_includes_keep_exclude_tags_when_true_in_config():
- exclude_flags = module.make_exclude_flags(config={'keep_exclude_tags': True})
- assert exclude_flags == ('--keep-exclude-tags',)
- def test_make_exclude_flags_does_not_include_keep_exclude_tags_when_false_in_config():
- exclude_flags = module.make_exclude_flags(config={'keep_exclude_tags': False})
- assert exclude_flags == ()
- def test_make_exclude_flags_includes_exclude_nodump_when_true_in_config():
- exclude_flags = module.make_exclude_flags(config={'exclude_nodump': True})
- assert exclude_flags == ('--exclude-nodump',)
- def test_make_exclude_flags_does_not_include_exclude_nodump_when_false_in_config():
- exclude_flags = module.make_exclude_flags(config={'exclude_nodump': False})
- assert exclude_flags == ()
- def test_make_exclude_flags_is_empty_when_config_has_no_excludes():
- exclude_flags = module.make_exclude_flags(config={})
- assert exclude_flags == ()
- def test_make_list_filter_flags_with_debug_and_feature_available_includes_plus_and_minus():
- flexmock(module.logger).should_receive('isEnabledFor').and_return(True)
- flexmock(module.feature).should_receive('available').and_return(True)
- assert module.make_list_filter_flags(local_borg_version=flexmock(), dry_run=False) == 'AME+-'
- def test_make_list_filter_flags_with_info_and_feature_available_omits_plus_and_minus():
- flexmock(module.logger).should_receive('isEnabledFor').and_return(False)
- flexmock(module.feature).should_receive('available').and_return(True)
- assert module.make_list_filter_flags(local_borg_version=flexmock(), dry_run=False) == 'AME'
- def test_make_list_filter_flags_with_debug_and_feature_available_and_dry_run_includes_plus_and_minus():
- flexmock(module.logger).should_receive('isEnabledFor').and_return(True)
- flexmock(module.feature).should_receive('available').and_return(True)
- assert module.make_list_filter_flags(local_borg_version=flexmock(), dry_run=True) == 'AME+-'
- def test_make_list_filter_flags_with_info_and_feature_available_and_dry_run_includes_plus_and_minus():
- flexmock(module.logger).should_receive('isEnabledFor').and_return(False)
- flexmock(module.feature).should_receive('available').and_return(True)
- assert module.make_list_filter_flags(local_borg_version=flexmock(), dry_run=True) == 'AME+-'
- def test_make_list_filter_flags_with_debug_and_feature_not_available_includes_x():
- flexmock(module.logger).should_receive('isEnabledFor').and_return(True)
- flexmock(module.feature).should_receive('available').and_return(False)
- assert module.make_list_filter_flags(local_borg_version=flexmock(), dry_run=False) == 'AMEx-'
- def test_make_list_filter_flags_with_info_and_feature_not_available_omits_x():
- flexmock(module.logger).should_receive('isEnabledFor').and_return(False)
- flexmock(module.feature).should_receive('available').and_return(False)
- assert module.make_list_filter_flags(local_borg_version=flexmock(), dry_run=False) == 'AME-'
- @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_collect_special_file_paths_parses_special_files_from_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_return(
- 'Processing files ...\n- /foo\n+ /bar\n- /baz'
- )
- flexmock(module).should_receive('special_file').and_return(True)
- flexmock(module.os.path).should_receive('exists').and_return(False)
- flexmock(module).should_receive('any_parent_directories').never()
- assert module.collect_special_file_paths(
- dry_run=False,
- create_command=('borg', 'create'),
- config={},
- local_path=None,
- working_directory=None,
- borgmatic_runtime_directory='/run/borgmatic',
- ) == ('/foo', '/bar', '/baz')
- def test_collect_special_file_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_return(
- '+ /foo\n- /run/borgmatic/bar\n- /baz'
- )
- flexmock(module).should_receive('special_file').and_return(True)
- flexmock(module.os.path).should_receive('exists').and_return(True)
- flexmock(module).should_receive('any_parent_directories').with_args(
- '/foo', ('/run/borgmatic',)
- ).and_return(False)
- flexmock(module).should_receive('any_parent_directories').with_args(
- '/run/borgmatic/bar', ('/run/borgmatic',)
- ).and_return(True)
- flexmock(module).should_receive('any_parent_directories').with_args(
- '/baz', ('/run/borgmatic',)
- ).and_return(False)
- assert module.collect_special_file_paths(
- dry_run=False,
- create_command=('borg', 'create'),
- config={},
- local_path=None,
- working_directory=None,
- borgmatic_runtime_directory='/run/borgmatic',
- ) == ('/foo', '/baz')
- def test_collect_special_file_paths_with_borgmatic_runtime_directory_missing_from_paths_output_errors():
- 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_return(
- '+ /foo\n- /bar\n- /baz'
- )
- flexmock(module).should_receive('special_file').and_return(True)
- flexmock(module.os.path).should_receive('exists').and_return(True)
- flexmock(module).should_receive('any_parent_directories').and_return(False)
- with pytest.raises(ValueError):
- module.collect_special_file_paths(
- dry_run=False,
- create_command=('borg', 'create'),
- config={},
- local_path=None,
- working_directory=None,
- borgmatic_runtime_directory='/run/borgmatic',
- )
- def test_collect_special_file_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_return(
- '+ /foo\n- /bar\n- /baz'
- )
- flexmock(module).should_receive('special_file').and_return(True)
- flexmock(module.os.path).should_receive('exists').and_return(True)
- flexmock(module).should_receive('any_parent_directories').and_return(False)
- assert module.collect_special_file_paths(
- dry_run=True,
- create_command=('borg', 'create'),
- config={},
- local_path=None,
- working_directory=None,
- borgmatic_runtime_directory='/run/borgmatic',
- ) == ('/foo', '/bar', '/baz')
- def test_collect_special_file_paths_excludes_non_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_return(
- '+ /foo\n+ /bar\n+ /baz'
- )
- flexmock(module).should_receive('special_file').and_return(True).and_return(False).and_return(
- True
- )
- flexmock(module.os.path).should_receive('exists').and_return(False)
- flexmock(module).should_receive('any_parent_directories').never()
- assert module.collect_special_file_paths(
- dry_run=False,
- create_command=('borg', 'create'),
- config={},
- local_path=None,
- working_directory=None,
- borgmatic_runtime_directory='/run/borgmatic',
- ) == ('/foo', '/baz')
- DEFAULT_ARCHIVE_NAME = '{hostname}-{now:%Y-%m-%dT%H:%M:%S.%f}' # noqa: FS003
- REPO_ARCHIVE = (f'repo::{DEFAULT_ARCHIVE_NAME}',)
- def test_make_base_create_produces_borg_command():
- flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).should_receive('make_list_filter_flags').and_return('FOO')
- flexmock(module.feature).should_receive('available').and_return(True)
- flexmock(module).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- (f'repo::{DEFAULT_ARCHIVE_NAME}',)
- )
- (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(log_json=False),
- 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_includes_patterns_file_in_borg_command():
- flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
- mock_pattern_file = flexmock(name='/tmp/patterns')
- flexmock(module).should_receive('write_patterns_file').and_return(mock_pattern_file).and_return(
- None
- )
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- (f'repo::{DEFAULT_ARCHIVE_NAME}',)
- )
- (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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- )
- assert create_flags == ('borg', 'create') + pattern_flags
- 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.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- (f'repo::{DEFAULT_ARCHIVE_NAME}',)
- )
- (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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- )
- assert create_flags == ('borg', 'create')
- 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_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.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- (f'repo::{DEFAULT_ARCHIVE_NAME}',)
- )
- (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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- )
- assert create_flags == ('borg', 'create') + option_flags
- 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.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- (f'repo::{DEFAULT_ARCHIVE_NAME}',)
- )
- (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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- )
- assert create_flags == ('borg', 'create', '--dry-run')
- 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.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- (f'repo::{DEFAULT_ARCHIVE_NAME}',)
- )
- (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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- local_path='borg1',
- )
- assert create_flags == ('borg1', 'create')
- 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.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- (f'repo::{DEFAULT_ARCHIVE_NAME}',)
- )
- (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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- remote_path='borg1',
- )
- assert create_flags == ('borg', 'create', '--remote-path', 'borg1')
- assert create_positional_arguments == REPO_ARCHIVE
- assert not pattern_file
- def test_make_base_create_command_includes_log_json_in_borg_command():
- flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- (f'repo::{DEFAULT_ARCHIVE_NAME}',)
- )
- (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(log_json=True),
- 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_list_flags_in_borg_command():
- flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- (f'repo::{DEFAULT_ARCHIVE_NAME}',)
- )
- (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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- list_files=True,
- )
- assert create_flags == ('borg', 'create', '--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.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').with_args(
- patterns, '/run/borgmatic'
- ).and_return(patterns_file)
- flexmock(module).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).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('collect_special_file_paths').and_return(('/dev/null',)).once()
- flexmock(module).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).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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- stream_processes=flexmock(),
- )
- assert create_flags == ('borg', 'create', '--patterns-from', 'patterns', '--read-special')
- 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.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').with_args(
- [], '/run/borgmatic'
- ).and_return(None)
- flexmock(module).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).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('collect_special_file_paths').and_return(('/dev/null',)).once()
- flexmock(module).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).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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- stream_processes=flexmock(),
- )
- assert create_flags == ('borg', 'create', '--read-special', '--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.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).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('collect_special_file_paths').never()
- (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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- stream_processes=flexmock(),
- )
- assert create_flags == ('borg', 'create', '--read-special')
- 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.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- ('repo::ARCHIVE_NAME',)
- )
- (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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- )
- assert create_flags == ('borg', 'create')
- 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.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- ('repo::{hostname}',)
- )
- (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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- )
- assert create_flags == ('borg', 'create')
- 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}' # noqa: FS003
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- (repository_archive_pattern,)
- )
- (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}', # noqa: FS003
- },
- patterns=[Pattern('foo'), Pattern('bar')],
- local_borg_version='1.2.3',
- global_arguments=flexmock(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- )
- assert create_flags == ('borg', 'create')
- 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}' # noqa: FS003
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- (repository_archive_pattern,)
- )
- (create_flags, create_positional_arguments, pattern_file) = module.make_base_create_command(
- dry_run=False,
- repository_path='{fqdn}', # noqa: FS003
- config={
- 'source_directories': ['foo', 'bar'],
- 'repositories': ['{fqdn}'], # noqa: FS003
- 'archive_name_format': 'Documents_{hostname}-{now}', # noqa: FS003
- },
- patterns=[Pattern('foo'), Pattern('bar')],
- local_borg_version='1.2.3',
- global_arguments=flexmock(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- )
- assert create_flags == ('borg', 'create')
- assert create_positional_arguments == (repository_archive_pattern,)
- assert not pattern_file
- def test_make_base_create_command_includes_extra_borg_options_in_borg_command():
- flexmock(module.borgmatic.config.paths).should_receive('get_working_directory').and_return(None)
- flexmock(module).should_receive('write_patterns_file').and_return(None)
- flexmock(module).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).should_receive('make_exclude_flags').and_return(())
- flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
- (f'repo::{DEFAULT_ARCHIVE_NAME}',)
- )
- (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'},
- },
- patterns=[Pattern('foo'), Pattern('bar')],
- local_borg_version='1.2.3',
- global_arguments=flexmock(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- )
- assert create_flags == ('borg', 'create', '--extra', '--options')
- assert create_positional_arguments == REPO_ARCHIVE
- assert not pattern_file
- 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).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(log_json=False),
- borgmatic_runtime_directory='/run/borgmatic',
- )
- def test_create_archive_calls_borg_with_parameters():
- 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(log_json=False),
- 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(log_json=False),
- borgmatic_runtime_directory='/borgmatic/run',
- )
- def test_create_archive_with_log_info_calls_borg_with_info_parameter():
- 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(log_json=False),
- 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,
- )
- 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(log_json=False),
- borgmatic_runtime_directory='/borgmatic/run',
- json=True,
- )
- def test_create_archive_with_log_debug_calls_borg_with_debug_parameter():
- 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(log_json=False),
- 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,
- )
- 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(log_json=False),
- 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,
- },
- patterns=[Pattern('foo'), Pattern('bar')],
- local_borg_version='1.2.3',
- global_arguments=flexmock(log_json=False),
- borgmatic_runtime_directory='/borgmatic/run',
- stats=True,
- )
- 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(log_json=False),
- 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(log_json=False),
- borgmatic_runtime_directory='/borgmatic/run',
- )
- def test_create_archive_with_stats_calls_borg_with_stats_parameter_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,
- },
- patterns=[Pattern('foo'), Pattern('bar')],
- local_borg_version='1.2.3',
- global_arguments=flexmock(log_json=False),
- borgmatic_runtime_directory='/borgmatic/run',
- stats=True,
- )
- 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,
- },
- patterns=[Pattern('foo'), Pattern('bar')],
- local_borg_version='1.2.3',
- global_arguments=flexmock(log_json=False),
- borgmatic_runtime_directory='/borgmatic/run',
- list_files=True,
- )
- def test_create_archive_with_progress_and_log_info_calls_borg_with_progress_parameter_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,
- },
- patterns=[Pattern('foo'), Pattern('bar')],
- local_borg_version='1.2.3',
- global_arguments=flexmock(log_json=False),
- borgmatic_runtime_directory='/borgmatic/run',
- progress=True,
- )
- def test_create_archive_with_progress_calls_borg_with_progress_parameter():
- 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,
- },
- patterns=[Pattern('foo'), Pattern('bar')],
- local_borg_version='1.2.3',
- global_arguments=flexmock(log_json=False),
- borgmatic_runtime_directory='/borgmatic/run',
- progress=True,
- )
- def test_create_archive_with_progress_and_stream_processes_calls_borg_with_progress_parameter():
- 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,
- )
- 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,
- )
- 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(log_json=False),
- borgmatic_runtime_directory='/borgmatic/run',
- progress=True,
- 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_return('[]')
- 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(log_json=False),
- 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_return('[]')
- json_output = module.create_archive(
- dry_run=False,
- repository_path='repo',
- config={
- 'source_directories': ['foo*'],
- 'repositories': ['repo'],
- 'exclude_patterns': None,
- },
- patterns=[Pattern('foo'), Pattern('bar')],
- local_borg_version='1.2.3',
- global_arguments=flexmock(log_json=False),
- borgmatic_runtime_directory='/borgmatic/run',
- json=True,
- stats=True,
- )
- assert json_output == '[]'
- 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(log_json=False),
- borgmatic_runtime_directory='/borgmatic/run',
- )
- def test_check_all_root_patterns_exist_with_existent_pattern_path_does_not_raise():
- flexmock(module.os.path).should_receive('exists').and_return(True)
- module.check_all_root_patterns_exist([Pattern('foo')])
- def test_check_all_root_patterns_exist_with_non_root_pattern_skips_existence_check():
- flexmock(module.os.path).should_receive('exists').never()
- module.check_all_root_patterns_exist([Pattern('foo', Pattern_type.INCLUDE)])
- def test_check_all_root_patterns_exist_with_non_existent_pattern_path_raises():
- flexmock(module.os.path).should_receive('exists').and_return(False)
- with pytest.raises(ValueError):
- module.check_all_root_patterns_exist([Pattern('foo')])
|