107 lines
3.5 KiB
Python
107 lines
3.5 KiB
Python
import pytest
|
|
|
|
from borgmatic.config import normalize as module
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
'config,expected_config,produces_logs',
|
|
(
|
|
(
|
|
{'location': {'exclude_if_present': '.nobackup'}},
|
|
{'location': {'exclude_if_present': ['.nobackup']}},
|
|
False,
|
|
),
|
|
(
|
|
{'location': {'exclude_if_present': ['.nobackup']}},
|
|
{'location': {'exclude_if_present': ['.nobackup']}},
|
|
False,
|
|
),
|
|
(
|
|
{'location': {'source_directories': ['foo', 'bar']}},
|
|
{'location': {'source_directories': ['foo', 'bar']}},
|
|
False,
|
|
),
|
|
({'location': None}, {'location': None}, False,),
|
|
(
|
|
{'storage': {'compression': 'yes_please'}},
|
|
{'storage': {'compression': 'yes_please'}},
|
|
False,
|
|
),
|
|
({'storage': None}, {'storage': None}, False,),
|
|
(
|
|
{'hooks': {'healthchecks': 'https://example.com'}},
|
|
{'hooks': {'healthchecks': {'ping_url': 'https://example.com'}}},
|
|
False,
|
|
),
|
|
(
|
|
{'hooks': {'cronitor': 'https://example.com'}},
|
|
{'hooks': {'cronitor': {'ping_url': 'https://example.com'}}},
|
|
False,
|
|
),
|
|
(
|
|
{'hooks': {'pagerduty': 'https://example.com'}},
|
|
{'hooks': {'pagerduty': {'integration_key': 'https://example.com'}}},
|
|
False,
|
|
),
|
|
(
|
|
{'hooks': {'cronhub': 'https://example.com'}},
|
|
{'hooks': {'cronhub': {'ping_url': 'https://example.com'}}},
|
|
False,
|
|
),
|
|
({'hooks': None}, {'hooks': None}, False,),
|
|
(
|
|
{'consistency': {'checks': ['archives']}},
|
|
{'consistency': {'checks': [{'name': 'archives'}]}},
|
|
False,
|
|
),
|
|
(
|
|
{'consistency': {'checks': ['archives']}},
|
|
{'consistency': {'checks': [{'name': 'archives'}]}},
|
|
False,
|
|
),
|
|
({'consistency': None}, {'consistency': None}, False,),
|
|
({'location': {'numeric_owner': False}}, {'location': {'numeric_ids': False}}, False,),
|
|
({'location': {'bsd_flags': False}}, {'location': {'flags': False}}, False,),
|
|
(
|
|
{'storage': {'remote_rate_limit': False}},
|
|
{'storage': {'upload_rate_limit': False}},
|
|
False,
|
|
),
|
|
(
|
|
{'location': {'repositories': ['foo@bar:/repo']}},
|
|
{'location': {'repositories': ['ssh://foo@bar/repo']}},
|
|
True,
|
|
),
|
|
(
|
|
{'location': {'repositories': ['foo@bar:repo']}},
|
|
{'location': {'repositories': ['ssh://foo@bar/./repo']}},
|
|
True,
|
|
),
|
|
(
|
|
{'location': {'repositories': ['foo@bar:~/repo']}},
|
|
{'location': {'repositories': ['ssh://foo@bar/~/repo']}},
|
|
True,
|
|
),
|
|
(
|
|
{'location': {'repositories': ['ssh://foo@bar:1234/repo']}},
|
|
{'location': {'repositories': ['ssh://foo@bar:1234/repo']}},
|
|
False,
|
|
),
|
|
(
|
|
{'location': {'repositories': ['file:///repo']}},
|
|
{'location': {'repositories': ['/repo']}},
|
|
False,
|
|
),
|
|
),
|
|
)
|
|
def test_normalize_applies_hard_coded_normalization_to_config(
|
|
config, expected_config, produces_logs
|
|
):
|
|
logs = module.normalize('test.yaml', config)
|
|
|
|
assert config == expected_config
|
|
|
|
if produces_logs:
|
|
assert logs
|
|
else:
|
|
assert logs == []
|