mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch '3117-9-18-0-nslookup-debugging-output-v9_18' into 'v9_18'
Remove spurious 'debugging = true;' See merge request isc-projects/bind9!5783
This commit is contained in:
commit
9e1aba9cbc
3 changed files with 73 additions and 59 deletions
|
|
@ -621,8 +621,6 @@ static void
|
|||
setoption(char *opt) {
|
||||
size_t l = strlen(opt);
|
||||
|
||||
debugging = true;
|
||||
|
||||
#define CHECKOPT(A, N) \
|
||||
((l >= N) && (l < sizeof(A)) && (strncasecmp(opt, A, l) == 0))
|
||||
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
|
||||
rm -f ns1/example.db
|
||||
rm -f nslookup.out*
|
||||
rm -f nslookup.err*
|
||||
rm -f ns*/named.lock
|
||||
rm -f ns*/named.memstats
|
||||
rm -f ns*/named.run
|
||||
|
|
|
|||
|
|
@ -11,101 +11,116 @@
|
|||
# See the COPYRIGHT file distributed with this work for additional
|
||||
# information regarding copyright ownership.
|
||||
|
||||
# shellcheck disable=SC2086
|
||||
. ../conf.sh
|
||||
|
||||
status=0
|
||||
n=0
|
||||
|
||||
n=`expr $n + 1`
|
||||
n=$((n+1))
|
||||
echo_i "Check that domain names that are too big when applying a search list entry are handled cleanly ($n)"
|
||||
ret=0
|
||||
l=012345678901234567890123456789012345678901234567890123456789012
|
||||
t=0123456789012345678901234567890123456789012345678901234567890
|
||||
d=$l.$l.$l.$t
|
||||
$NSLOOKUP -port=${PORT} -domain=$d -type=soa example 10.53.0.1 > nslookup.out${n} || ret=1
|
||||
$NSLOOKUP -port=${PORT} -domain=$d -type=soa example 10.53.0.1 2> nslookup.err${n} > nslookup.out${n} || ret=1
|
||||
lines=$(wc -l < nslookup.err${n})
|
||||
test $lines -eq 0 || ret=1
|
||||
grep "origin = ns1.example" nslookup.out${n} > /dev/null || ret=1
|
||||
if [ $ret != 0 ]; then echo_i "failed"; fi
|
||||
status=`expr $status + $ret`
|
||||
status=$((status+ret))
|
||||
|
||||
n=`expr $n + 1`
|
||||
echo_i "Check A only lookup"
|
||||
n=$((n+1))
|
||||
echo_i "Check A only lookup ($n)"
|
||||
ret=0
|
||||
$NSLOOKUP -port=${PORT} a-only.example.net 10.53.0.1 > nslookup.out${n} || ret=1
|
||||
lines=`grep "Server:" nslookup.out${n} | wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
lines=`grep a-only.example.net nslookup.out${n} | wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
$NSLOOKUP -port=${PORT} a-only.example.net 10.53.0.1 2> nslookup.err${n} > nslookup.out${n} || ret=1
|
||||
lines=$(wc -l < nslookup.err${n})
|
||||
test $lines -eq 0 || ret=1
|
||||
lines=$(grep -c "Server:" nslookup.out${n})
|
||||
test $lines -eq 1 || ret=1
|
||||
lines=$(grep -c a-only.example.net nslookup.out${n})
|
||||
test $lines -eq 1 || ret=1
|
||||
grep "1.2.3.4" nslookup.out${n} > /dev/null || ret=1
|
||||
if [ $ret != 0 ]; then echo_i "failed"; fi
|
||||
status=`expr $status + $ret`
|
||||
status=$((status+ret))
|
||||
|
||||
n=`expr $n + 1`
|
||||
echo_i "Check AAAA only lookup"
|
||||
n=$((n+1))
|
||||
echo_i "Check AAAA only lookup ($n)"
|
||||
ret=0
|
||||
$NSLOOKUP -port=${PORT} aaaa-only.example.net 10.53.0.1 > nslookup.out${n} || ret=1
|
||||
lines=`grep "Server:" nslookup.out${n} | wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
lines=`grep aaaa-only.example.net nslookup.out${n} | wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
$NSLOOKUP -port=${PORT} aaaa-only.example.net 10.53.0.1 2> nslookup.err${n} > nslookup.out${n} || ret=1
|
||||
lines=$(wc -l < nslookup.err${n})
|
||||
test $lines -eq 0 || ret=1
|
||||
lines=$(grep -c "Server:" nslookup.out${n})
|
||||
test $lines -eq 1 || ret=1
|
||||
lines=$(grep -c aaaa-only.example.net nslookup.out${n})
|
||||
test $lines -eq 1 || ret=1
|
||||
grep "2001::ffff" nslookup.out${n} > /dev/null || ret=1
|
||||
if [ $ret != 0 ]; then echo_i "failed"; fi
|
||||
status=`expr $status + $ret`
|
||||
status=$((status+ret))
|
||||
|
||||
n=`expr $n + 1`
|
||||
echo_i "Check dual A + AAAA lookup"
|
||||
n=$((n+1))
|
||||
echo_i "Check dual A + AAAA lookup ($n)"
|
||||
ret=0
|
||||
$NSLOOKUP -port=${PORT} dual.example.net 10.53.0.1 > nslookup.out${n} || ret=1
|
||||
lines=`grep "Server:" nslookup.out${n} | wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
lines=`grep dual.example.net nslookup.out${n} | wc -l`
|
||||
test $lines = 2 || ret=1
|
||||
$NSLOOKUP -port=${PORT} dual.example.net 10.53.0.1 2> nslookup.err${n} > nslookup.out${n} || ret=1
|
||||
lines=$(wc -l < nslookup.err${n})
|
||||
test $lines -eq 0 || ret=1
|
||||
lines=$(grep -c "Server:" nslookup.out${n})
|
||||
test $lines -eq 1 || ret=1
|
||||
lines=$(grep -c dual.example.net nslookup.out${n})
|
||||
test $lines -eq 2 || ret=1
|
||||
grep "1.2.3.4" nslookup.out${n} > /dev/null || ret=1
|
||||
grep "2001::ffff" nslookup.out${n} > /dev/null || ret=1
|
||||
if [ $ret != 0 ]; then echo_i "failed"; fi
|
||||
status=`expr $status + $ret`
|
||||
status=$((status+ret))
|
||||
|
||||
n=`expr $n + 1`
|
||||
echo_i "Check CNAME to A only lookup"
|
||||
n=$((n+1))
|
||||
echo_i "Check CNAME to A only lookup ($n)"
|
||||
ret=0
|
||||
$NSLOOKUP -port=${PORT} cname-a-only.example.net 10.53.0.1 > nslookup.out${n} || ret=1
|
||||
lines=`grep "Server:" nslookup.out${n} | wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
lines=`grep "canonical name" nslookup.out${n} | wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
lines=`grep a-only.example.net nslookup.out${n} | grep -v "canonical name" | wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
$NSLOOKUP -port=${PORT} cname-a-only.example.net 10.53.0.1 2> nslookup.err${n} > nslookup.out${n} || ret=1
|
||||
lines=$(wc -l < nslookup.err${n})
|
||||
test $lines -eq 0 || ret=1
|
||||
lines=$(grep -c "Server:" nslookup.out${n})
|
||||
test $lines -eq 1 || ret=1
|
||||
lines=$(grep -c "canonical name" nslookup.out${n})
|
||||
test $lines -eq 1 || ret=1
|
||||
lines=$(grep a-only.example.net nslookup.out${n} | grep -cv "canonical name")
|
||||
test $lines -eq 1 || ret=1
|
||||
grep "1.2.3.4" nslookup.out${n} > /dev/null || ret=1
|
||||
if [ $ret != 0 ]; then echo_i "failed"; fi
|
||||
status=`expr $status + $ret`
|
||||
status=$((status+ret))
|
||||
|
||||
n=`expr $n + 1`
|
||||
echo_i "Check CNAME to AAAA only lookup"
|
||||
n=$((n+1))
|
||||
echo_i "Check CNAME to AAAA only lookup ($n)"
|
||||
ret=0
|
||||
$NSLOOKUP -port=${PORT} cname-aaaa-only.example.net 10.53.0.1 > nslookup.out${n} || ret=1
|
||||
lines=`grep "Server:" nslookup.out${n} | wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
lines=`grep "canonical name" nslookup.out${n} | wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
lines=`grep aaaa-only.example.net nslookup.out${n} | grep -v "canonical name" |wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
$NSLOOKUP -port=${PORT} cname-aaaa-only.example.net 10.53.0.1 2> nslookup.err${n} > nslookup.out${n} || ret=1
|
||||
lines=$(wc -l < nslookup.err${n})
|
||||
test $lines -eq 0 || ret=1
|
||||
lines=$(grep -c "Server:" nslookup.out${n})
|
||||
test $lines -eq 1 || ret=1
|
||||
lines=$(grep -c "canonical name" nslookup.out${n})
|
||||
test $lines -eq 1 || ret=1
|
||||
lines=$(grep aaaa-only.example.net nslookup.out${n} | grep -cv "canonical name")
|
||||
test $lines -eq 1 || ret=1
|
||||
grep "2001::ffff" nslookup.out${n} > /dev/null || ret=1
|
||||
if [ $ret != 0 ]; then echo_i "failed"; fi
|
||||
status=`expr $status + $ret`
|
||||
status=$((status+ret))
|
||||
|
||||
n=`expr $n + 1`
|
||||
echo_i "Check CNAME to dual A + AAAA lookup"
|
||||
n=$((n+1))
|
||||
echo_i "Check CNAME to dual A + AAAA lookup ($n)"
|
||||
ret=0
|
||||
$NSLOOKUP -port=${PORT} cname-dual.example.net 10.53.0.1 > nslookup.out${n} || ret=1
|
||||
lines=`grep "Server:" nslookup.out${n} | wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
lines=`grep "canonical name" nslookup.out${n} | wc -l`
|
||||
test $lines = 1 || ret=1
|
||||
lines=`grep dual.example.net nslookup.out${n} | grep -v "canonical name" | wc -l`
|
||||
test $lines = 2 || ret=1
|
||||
$NSLOOKUP -port=${PORT} cname-dual.example.net 10.53.0.1 2> nslookup.err${n} > nslookup.out${n} || ret=1
|
||||
lines=$(wc -l < nslookup.err${n})
|
||||
test $lines -eq 0 || ret=1
|
||||
lines=$(grep -c "Server:" nslookup.out${n})
|
||||
test $lines -eq 1 || ret=1
|
||||
lines=$(grep -c "canonical name" nslookup.out${n})
|
||||
test $lines -eq 1 || ret=1
|
||||
lines=$(grep dual.example.net nslookup.out${n} | grep -cv "canonical name")
|
||||
test $lines -eq 2 || ret=1
|
||||
grep "1.2.3.4" nslookup.out${n} > /dev/null || ret=1
|
||||
grep "2001::ffff" nslookup.out${n} > /dev/null || ret=1
|
||||
if [ $ret != 0 ]; then echo_i "failed"; fi
|
||||
status=`expr $status + $ret`
|
||||
status=$((status+ret))
|
||||
|
||||
echo_i "exit status: $status"
|
||||
[ $status -eq 0 ] || exit 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue