2017-10-30 03:36:26 +01:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from borgmatic.config import validate as module
|
|
|
|
|
|
|
|
|
|
|
|
def test_validation_error_str_contains_error_messages_and_config_filename():
|
|
|
|
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 result
|
|
|
|
|
|
|
|
|
|
|
|
def test_apply_logical_validation_raises_if_archive_name_format_present_without_prefix():
|
|
|
|
with pytest.raises(module.Validation_error):
|
|
|
|
module.apply_logical_validation(
|
|
|
|
'config.yaml',
|
|
|
|
{
|
|
|
|
'storage': {'archive_name_format': '{hostname}-{now}'},
|
|
|
|
'retention': {'keep_daily': 7},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2018-09-30 07:45:00 +02:00
|
|
|
|
2018-03-04 07:17:39 +01:00
|
|
|
def test_apply_logical_validation_raises_if_archive_name_format_present_without_retention_prefix():
|
|
|
|
with pytest.raises(module.Validation_error):
|
|
|
|
module.apply_logical_validation(
|
|
|
|
'config.yaml',
|
|
|
|
{
|
|
|
|
'storage': {'archive_name_format': '{hostname}-{now}'},
|
|
|
|
'retention': {'keep_daily': 7},
|
2018-09-30 07:45:00 +02:00
|
|
|
'consistency': {'prefix': '{hostname}-'},
|
2018-03-04 07:17:39 +01:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-10-14 05:34:51 +02:00
|
|
|
def test_apply_locical_validation_raises_if_unknown_repository_in_check_repositories():
|
|
|
|
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']},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2019-06-20 05:48:54 +02:00
|
|
|
def test_apply_logical_validation_does_not_raise_if_archive_name_format_and_prefix_present():
|
2017-10-30 03:36:26 +01:00
|
|
|
module.apply_logical_validation(
|
|
|
|
'config.yaml',
|
|
|
|
{
|
|
|
|
'storage': {'archive_name_format': '{hostname}-{now}'},
|
|
|
|
'retention': {'prefix': '{hostname}-'},
|
2018-09-30 07:45:00 +02:00
|
|
|
'consistency': {'prefix': '{hostname}-'},
|
2017-10-30 03:36:26 +01:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_apply_logical_validation_does_not_raise_otherwise():
|
2018-09-30 07:45:00 +02:00
|
|
|
module.apply_logical_validation('config.yaml', {'retention': {'keep_secondly': 1000}})
|
2019-02-18 21:58:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_guard_configuration_contains_repository_does_not_raise_when_repository_in_config():
|
|
|
|
module.guard_configuration_contains_repository(
|
2019-02-18 22:27:35 +01:00
|
|
|
repository='repo', configurations={'config.yaml': {'location': {'repositories': ['repo']}}}
|
2019-02-18 21:58:39 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_guard_configuration_contains_repository_does_not_raise_when_repository_not_given():
|
|
|
|
module.guard_configuration_contains_repository(
|
2019-02-18 22:27:35 +01:00
|
|
|
repository=None, configurations={'config.yaml': {'location': {'repositories': ['repo']}}}
|
2019-02-18 21:58:39 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2019-02-18 22:22:14 +01:00
|
|
|
def test_guard_configuration_contains_repository_errors_when_repository_assumed_to_match_config_twice():
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
module.guard_configuration_contains_repository(
|
2019-02-18 22:27:35 +01:00
|
|
|
repository=None,
|
|
|
|
configurations={'config.yaml': {'location': {'repositories': ['repo', 'repo2']}}},
|
2019-02-18 22:22:14 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2019-02-18 21:58:39 +01:00
|
|
|
def test_guard_configuration_contains_repository_errors_when_repository_missing_from_config():
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
module.guard_configuration_contains_repository(
|
2019-02-18 22:27:35 +01:00
|
|
|
repository='nope',
|
|
|
|
configurations={'config.yaml': {'location': {'repositories': ['repo', 'repo2']}}},
|
2019-02-18 21:58:39 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_guard_configuration_contains_repository_errors_when_repository_matches_config_twice():
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
module.guard_configuration_contains_repository(
|
|
|
|
repository='repo',
|
|
|
|
configurations={
|
2019-02-18 22:27:35 +01:00
|
|
|
'config.yaml': {'location': {'repositories': ['repo', 'repo2']}},
|
|
|
|
'other.yaml': {'location': {'repositories': ['repo']}},
|
2019-02-18 21:58:39 +01:00
|
|
|
},
|
|
|
|
)
|