123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- import sys
- from flexmock import flexmock
- from borgmatic.borg import extract as module
- from borgmatic.verbosity import VERBOSITY_SOME, VERBOSITY_LOTS
- def insert_subprocess_mock(check_call_command, **kwargs):
- subprocess = flexmock(module.subprocess)
- subprocess.should_receive('check_call').with_args(check_call_command, **kwargs).once()
- def insert_subprocess_never():
- subprocess = flexmock(module.subprocess)
- subprocess.should_receive('check_call').never()
- def insert_subprocess_check_output_mock(check_output_command, result, **kwargs):
- subprocess = flexmock(module.subprocess)
- subprocess.should_receive('check_output').with_args(check_output_command, **kwargs).and_return(result).once()
- def test_extract_last_archive_dry_run_should_call_borg_with_last_archive():
- flexmock(sys.stdout).encoding = 'utf-8'
- insert_subprocess_check_output_mock(
- ('borg', 'list', '--short', 'repo'),
- result='archive1\narchive2\n'.encode('utf-8'),
- )
- insert_subprocess_mock(
- ('borg', 'extract', '--dry-run', 'repo::archive2'),
- )
- module.extract_last_archive_dry_run(
- verbosity=None,
- repository='repo',
- lock_wait=None,
- )
- def test_extract_last_archive_dry_run_without_any_archives_should_bail():
- flexmock(sys.stdout).encoding = 'utf-8'
- insert_subprocess_check_output_mock(
- ('borg', 'list', '--short', 'repo'),
- result='\n'.encode('utf-8'),
- )
- insert_subprocess_never()
- module.extract_last_archive_dry_run(
- verbosity=None,
- repository='repo',
- lock_wait=None,
- )
- def test_extract_last_archive_dry_run_with_verbosity_some_should_call_borg_with_info_parameter():
- flexmock(sys.stdout).encoding = 'utf-8'
- insert_subprocess_check_output_mock(
- ('borg', 'list', '--short', 'repo', '--info'),
- result='archive1\narchive2\n'.encode('utf-8'),
- )
- insert_subprocess_mock(
- ('borg', 'extract', '--dry-run', 'repo::archive2', '--info'),
- )
- module.extract_last_archive_dry_run(
- verbosity=VERBOSITY_SOME,
- repository='repo',
- lock_wait=None,
- )
- def test_extract_last_archive_dry_run_with_verbosity_lots_should_call_borg_with_debug_parameter():
- flexmock(sys.stdout).encoding = 'utf-8'
- insert_subprocess_check_output_mock(
- ('borg', 'list', '--short', 'repo', '--debug', '--show-rc'),
- result='archive1\narchive2\n'.encode('utf-8'),
- )
- insert_subprocess_mock(
- ('borg', 'extract', '--dry-run', 'repo::archive2', '--debug', '--show-rc', '--list'),
- )
- module.extract_last_archive_dry_run(
- verbosity=VERBOSITY_LOTS,
- repository='repo',
- lock_wait=None,
- )
- def test_extract_last_archive_dry_run_should_call_borg_via_local_path():
- flexmock(sys.stdout).encoding = 'utf-8'
- insert_subprocess_check_output_mock(
- ('borg1', 'list', '--short', 'repo'),
- result='archive1\narchive2\n'.encode('utf-8'),
- )
- insert_subprocess_mock(
- ('borg1', 'extract', '--dry-run', 'repo::archive2'),
- )
- module.extract_last_archive_dry_run(
- verbosity=None,
- repository='repo',
- lock_wait=None,
- local_path='borg1',
- )
- def test_extract_last_archive_dry_run_should_call_borg_with_remote_path_parameters():
- flexmock(sys.stdout).encoding = 'utf-8'
- insert_subprocess_check_output_mock(
- ('borg', 'list', '--short', 'repo', '--remote-path', 'borg1'),
- result='archive1\narchive2\n'.encode('utf-8'),
- )
- insert_subprocess_mock(
- ('borg', 'extract', '--dry-run', 'repo::archive2', '--remote-path', 'borg1'),
- )
- module.extract_last_archive_dry_run(
- verbosity=None,
- repository='repo',
- lock_wait=None,
- remote_path='borg1',
- )
- def test_extract_last_archive_dry_run_should_call_borg_with_lock_wait_parameters():
- flexmock(sys.stdout).encoding = 'utf-8'
- insert_subprocess_check_output_mock(
- ('borg', 'list', '--short', 'repo', '--lock-wait', '5'),
- result='archive1\narchive2\n'.encode('utf-8'),
- )
- insert_subprocess_mock(
- ('borg', 'extract', '--dry-run', 'repo::archive2', '--lock-wait', '5'),
- )
- module.extract_last_archive_dry_run(
- verbosity=None,
- repository='repo',
- lock_wait=5,
- )
|