summaryrefslogtreecommitdiff
path: root/testdata/fwd_ttlexpire.tdir/fwd_ttlexpire.test
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/fwd_ttlexpire.tdir/fwd_ttlexpire.test')
-rw-r--r--testdata/fwd_ttlexpire.tdir/fwd_ttlexpire.test35
1 files changed, 35 insertions, 0 deletions
diff --git a/testdata/fwd_ttlexpire.tdir/fwd_ttlexpire.test b/testdata/fwd_ttlexpire.tdir/fwd_ttlexpire.test
new file mode 100644
index 000000000000..41ea3953ccb6
--- /dev/null
+++ b/testdata/fwd_ttlexpire.tdir/fwd_ttlexpire.test
@@ -0,0 +1,35 @@
+# #-- fwd_ttlexpire.test --#
+# source the master var file when it's there
+[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master
+# use .tpkg.var.test for in test variable passing
+[ -f .tpkg.var.test ] && source .tpkg.var.test
+
+PRE="../.."
+# do the test
+echo "> dig www.example.com."
+dig @localhost -p $UNBOUND_PORT www.example.com. | tee outfile
+echo "> check answer"
+if grep "10.20.30.40" outfile; then
+ echo "OK"
+else
+ echo "Not OK"
+ exit 1
+fi
+# wait for query to expire.
+sleep 4
+# query again
+rm outfile
+echo "> dig www.example.com."
+dig @localhost -p $UNBOUND_PORT www.example.com. | tee outfile
+echo "> check answer"
+if grep "10.20.30.40" outfile; then
+ echo "OK"
+else
+ echo "Not OK"
+ exit 1
+fi
+echo "> cat logfiles"
+cat fwd.log
+cat unbound.log
+
+exit 0