| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 | 
							- import logging
 
- from flexmock import flexmock
 
- from borgmatic.borg import export_tar as module
 
- from ..test_verbosity import insert_logging_mock
 
- def insert_execute_command_mock(
 
-     command, output_log_level=logging.INFO, borg_local_path='borg', capture=True
 
- ):
 
-     flexmock(module.environment).should_receive('make_environment')
 
-     flexmock(module).should_receive('execute_command').with_args(
 
-         command,
 
-         output_file=None if capture else module.DO_NOT_CAPTURE,
 
-         output_log_level=output_log_level,
 
-         borg_local_path=borg_local_path,
 
-         extra_environment=None,
 
-     ).once()
 
- def test_export_tar_archive_calls_borg_with_path_parameters():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     insert_execute_command_mock(
 
-         ('borg', 'export-tar', 'repo::archive', 'test.tar', 'path1', 'path2')
 
-     )
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=['path1', 'path2'],
 
-         destination_path='test.tar',
 
-         config={},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-     )
 
- def test_export_tar_archive_calls_borg_with_local_path_parameters():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     insert_execute_command_mock(
 
-         ('borg1', 'export-tar', 'repo::archive', 'test.tar'), borg_local_path='borg1'
 
-     )
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='test.tar',
 
-         config={},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-         local_path='borg1',
 
-     )
 
- def test_export_tar_archive_calls_borg_with_remote_path_parameters():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     insert_execute_command_mock(
 
-         ('borg', 'export-tar', '--remote-path', 'borg1', 'repo::archive', 'test.tar')
 
-     )
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='test.tar',
 
-         config={},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-         remote_path='borg1',
 
-     )
 
- def test_export_tar_archive_calls_borg_with_umask_parameters():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     insert_execute_command_mock(
 
-         ('borg', 'export-tar', '--umask', '0770', 'repo::archive', 'test.tar')
 
-     )
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='test.tar',
 
-         config={'umask': '0770'},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-     )
 
- def test_export_tar_archive_calls_borg_with_log_json_parameter():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     insert_execute_command_mock(('borg', 'export-tar', '--log-json', 'repo::archive', 'test.tar'))
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='test.tar',
 
-         config={},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=True),
 
-     )
 
- def test_export_tar_archive_calls_borg_with_lock_wait_parameters():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     insert_execute_command_mock(
 
-         ('borg', 'export-tar', '--lock-wait', '5', 'repo::archive', 'test.tar')
 
-     )
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='test.tar',
 
-         config={'lock_wait': '5'},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-     )
 
- def test_export_tar_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.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     insert_execute_command_mock(('borg', 'export-tar', '--info', 'repo::archive', 'test.tar'))
 
-     insert_logging_mock(logging.INFO)
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='test.tar',
 
-         config={},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-     )
 
- def test_export_tar_archive_with_log_debug_calls_borg_with_debug_parameters():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     insert_execute_command_mock(
 
-         ('borg', 'export-tar', '--debug', '--show-rc', 'repo::archive', 'test.tar')
 
-     )
 
-     insert_logging_mock(logging.DEBUG)
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='test.tar',
 
-         config={},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-     )
 
- def test_export_tar_archive_calls_borg_with_dry_run_parameter():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     flexmock(module).should_receive('execute_command').never()
 
-     module.export_tar_archive(
 
-         dry_run=True,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='test.tar',
 
-         config={},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-     )
 
- def test_export_tar_archive_calls_borg_with_tar_filter_parameters():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     insert_execute_command_mock(
 
-         ('borg', 'export-tar', '--tar-filter', 'bzip2', 'repo::archive', 'test.tar')
 
-     )
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='test.tar',
 
-         config={},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-         tar_filter='bzip2',
 
-     )
 
- def test_export_tar_archive_calls_borg_with_list_parameter():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     insert_execute_command_mock(
 
-         ('borg', 'export-tar', '--list', 'repo::archive', 'test.tar'),
 
-         output_log_level=logging.ANSWER,
 
-     )
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='test.tar',
 
-         config={},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-         list_files=True,
 
-     )
 
- def test_export_tar_archive_calls_borg_with_strip_components_parameter():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     insert_execute_command_mock(
 
-         ('borg', 'export-tar', '--strip-components', '5', 'repo::archive', 'test.tar')
 
-     )
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='test.tar',
 
-         config={},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-         strip_components=5,
 
-     )
 
- def test_export_tar_archive_skips_abspath_for_remote_repository_parameter():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('server:repo::archive',)
 
-     )
 
-     insert_execute_command_mock(('borg', 'export-tar', 'server:repo::archive', 'test.tar'))
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='server:repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='test.tar',
 
-         config={},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-     )
 
- def test_export_tar_archive_calls_borg_with_stdout_destination_path():
 
-     flexmock(module.borgmatic.logger).should_receive('add_custom_log_levels')
 
-     flexmock(module.logging).ANSWER = module.borgmatic.logger.ANSWER
 
-     flexmock(module.flags).should_receive('make_repository_archive_flags').and_return(
 
-         ('repo::archive',)
 
-     )
 
-     insert_execute_command_mock(('borg', 'export-tar', 'repo::archive', '-'), capture=False)
 
-     module.export_tar_archive(
 
-         dry_run=False,
 
-         repository_path='repo',
 
-         archive='archive',
 
-         paths=None,
 
-         destination_path='-',
 
-         config={},
 
-         local_borg_version='1.2.3',
 
-         global_arguments=flexmock(log_json=False),
 
-     )
 
 
  |