3 # Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
5 # Permission to use, copy, modify, and/or distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
9 # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10 # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11 # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12 # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13 # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15 # PERFORMANCE OF THIS SOFTWARE.
17 # Id: tests.sh,v 1.5 2007/06/19 23:47:01 tbox Exp
20 .
$SYSTEMTESTTOP/conf.sh
25 DIGOPTS
="+tcp +noadd +nosea +nostat +nocmd -p 5300"
28 echo "I: check for failure from on zone load for 'check-names fail;' ($n)"
30 $DIG $DIGOPTS fail.example. @
10.53.0.1 a
> dig.out.ns1.
test$n || ret
=1
31 grep SERVFAIL
dig.out.ns1.
test$n > /dev
/null || ret
=1
32 grep 'xx_xx.fail.example: bad owner name (check-names)' ns
1/named.run
> /dev
/null || ret
=1
33 if [ $ret != 0 ]; then echo "I:failed"; fi
34 status
=`expr $status + $ret`
38 echo "I: check for warnings from on zone load for 'check-names warn;' ($n)"
40 grep 'xx_xx.warn.example: bad owner name (check-names)' ns
1/named.run
> /dev
/null || ret
=1
41 if [ $ret != 0 ]; then echo "I:failed"; fi
42 status
=`expr $status + $ret`
45 # Entry should not exist.
46 echo "I: check for warnings from on zone load for 'check-names ignore;' ($n)"
48 grep 'yy_yy.ignore.example: bad owner name (check-names)' ns
1/named.run || ret
=0
49 if [ $ret != 0 ]; then echo "I:failed"; fi
50 status
=`expr $status + $ret`
54 echo "I: check that 'check-names response warn;' works ($n)"
56 $DIG $DIGOPTS yy_yy.ignore.example. @
10.53.0.1 a
> dig.out.ns1.
test$n || ret
=1
57 $DIG $DIGOPTS yy_yy.ignore.example. @
10.53.0.2 a
> dig.out.ns2.
test$n || ret
=1
58 $PERL ..
/digcomp.pl
dig.out.ns1.
test$n dig.out.ns2.
test$n || ret
=1
59 grep "check-names warning yy_yy.ignore.example/A/IN" ns
2/named.run
> /dev
/null || ret
=1
60 if [ $ret != 0 ]; then echo "I:failed"; fi
61 status
=`expr $status + $ret`
65 echo "I: check that 'check-names response (owner) fails;' works ($n)"
67 $DIG $DIGOPTS yy_yy.ignore.example. @
10.53.0.1 a
> dig.out.ns1.
test$n || ret
=1
68 $DIG $DIGOPTS yy_yy.ignore.example. @
10.53.0.3 a
> dig.out.ns3.
test$n || ret
=1
69 grep NOERROR
dig.out.ns1.
test$n > /dev
/null || ret
=1
70 grep REFUSED
dig.out.ns3.
test$n > /dev
/null || ret
=1
71 grep "check-names failure yy_yy.ignore.example/A/IN" ns
3/named.run
> /dev
/null || ret
=1
72 if [ $ret != 0 ]; then echo "I:failed"; fi
73 status
=`expr $status + $ret`
77 echo "I: check that 'check-names response (rdata) fails;' works ($n)"
79 $DIG $DIGOPTS mx.ignore.example. @
10.53.0.1 MX
> dig.out.ns1.
test$n || ret
=1
80 $DIG $DIGOPTS mx.ignore.example. @
10.53.0.3 MX
> dig.out.ns3.
test$n || ret
=1
81 grep NOERROR
dig.out.ns1.
test$n > /dev
/null || ret
=1
82 grep SERVFAIL
dig.out.ns3.
test$n > /dev
/null || ret
=1
83 grep "check-names failure mx.ignore.example/MX/IN" ns
3/named.run
> /dev
/null || ret
=1
84 if [ $ret != 0 ]; then echo "I:failed"; fi
85 status
=`expr $status + $ret`
88 echo "I: check that updates to 'check-names fail;' are rejected ($n)"
91 $NSUPDATE -d <<END> nsupdate.out.test$n 2>&1 || not=0
93 update add xxx_xxx.fail.update. 600 A 10.10.10.1
96 if [ $not != 0 ]; then ret
=1; fi
97 $DIG $DIGOPTS xxx_xxx.fail.update @
10.53.0.1 A
> dig.out.ns1.
test$n || ret
=1
98 grep "xxx_xxx.fail.update/A: bad owner name (check-names)" ns
1/named.run
> /dev
/null || ret
=1
99 grep NXDOMAIN
dig.out.ns1.
test$n > /dev
/null || ret
=1
100 if [ $ret != 0 ]; then echo "I:failed"; fi
101 status
=`expr $status + $ret`
104 echo "I: check that updates to 'check-names warn;' succeed and are logged ($n)"
106 $NSUPDATE -d <<END> nsupdate.out.test$n 2>&1|| ret=1
107 server 10.53.0.1 5300
108 update add xxx_xxx.warn.update. 600 A 10.10.10.1
111 $DIG $DIGOPTS xxx_xxx.warn.update @
10.53.0.1 A
> dig.out.ns1.
test$n || ret
=1
112 grep "xxx_xxx.warn.update/A: bad owner name (check-names)" ns
1/named.run
> /dev
/null || ret
=1
113 grep NOERROR
dig.out.ns1.
test$n > /dev
/null || ret
=1
114 if [ $ret != 0 ]; then echo "I:failed"; fi
115 status
=`expr $status + $ret`
118 echo "I: check that updates to 'check-names ignore;' succeed and are not logged ($n)"
121 $NSUPDATE -d <<END> nsupdate.out.test$n 2>&1 || ret=1
122 server 10.53.0.1 5300
123 update add xxx_xxx.ignore.update. 600 A 10.10.10.1
126 grep "xxx_xxx.ignore.update/A.*(check-names)" ns
1/named.run
> /dev
/null || not
=0
127 if [ $not != 0 ]; then ret
=1; fi
128 $DIG $DIGOPTS xxx_xxx.ignore.update @
10.53.0.1 A
> dig.out.ns1.
test$n || ret
=1
129 grep NOERROR
dig.out.ns1.
test$n > /dev
/null || ret
=1
130 if [ $ret != 0 ]; then echo "I:failed"; fi
131 status
=`expr $status + $ret`