mirror of
https://github.com/thegeeklab/prometheus-pve-sd.git
synced 2024-11-01 08:00:38 +00:00
a2f513156a
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
"""Test Config class."""
|
|
|
|
import pytest
|
|
import ruamel.yaml
|
|
|
|
import prometheuspvesd.exception
|
|
from prometheuspvesd.config import Config
|
|
|
|
pytest_plugins = [
|
|
"prometheuspvesd.test.fixtures.fixtures",
|
|
]
|
|
|
|
|
|
def test_yaml_config(mocker, defaults):
|
|
mocker.patch(
|
|
"prometheuspvesd.config.default_config_file", "./prometheuspvesd/test/data/config.yml"
|
|
)
|
|
config = Config()
|
|
|
|
defaults["pve"]["user"] = "root"
|
|
defaults["pve"]["password"] = "secure"
|
|
defaults["pve"]["server"] = "proxmox.example.com"
|
|
defaults["pve"]["token_name"] = "pve_sd"
|
|
defaults["pve"]["token_value"] = "01234567-89ab-cdef-0123-456789abcdef"
|
|
|
|
assert config.config == defaults
|
|
|
|
|
|
def test_yaml_config_error(mocker):
|
|
mocker.patch(
|
|
"prometheuspvesd.config.default_config_file", "./prometheuspvesd/test/data/config.yml"
|
|
)
|
|
mocker.patch.object(ruamel.yaml.YAML, "load", side_effect=ruamel.yaml.composer.ComposerError)
|
|
|
|
with pytest.raises(prometheuspvesd.exception.ConfigError) as e:
|
|
Config()
|
|
|
|
assert "Unable to read config file ./prometheuspvesd/test/data/config.yml" in str(e.value)
|