nixosTests.prometheus-exporters.dnsmasq: wait for DNSMasq before testing the exporter

When DNSMasq is not yet completly started trying to call the exporter
fails.
This commit is contained in:
Thomas Gerbet 2024-02-18 19:09:06 +01:00
parent b83ea8a22b
commit 21a671c1ac

View File

@ -218,6 +218,9 @@ let
services.dnsmasq.enable = true;
};
exporterTest = ''
wait_for_unit("dnsmasq.service")
wait_for_open_port(53)
wait_for_file("/var/lib/dnsmasq/dnsmasq.leases")
wait_for_unit("prometheus-dnsmasq-exporter.service")
wait_for_open_port(9153)
succeed("curl -sSf http://localhost:9153/metrics | grep 'dnsmasq_leases 0'")