mirror of
https://github.com/thegeeklab/prometheus-pve-sd.git
synced 2024-11-14 05:40:40 +00:00
74 lines
1.8 KiB
Python
74 lines
1.8 KiB
Python
"""Test Discovery class."""
|
|
|
|
import pytest
|
|
from proxmoxer import ProxmoxAPI
|
|
|
|
from prometheuspvesd.discovery import Discovery
|
|
|
|
pytest_plugins = [
|
|
"prometheuspvesd.test.fixtures.fixtures",
|
|
]
|
|
|
|
|
|
@pytest.fixture
|
|
def discovery(mocker):
|
|
mocker.patch.object(Discovery, "_auth", return_value=mocker.create_autospec(ProxmoxAPI))
|
|
|
|
return Discovery()
|
|
|
|
|
|
def get_mock(*args):
|
|
networks = args[0]
|
|
args = args[1:]
|
|
|
|
if "info" in args:
|
|
return True
|
|
if "network-get-interfaces" in args:
|
|
return {"result": networks}
|
|
|
|
return False
|
|
|
|
|
|
def test_exclude_vmid(discovery, qemus):
|
|
discovery.config.config["exclude_vmid"] = ["100", "101", "102"]
|
|
filtered = discovery._exclude(qemus)
|
|
|
|
assert len(filtered) == 0
|
|
|
|
|
|
def test_exclude_state(discovery, qemus):
|
|
discovery.config.config["exclude_state"] = ["prelaunch"]
|
|
filtered = discovery._exclude(qemus)
|
|
|
|
assert len(filtered) == 2
|
|
|
|
|
|
def test_exclude_tags(discovery, qemus):
|
|
discovery.config.config["exclude_tags"] = ["unmonitored"]
|
|
filtered = discovery._exclude(qemus)
|
|
|
|
assert len(filtered) == 2
|
|
|
|
|
|
def test_validate_ip(discovery, addresses):
|
|
# IPv4 validation
|
|
for address in addresses["ipv4_valid"]:
|
|
assert discovery._validate_ip(address)
|
|
for address in addresses["ipv4_invalid"]:
|
|
assert not discovery._validate_ip(address)
|
|
|
|
# IPv6 validation
|
|
for address in addresses["ipv6_valid"]:
|
|
assert discovery._validate_ip(address)
|
|
for address in addresses["ipv6_invalid"]:
|
|
assert not discovery._validate_ip(address)
|
|
|
|
|
|
def test_get_ip_addresses(mocker, discovery, networks):
|
|
discovery.client.get.side_effect = lambda *args: get_mock(networks, *args)
|
|
|
|
assert discovery._get_ip_addresses("qemu", "dummy", "dummy") == (
|
|
networks[1]["ip-addresses"][0]["ip-address"],
|
|
networks[1]["ip-addresses"][2]["ip-address"],
|
|
)
|