summaryrefslogtreecommitdiffstats
path: root/debian/tests/validation
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 07:24:23 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 07:24:23 +0000
commit1e99b22ed2aa3bfed7ae8a7c1ca5c4bb99148a0e (patch)
treeff57125a72fceeaa526bb76fda2bcd1adfd4c20f /debian/tests/validation
parentAdding upstream version 1:9.16.44. (diff)
downloadbind9-1e99b22ed2aa3bfed7ae8a7c1ca5c4bb99148a0e.tar.xz
bind9-1e99b22ed2aa3bfed7ae8a7c1ca5c4bb99148a0e.zip
Adding debian version 1:9.16.44-1~deb11u1.debian/1%9.16.44-1_deb11u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/tests/validation')
-rw-r--r--debian/tests/validation28
1 files changed, 28 insertions, 0 deletions
diff --git a/debian/tests/validation b/debian/tests/validation
new file mode 100644
index 0000000..bf10e12
--- /dev/null
+++ b/debian/tests/validation
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+set -e
+
+setup() (
+ service bind9 stop
+ service bind9 start
+)
+
+run() (
+ repeats=10
+ while [ "${repeats}" -gt "0" ]; do
+ # Make a query against an external nameserver and check for DNSSEC validation
+ echo "Checking for DNSSEC validation status of internetsociety.org"
+ dig -t a internetsociety.org @127.0.0.1 | grep -E 'flags:.+ad; QUERY' && break
+ repeats=$((repeats-1))
+ sleep 1
+ done
+ [ "$repeats" -eq "0" ] && exit 1
+)
+
+teardown() (
+ service bind9 stop
+)
+
+setup
+run
+teardown