From: Yu Watanabe Date: Mon, 16 Jun 2025 10:13:51 +0000 (+0900) Subject: TEST-75-RESOLVED: add test case for reloading DNSStubListenerExtra= X-Git-Tag: v258-rc1~312^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=888e3f435770568643fc97aa20b112ded94f33eb;p=thirdparty%2Fsystemd.git TEST-75-RESOLVED: add test case for reloading DNSStubListenerExtra= --- diff --git a/test/units/TEST-75-RESOLVED.sh b/test/units/TEST-75-RESOLVED.sh index 6570febe796..823e404e283 100755 --- a/test/units/TEST-75-RESOLVED.sh +++ b/test/units/TEST-75-RESOLVED.sh @@ -1003,16 +1003,39 @@ testcase_12_resolvectl2() { { echo "[Resolve]" echo "DNS=8.8.8.8" + echo "DNSStubListenerExtra=127.0.0.153" } >/run/systemd/resolved.conf.d/reload.conf resolvectl dns dns0 1.1.1.1 systemctl reload systemd-resolved.service resolvectl status - resolvectl dns dns0 | grep -qF "1.1.1.1" - # For some reason piping this last command to grep fails with: - # 'resolvectl[1378]: Failed to print table: Broken pipe' - # so use an intermediate file in /tmp/ - resolvectl >/tmp/output - grep -qF "DNS Servers: 8.8.8.8" /tmp/output + + run resolvectl dns dns0 + grep -qF "1.1.1.1" "$RUN_OUT" + + run resolvectl dns + grep -qF "8.8.8.8" "$RUN_OUT" + + run ss -4nl + grep -qF '127.0.0.153' "$RUN_OUT" + + { + echo "[Resolve]" + echo "DNS=8.8.4.4" + echo "DNSStubListenerExtra=127.0.0.154" + } >/run/systemd/resolved.conf.d/reload.conf + systemctl reload systemd-resolved.service + resolvectl status + + run resolvectl dns dns0 + grep -qF "1.1.1.1" "$RUN_OUT" + + run resolvectl dns + (! grep -qF "8.8.8.8" "$RUN_OUT") + grep -qF "8.8.4.4" "$RUN_OUT" + + run ss -4nl + (! grep -qF '127.0.0.153' "$RUN_OUT") + grep -qF '127.0.0.154' "$RUN_OUT" # Check if resolved exits cleanly. restart_resolved