From 55ad72d44a94298a96b8f05488ca5ed97ef04736 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 5 May 2024 20:37:15 +0200 Subject: Adding debian version 1:9.11.5.P4+dfsg-5.1+deb10u7. Signed-off-by: Daniel Baumann --- debian/tests/control | 3 +++ debian/tests/simpletest | 26 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 debian/tests/control create mode 100755 debian/tests/simpletest (limited to 'debian/tests') diff --git a/debian/tests/control b/debian/tests/control new file mode 100644 index 0000000..2fad418 --- /dev/null +++ b/debian/tests/control @@ -0,0 +1,3 @@ +Tests: simpletest +Restrictions: needs-root, isolation-container +Depends: bind9, dnsutils diff --git a/debian/tests/simpletest b/debian/tests/simpletest new file mode 100755 index 0000000..468a7c5 --- /dev/null +++ b/debian/tests/simpletest @@ -0,0 +1,26 @@ +#!/bin/sh + +set -e + +setup() { + service bind9 stop + service bind9 start +} + +run() { + # Make a query against a local zone + dig -x 127.0.0.1 @127.0.0.1 + + # 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 | egrep 'flags:.+ad; QUERY' +} + +teardown() { + service bind9 stop +} + +setup +run +teardown + -- cgit v1.2.3