diff options
Diffstat (limited to 'testdata/edns_cache.tdir/edns_cache.test')
-rw-r--r-- | testdata/edns_cache.tdir/edns_cache.test | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testdata/edns_cache.tdir/edns_cache.test b/testdata/edns_cache.tdir/edns_cache.test new file mode 100644 index 0000000000000..53931ded2eb70 --- /dev/null +++ b/testdata/edns_cache.tdir/edns_cache.test @@ -0,0 +1,30 @@ +# #-- edns_cache.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 + +# notice that we use one stub server on IPv6 ::1 that supports EDNS that +# gives referrals to the other server on IPv4 127.0.0.1 that is nonEDNS. + +PRE="../.." +# do the test +echo "> dig netdns.example.net." +dig @::1 -p $UNBOUND_PORT netdns.example.net. | tee outfile +echo "> dig www.example.com." +dig @::1 -p $UNBOUND_PORT www.example.com. | tee outfile +echo "> cat stub1.log" +cat stub1.log +echo "> cat stub2.log" +cat stub2.log +echo "> cat unbound.log" +cat unbound.log +echo "> check answer" +if grep "10.20.30.40" outfile; then + echo "OK" +else + echo "Not OK" + exit 1 +fi + +exit 0 |