| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- import pytest
- from flexmock import flexmock
- from borgmatic.actions.config import bootstrap as module
- def test_get_config_paths_returns_list_of_config_paths():
- bootstrap_arguments = flexmock(
- borgmatic_source_directory=None,
- repository='repo',
- archive='archive',
- )
- global_arguments = flexmock(
- dry_run=False,
- )
- local_borg_version = flexmock()
- extract_process = flexmock(
- stdout=flexmock(
- read=lambda: '{"config_paths": ["/borgmatic/config.yaml"]}',
- ),
- )
- flexmock(module.borgmatic.borg.extract).should_receive('extract_archive').and_return(
- extract_process
- )
- flexmock(module.borgmatic.borg.rlist).should_receive('resolve_archive_name').and_return(
- 'archive'
- )
- assert module.get_config_paths(bootstrap_arguments, global_arguments, local_borg_version) == [
- '/borgmatic/config.yaml'
- ]
- def test_get_config_paths_with_missing_manifest_raises_value_error():
- bootstrap_arguments = flexmock(
- borgmatic_source_directory=None,
- repository='repo',
- archive='archive',
- )
- global_arguments = flexmock(
- dry_run=False,
- )
- local_borg_version = flexmock()
- extract_process = flexmock(stdout=flexmock(read=lambda: ''))
- flexmock(module.borgmatic.borg.extract).should_receive('extract_archive').and_return(
- extract_process
- )
- flexmock(module.borgmatic.borg.rlist).should_receive('resolve_archive_name').and_return(
- 'archive'
- )
- with pytest.raises(ValueError):
- module.get_config_paths(bootstrap_arguments, global_arguments, local_borg_version)
- def test_get_config_paths_with_broken_json_raises_value_error():
- bootstrap_arguments = flexmock(
- borgmatic_source_directory=None,
- repository='repo',
- archive='archive',
- )
- global_arguments = flexmock(
- dry_run=False,
- )
- local_borg_version = flexmock()
- extract_process = flexmock(
- stdout=flexmock(read=lambda: '{"config_paths": ["/oops'),
- )
- flexmock(module.borgmatic.borg.extract).should_receive('extract_archive').and_return(
- extract_process
- )
- flexmock(module.borgmatic.borg.rlist).should_receive('resolve_archive_name').and_return(
- 'archive'
- )
- with pytest.raises(ValueError):
- module.get_config_paths(bootstrap_arguments, global_arguments, local_borg_version)
- def test_get_config_paths_with_json_missing_key_raises_value_error():
- bootstrap_arguments = flexmock(
- borgmatic_source_directory=None,
- repository='repo',
- archive='archive',
- )
- global_arguments = flexmock(
- dry_run=False,
- )
- local_borg_version = flexmock()
- extract_process = flexmock(
- stdout=flexmock(read=lambda: '{}'),
- )
- flexmock(module.borgmatic.borg.extract).should_receive('extract_archive').and_return(
- extract_process
- )
- flexmock(module.borgmatic.borg.rlist).should_receive('resolve_archive_name').and_return(
- 'archive'
- )
- with pytest.raises(ValueError):
- module.get_config_paths(bootstrap_arguments, global_arguments, local_borg_version)
- def test_run_bootstrap_does_not_raise():
- bootstrap_arguments = flexmock(
- repository='repo',
- archive='archive',
- destination='dest',
- strip_components=1,
- progress=False,
- borgmatic_source_directory='/borgmatic',
- )
- global_arguments = flexmock(
- dry_run=False,
- )
- local_borg_version = flexmock()
- extract_process = flexmock(
- stdout=flexmock(
- read=lambda: '{"config_paths": ["/borgmatic/config.yaml"]}',
- ),
- )
- flexmock(module.borgmatic.borg.extract).should_receive('extract_archive').and_return(
- extract_process
- ).twice()
- flexmock(module.borgmatic.borg.rlist).should_receive('resolve_archive_name').and_return(
- 'archive'
- )
- module.run_bootstrap(bootstrap_arguments, global_arguments, local_borg_version)
|