summaryrefslogtreecommitdiff
path: root/external/bsd/unbound/dist/testdata/edns_cache.tdir/edns_cache.test
blob: d154d5277eac26d387584eb50a4c61e1db0d2645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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.net."
dig @::1 -p $UNBOUND_PORT www.example.net. | 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