No empty .Rs/.Re
[netbsd-mini2440.git] / external / bsd / bind / dist / bin / tests / system / checknames / tests.sh
blob0d1b7208a9995b4acad5d3bed3862ad0dccf6b20
1 #!/bin/sh
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
19 SYSTEMTESTTOP=..
20 . $SYSTEMTESTTOP/conf.sh
22 status=0
23 n=1
25 DIGOPTS="+tcp +noadd +nosea +nostat +nocmd -p 5300"
27 # Entry should exist.
28 echo "I: check for failure from on zone load for 'check-names fail;' ($n)"
29 ret=0
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)' ns1/named.run > /dev/null || ret=1
33 if [ $ret != 0 ]; then echo "I:failed"; fi
34 status=`expr $status + $ret`
35 n=`expr $n + 1`
37 # Entry should exist.
38 echo "I: check for warnings from on zone load for 'check-names warn;' ($n)"
39 ret=0
40 grep 'xx_xx.warn.example: bad owner name (check-names)' ns1/named.run > /dev/null || ret=1
41 if [ $ret != 0 ]; then echo "I:failed"; fi
42 status=`expr $status + $ret`
43 n=`expr $n + 1`
45 # Entry should not exist.
46 echo "I: check for warnings from on zone load for 'check-names ignore;' ($n)"
47 ret=1
48 grep 'yy_yy.ignore.example: bad owner name (check-names)' ns1/named.run || ret=0
49 if [ $ret != 0 ]; then echo "I:failed"; fi
50 status=`expr $status + $ret`
51 n=`expr $n + 1`
53 # Entry should exist
54 echo "I: check that 'check-names response warn;' works ($n)"
55 ret=0
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" ns2/named.run > /dev/null || ret=1
60 if [ $ret != 0 ]; then echo "I:failed"; fi
61 status=`expr $status + $ret`
62 n=`expr $n + 1`
64 # Entry should exist
65 echo "I: check that 'check-names response (owner) fails;' works ($n)"
66 ret=0
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" ns3/named.run > /dev/null || ret=1
72 if [ $ret != 0 ]; then echo "I:failed"; fi
73 status=`expr $status + $ret`
74 n=`expr $n + 1`
76 # Entry should exist
77 echo "I: check that 'check-names response (rdata) fails;' works ($n)"
78 ret=0
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" ns3/named.run > /dev/null || ret=1
84 if [ $ret != 0 ]; then echo "I:failed"; fi
85 status=`expr $status + $ret`
86 n=`expr $n + 1`
88 echo "I: check that updates to 'check-names fail;' are rejected ($n)"
89 ret=0
90 not=1
91 $NSUPDATE -d <<END> nsupdate.out.test$n 2>&1 || not=0
92 server 10.53.0.1 5300
93 update add xxx_xxx.fail.update. 600 A 10.10.10.1
94 send
95 END
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)" ns1/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`
102 n=`expr $n + 1`
104 echo "I: check that updates to 'check-names warn;' succeed and are logged ($n)"
105 ret=0
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
109 send
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)" ns1/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`
116 n=`expr $n + 1`
118 echo "I: check that updates to 'check-names ignore;' succeed and are not logged ($n)"
119 ret=0
120 not=1
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
124 send
126 grep "xxx_xxx.ignore.update/A.*(check-names)" ns1/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`
132 n=`expr $n + 1`
134 exit $status