| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 | import pytestfrom flexmock import flexmockfrom borgmatic.config import validate as moduledef test_format_json_error_path_element_formats_array_index():    module.format_json_error_path_element(3) == '[3]'def test_format_json_error_path_element_formats_property():    module.format_json_error_path_element('foo') == '.foo'def test_format_json_error_formats_error_including_path():    flexmock(module).format_json_error_path_element = lambda element: '.{}'.format(element)    error = flexmock(message='oops', path=['foo', 'bar'])    assert module.format_json_error(error) == "At 'foo.bar': oops"def test_format_json_error_formats_error_without_path():    flexmock(module).should_receive('format_json_error_path_element').never()    error = flexmock(message='oops', path=[])    assert module.format_json_error(error) == 'At the top level: oops'def test_validation_error_string_contains_errors():    flexmock(module).format_json_error = lambda error: error.message    error = module.Validation_error('config.yaml', ('oops', 'uh oh'))    result = str(error)    assert 'config.yaml' in result    assert 'oops' in result    assert 'uh oh' in resultdef test_apply_locical_validation_raises_if_unknown_repository_in_check_repositories():    flexmock(module).format_json_error = lambda error: error.message    with pytest.raises(module.Validation_error):        module.apply_logical_validation(            'config.yaml',            {                'location': {'repositories': ['repo.borg', 'other.borg']},                'retention': {'keep_secondly': 1000},                'consistency': {'check_repositories': ['repo.borg', 'unknown.borg']},            },        )def test_apply_locical_validation_does_not_raise_if_known_repository_in_check_repositories():    module.apply_logical_validation(        'config.yaml',        {            'location': {'repositories': ['repo.borg', 'other.borg']},            'retention': {'keep_secondly': 1000},            'consistency': {'check_repositories': ['repo.borg']},        },    )def test_apply_logical_validation_does_not_raise_if_archive_name_format_and_prefix_present():    module.apply_logical_validation(        'config.yaml',        {            'storage': {'archive_name_format': '{hostname}-{now}'},            'retention': {'prefix': '{hostname}-'},            'consistency': {'prefix': '{hostname}-'},        },    )def test_apply_logical_validation_does_not_raise_otherwise():    module.apply_logical_validation('config.yaml', {'retention': {'keep_secondly': 1000}})def test_normalize_repository_path_passes_through_remote_repository():    repository = 'example.org:test.borg'    module.normalize_repository_path(repository) == repositorydef test_normalize_repository_path_passes_through_absolute_repository():    repository = '/foo/bar/test.borg'    flexmock(module.os.path).should_receive('abspath').and_return(repository)    module.normalize_repository_path(repository) == repositorydef test_normalize_repository_path_resolves_relative_repository():    repository = 'test.borg'    absolute = '/foo/bar/test.borg'    flexmock(module.os.path).should_receive('abspath').and_return(absolute)    module.normalize_repository_path(repository) == absolutedef test_repositories_match_does_not_raise():    flexmock(module).should_receive('normalize_repository_path')    module.repositories_match('foo', 'bar')def test_guard_configuration_contains_repository_does_not_raise_when_repository_in_config():    flexmock(module).should_receive('repositories_match').replace_with(        lambda first, second: first == second    )    module.guard_configuration_contains_repository(        repository='repo', configurations={'config.yaml': {'location': {'repositories': ['repo']}}}    )def test_guard_configuration_contains_repository_does_not_raise_when_repository_not_given():    module.guard_configuration_contains_repository(        repository=None, configurations={'config.yaml': {'location': {'repositories': ['repo']}}}    )def test_guard_configuration_contains_repository_errors_when_repository_missing_from_config():    flexmock(module).should_receive('repositories_match').replace_with(        lambda first, second: first == second    )    with pytest.raises(ValueError):        module.guard_configuration_contains_repository(            repository='nope',            configurations={'config.yaml': {'location': {'repositories': ['repo', 'repo2']}}},        )def test_guard_configuration_contains_repository_errors_when_repository_matches_config_twice():    flexmock(module).should_receive('repositories_match').replace_with(        lambda first, second: first == second    )    with pytest.raises(ValueError):        module.guard_configuration_contains_repository(            repository='repo',            configurations={                'config.yaml': {'location': {'repositories': ['repo', 'repo2']}},                'other.yaml': {'location': {'repositories': ['repo']}},            },        )def test_guard_single_repository_selected_raises_when_multiple_repositories_configured_and_none_selected():    with pytest.raises(ValueError):        module.guard_single_repository_selected(            repository=None,            configurations={'config.yaml': {'location': {'repositories': ['repo', 'repo2']}}},        )def test_guard_single_repository_selected_does_not_raise_when_single_repository_configured_and_none_selected():    module.guard_single_repository_selected(        repository=None, configurations={'config.yaml': {'location': {'repositories': ['repo']}}},    )def test_guard_single_repository_selected_does_not_raise_when_no_repositories_configured_and_one_selected():    module.guard_single_repository_selected(        repository='repo', configurations={'config.yaml': {'location': {'repositories': []}}},    )def test_guard_single_repository_selected_does_not_raise_when_repositories_configured_and_one_selected():    module.guard_single_repository_selected(        repository='repo',        configurations={'config.yaml': {'location': {'repositories': ['repo', 'repo2']}}},    )
 |