1#!/bin/sh
2#
3# Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
4#
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.
8#
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.
16
17# $Id: tests.sh,v 1.5 2007/06/19 23:47:01 tbox Exp $
18
19SYSTEMTESTTOP=..
20. $SYSTEMTESTTOP/conf.sh
21
22status=0
23n=1
24
25DIGOPTS="+tcp +noadd +nosea +nostat +nocmd -p 5300"
26
27# Entry should exist.
28echo "I: check for failure from on zone load for 'check-names fail;' ($n)"
29ret=0
30$DIG $DIGOPTS fail.example. @10.53.0.1 a > dig.out.ns1.test$n || ret=1
31grep SERVFAIL dig.out.ns1.test$n > /dev/null || ret=1
32grep 'xx_xx.fail.example: bad owner name (check-names)' ns1/named.run > /dev/null || ret=1
33if [ $ret != 0 ]; then echo "I:failed"; fi
34status=`expr $status + $ret`
35n=`expr $n + 1`
36
37# Entry should exist.
38echo "I: check for warnings from on zone load for 'check-names warn;' ($n)"
39ret=0
40grep 'xx_xx.warn.example: bad owner name (check-names)' ns1/named.run > /dev/null || ret=1
41if [ $ret != 0 ]; then echo "I:failed"; fi
42status=`expr $status + $ret`
43n=`expr $n + 1`
44
45# Entry should not exist.
46echo "I: check for warnings from on zone load for 'check-names ignore;' ($n)"
47ret=1
48grep 'yy_yy.ignore.example: bad owner name (check-names)' ns1/named.run || ret=0
49if [ $ret != 0 ]; then echo "I:failed"; fi
50status=`expr $status + $ret`
51n=`expr $n + 1`
52
53# Entry should exist
54echo "I: check that 'check-names response warn;' works ($n)"
55ret=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
59grep "check-names warning yy_yy.ignore.example/A/IN" ns2/named.run > /dev/null || ret=1
60if [ $ret != 0 ]; then echo "I:failed"; fi
61status=`expr $status + $ret`
62n=`expr $n + 1`
63
64# Entry should exist
65echo "I: check that 'check-names response (owner) fails;' works ($n)"
66ret=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
69grep NOERROR dig.out.ns1.test$n > /dev/null || ret=1
70grep REFUSED dig.out.ns3.test$n > /dev/null || ret=1
71grep "check-names failure yy_yy.ignore.example/A/IN" ns3/named.run > /dev/null || ret=1
72if [ $ret != 0 ]; then echo "I:failed"; fi
73status=`expr $status + $ret`
74n=`expr $n + 1`
75
76# Entry should exist
77echo "I: check that 'check-names response (rdata) fails;' works ($n)"
78ret=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
81grep NOERROR dig.out.ns1.test$n > /dev/null || ret=1
82grep SERVFAIL dig.out.ns3.test$n > /dev/null || ret=1
83grep "check-names failure mx.ignore.example/MX/IN" ns3/named.run > /dev/null || ret=1
84if [ $ret != 0 ]; then echo "I:failed"; fi
85status=`expr $status + $ret`
86n=`expr $n + 1`
87
88echo "I: check that updates to 'check-names fail;' are rejected ($n)"
89ret=0
90not=1
91$NSUPDATE -d <<END> nsupdate.out.test$n 2>&1 || not=0
92server 10.53.0.1 5300
93update add xxx_xxx.fail.update. 600 A 10.10.10.1
94send
95END
96if [ $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
98grep "xxx_xxx.fail.update/A: bad owner name (check-names)" ns1/named.run > /dev/null || ret=1
99grep NXDOMAIN dig.out.ns1.test$n > /dev/null || ret=1
100if [ $ret != 0 ]; then echo "I:failed"; fi
101status=`expr $status + $ret`
102n=`expr $n + 1`
103
104echo "I: check that updates to 'check-names warn;' succeed and are logged ($n)"
105ret=0
106$NSUPDATE -d <<END> nsupdate.out.test$n  2>&1|| ret=1
107server 10.53.0.1 5300
108update add xxx_xxx.warn.update. 600 A 10.10.10.1
109send
110END
111$DIG $DIGOPTS xxx_xxx.warn.update @10.53.0.1 A > dig.out.ns1.test$n || ret=1
112grep "xxx_xxx.warn.update/A: bad owner name (check-names)" ns1/named.run > /dev/null || ret=1
113grep NOERROR dig.out.ns1.test$n > /dev/null || ret=1
114if [ $ret != 0 ]; then echo "I:failed"; fi
115status=`expr $status + $ret`
116n=`expr $n + 1`
117
118echo "I: check that updates to 'check-names ignore;' succeed and are not logged ($n)"
119ret=0
120not=1
121$NSUPDATE -d <<END> nsupdate.out.test$n 2>&1 || ret=1
122server 10.53.0.1 5300
123update add xxx_xxx.ignore.update. 600 A 10.10.10.1
124send
125END
126grep "xxx_xxx.ignore.update/A.*(check-names)" ns1/named.run > /dev/null || not=0
127if [ $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
129grep NOERROR dig.out.ns1.test$n > /dev/null || ret=1
130if [ $ret != 0 ]; then echo "I:failed"; fi
131status=`expr $status + $ret`
132n=`expr $n + 1`
133
134exit $status
135