2018-02-23 09:53:12 +01:00
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2012-06-29 11:39:47 +10:00
|
|
|
#
|
2016-06-27 14:56:38 +10:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2018-02-23 09:53:12 +01:00
|
|
|
#
|
|
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
|
|
# information regarding copyright ownership.
|
2011-03-02 04:20:34 +00:00
|
|
|
|
|
|
|
SYSTEMTESTTOP=..
|
|
|
|
. $SYSTEMTESTTOP/conf.sh
|
|
|
|
|
|
|
|
status=0
|
|
|
|
n=1
|
|
|
|
|
|
|
|
for db in zones/good*.db
|
|
|
|
do
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking $db ($n)"
|
2011-03-02 04:20:34 +00:00
|
|
|
ret=0
|
2015-08-22 15:27:33 +10:00
|
|
|
case $db in
|
|
|
|
zones/good-gc-msdcs.db)
|
|
|
|
$CHECKZONE -k fail -i local example $db > test.out.$n 2>&1 || ret=1
|
|
|
|
;;
|
2015-08-25 14:46:06 +10:00
|
|
|
zones/good-dns-sd-reverse.db)
|
|
|
|
$CHECKZONE -k fail -i local 0.0.0.0.in-addr.arpa $db > test.out.$n 2>&1 || ret=1
|
|
|
|
;;
|
2015-08-22 15:27:33 +10:00
|
|
|
*)
|
|
|
|
$CHECKZONE -i local example $db > test.out.$n 2>&1 || ret=1
|
|
|
|
;;
|
|
|
|
esac
|
2011-03-02 04:20:34 +00:00
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2011-03-02 04:20:34 +00:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
done
|
|
|
|
|
2013-03-21 19:30:10 -07:00
|
|
|
for db in zones/bad*.db
|
|
|
|
do
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking $db ($n)"
|
2019-01-04 15:20:04 +11:00
|
|
|
ret=0 v=0
|
2015-08-25 14:46:06 +10:00
|
|
|
case $db in
|
|
|
|
zones/bad-dns-sd-reverse.db)
|
2019-01-04 15:20:04 +11:00
|
|
|
$CHECKZONE -k fail -i local 0.0.0.0.in-addr.arpa $db > test.out.$n 2>&1 || v=$?
|
2015-08-25 14:46:06 +10:00
|
|
|
;;
|
|
|
|
*)
|
2019-01-04 15:20:04 +11:00
|
|
|
$CHECKZONE -i local example $db > test.out.$n 2>&1 || v=$?
|
2015-08-25 14:46:06 +10:00
|
|
|
;;
|
|
|
|
esac
|
2019-01-04 15:20:04 +11:00
|
|
|
test $v = 1 || ret=1
|
2013-03-21 19:30:10 -07:00
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2013-03-21 19:30:10 -07:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
done
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking with journal file ($n)"
|
2013-01-09 16:56:46 -08:00
|
|
|
ret=0
|
|
|
|
$CHECKZONE -D -o test.orig.db test zones/test1.db > /dev/null 2>&1 || ret=1
|
|
|
|
$CHECKZONE -D -o test.changed.db test zones/test2.db > /dev/null 2>&1 || ret=1
|
2016-10-19 17:18:42 +02:00
|
|
|
$MAKEJOURNAL test test.orig.db test.changed.db test.orig.db.jnl 2>&1 || ret=1
|
2013-01-09 16:56:46 -08:00
|
|
|
jlines=`$JOURNALPRINT test.orig.db.jnl | wc -l`
|
|
|
|
[ $jlines = 3 ] || ret=1
|
|
|
|
$CHECKZONE -D -j -o test.out1.db test test.orig.db > /dev/null 2>&1 || ret=1
|
|
|
|
cmp -s test.changed.db test.out1.db || ret=1
|
|
|
|
mv -f test.orig.db.jnl test.journal
|
|
|
|
$CHECKZONE -D -J test.journal -o test.out2.db test test.orig.db > /dev/null 2>&1 || ret=1
|
|
|
|
cmp -s test.changed.db test.out2.db || ret=1
|
2013-04-30 13:49:41 +10:00
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2013-04-30 13:49:41 +10:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking with spf warnings ($n)"
|
2013-04-30 13:49:41 +10:00
|
|
|
ret=0
|
|
|
|
$CHECKZONE example zones/spf.db > test.out1.$n 2>&1 || ret=1
|
|
|
|
$CHECKZONE -T ignore example zones/spf.db > test.out2.$n 2>&1 || ret=1
|
2014-06-10 12:28:33 +10:00
|
|
|
grep "'x.example' found type SPF" test.out1.$n > /dev/null && ret=1
|
|
|
|
grep "'y.example' found type SPF" test.out1.$n > /dev/null || ret=1
|
|
|
|
grep "'example' found type SPF" test.out1.$n > /dev/null && ret=1
|
|
|
|
grep "'x.example' found type SPF" test.out2.$n > /dev/null && ret=1
|
|
|
|
grep "'y.example' found type SPF" test.out2.$n > /dev/null && ret=1
|
|
|
|
grep "'example' found type SPF" test.out2.$n > /dev/null && ret=1
|
2013-04-30 13:49:41 +10:00
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2013-01-09 16:56:46 -08:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking with max ttl (text) ($n)"
|
2014-02-18 23:26:50 -08:00
|
|
|
ret=0
|
|
|
|
$CHECKZONE -l 300 example zones/good1.db > test.out1.$n 2>&1 && ret=1
|
|
|
|
$CHECKZONE -l 600 example zones/good1.db > test.out2.$n 2>&1 || ret=1
|
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2014-02-18 23:26:50 -08:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking with max ttl (raw) ($n)"
|
2014-02-18 23:26:50 -08:00
|
|
|
ret=0
|
|
|
|
$CHECKZONE -f raw -l 300 example good1.db.raw > test.out1.$n 2>&1 && ret=1
|
|
|
|
$CHECKZONE -f raw -l 600 example good1.db.raw > test.out2.$n 2>&1 || ret=1
|
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2014-02-18 23:26:50 -08:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking with max ttl (map) ($n)"
|
2014-02-18 23:26:50 -08:00
|
|
|
ret=0
|
|
|
|
$CHECKZONE -f map -l 300 example good1.db.map > test.out1.$n 2>&1 && ret=1
|
|
|
|
$CHECKZONE -f map -l 600 example good1.db.map > test.out2.$n 2>&1 || ret=1
|
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2014-02-18 23:26:50 -08:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking for no 'inherited owner' warning on '\$INCLUDE file' with no new \$ORIGIN ($n)"
|
2014-12-03 09:42:30 +11:00
|
|
|
ret=0
|
|
|
|
$CHECKZONE example zones/nowarn.inherited.owner.db > test.out1.$n 2>&1 || ret=1
|
|
|
|
grep "inherited.owner" test.out1.$n > /dev/null && ret=1
|
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2014-12-03 09:42:30 +11:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking for 'inherited owner' warning on '\$ORIGIN + \$INCLUDE file' ($n)"
|
2014-12-03 09:42:30 +11:00
|
|
|
ret=0
|
|
|
|
$CHECKZONE example zones/warn.inherit.origin.db > test.out1.$n 2>&1 || ret=1
|
|
|
|
grep "inherited.owner" test.out1.$n > /dev/null || ret=1
|
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2014-12-03 09:42:30 +11:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking for 'inherited owner' warning on '\$INCLUDE file origin' ($n)"
|
2014-12-03 09:42:30 +11:00
|
|
|
ret=0
|
|
|
|
$CHECKZONE example zones/warn.inherited.owner.db > test.out1.$n 2>&1 || ret=1
|
|
|
|
grep "inherited.owner" test.out1.$n > /dev/null || ret=1
|
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2014-12-03 09:42:30 +11:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking that raw zone with bad class is handled ($n)"
|
2015-09-16 10:43:22 +10:00
|
|
|
ret=0
|
|
|
|
$CHECKZONE -f raw example zones/bad-badclass.raw > test.out.$n 2>&1 && ret=1
|
|
|
|
grep "failed: bad class" test.out.$n >/dev/null || ret=1
|
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2015-09-16 10:43:22 +10:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking that expirations that loop using serial arithmetic are handled ($n)"
|
2016-05-27 15:24:30 +10:00
|
|
|
ret=0
|
|
|
|
q=-q
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
test $ret -eq 1 || $CHECKZONE $q dyn.example.net zones/crashzone.db || ret=1
|
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2016-05-27 15:24:30 +10:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking that nameserver below DNAME is reported even with occulted address record present ($n)"
|
2017-04-20 13:28:48 +10:00
|
|
|
ret=0
|
|
|
|
$CHECKZONE example.com zones/ns-address-below-dname.db > test.out.$n 2>&1 && ret=1
|
|
|
|
grep "is below a DNAME" test.out.$n >/dev/null || ret=1
|
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2017-04-20 13:28:48 +10:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "checking that delegating nameserver below DNAME is reported even with occulted address record present ($n)"
|
2017-04-20 13:28:48 +10:00
|
|
|
ret=0
|
|
|
|
$CHECKZONE example.com zones/delegating-ns-address-below-dname.db > test.out.$n 2>&1 || ret=1
|
|
|
|
grep "is below a DNAME" test.out.$n >/dev/null || ret=1
|
|
|
|
n=`expr $n + 1`
|
2018-02-20 15:43:27 -08:00
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
2017-04-20 13:28:48 +10:00
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
2020-01-31 16:52:43 -03:00
|
|
|
n=`expr $n + 1`
|
|
|
|
echo_i "checking that named-compilezone works when reading input from stdin ($n)"
|
|
|
|
ret=0
|
|
|
|
# Step 1: take raw input from stdin and convert it to text/relative format.
|
|
|
|
# Last argument "-" is optional, but it says more explicitly that we're reading from stdin.
|
|
|
|
cat zones/zone1.db | ./named-compilezone -f text -F text -s relative \
|
|
|
|
-o zones/zone1_stdin.txt zone1.com - > /dev/null || ret=1
|
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
|
|
|
ret=0
|
|
|
|
# Step 2: take raw input from file and convert it to text format.
|
|
|
|
./named-compilezone -f text -F text -s relative -o zones/zone1_file.txt \
|
|
|
|
zone1.com zones/zone1.db > /dev/null || ret=1
|
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
|
|
|
ret=0
|
|
|
|
# Step 3: Ensure that output conversion from stdin is the same as the output conversion from a file.
|
|
|
|
$DIFF zones/zone1_file.txt zones/zone1_stdin.txt >/dev/null 2>&1 || ret=1
|
|
|
|
status=`expr $status + $ret`
|
|
|
|
|
|
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "exit status: $status"
|
2016-06-14 13:48:39 +10:00
|
|
|
[ $status -eq 0 ] || exit 1
|