3 # Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
4 # Copyright (C) 2000, 2001 Internet Software Consortium.
6 # Permission to use, copy, modify, and/or distribute this software for any
7 # purpose with or without fee is hereby granted, provided that the above
8 # copyright notice and this permission notice appear in all copies.
10 # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11 # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12 # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13 # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14 # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16 # PERFORMANCE OF THIS SOFTWARE.
18 # Id: tests.sh,v 1.30 2007/06/19 23:47:06 tbox Exp
21 .
$SYSTEMTESTTOP/conf.sh
25 echo "I:fetching a.example from ns2's initial configuration"
26 $DIG +tcp
+noadd
+nosea
+nostat
+noquest
+nocomm
+nocmd
+noauth \
27 a.example. @
10.53.0.2 any
-p 5300 > dig.out.ns2.1 || status
=1
28 grep ";" dig.out.ns2.1
# XXXDCL why is this here?
30 echo "I:fetching a.example from ns3's initial configuration"
31 $DIG +tcp
+noadd
+nosea
+nostat
+noquest
+nocomm
+nocmd
+noauth \
32 a.example. @
10.53.0.3 any
-p 5300 > dig.out.ns3.1 || status
=1
33 grep ";" dig.out.ns3.1
# XXXDCL why is this here?
35 echo "I:copying in new configurations for ns2 and ns3"
36 rm -f ns
2/named.conf ns
3/named.conf ns
2/example.db
37 cp -f ns
2/named2.conf ns
2/named.conf
38 cp -f ns
3/named2.conf ns
3/named.conf
39 cp -f ns
2/example2.db ns
2/example.db
41 echo "I:reloading ns2 and ns3 with rndc"
42 $RNDC -c ..
/common
/rndc.conf
-s 10.53.0.2 -p 9953 reload
2>&1 |
sed 's/^/I:ns2 /'
43 $RNDC -c ..
/common
/rndc.conf
-s 10.53.0.3 -p 9953 reload
2>&1 |
sed 's/^/I:ns3 /'
45 echo "I:sleeping for 20 seconds"
48 echo "I:fetching a.example from ns2's 10.53.0.4, source address 10.53.0.4"
49 $DIG +tcp
+noadd
+nosea
+nostat
+noquest
+nocomm
+nocmd
+noauth \
50 -b 10.53.0.4 a.example. @
10.53.0.4 any
-p 5300 > dig.out.ns4.2 \
52 grep ";" dig.out.ns4.2
# XXXDCL why is this here?
54 echo "I:fetching a.example from ns2's 10.53.0.2, source address 10.53.0.2"
55 $DIG +tcp
+noadd
+nosea
+nostat
+noquest
+nocomm
+nocmd
+noauth \
56 -b 10.53.0.2 a.example. @
10.53.0.2 any
-p 5300 > dig.out.ns2.2 \
58 grep ";" dig.out.ns2.2
# XXXDCL why is this here?
60 echo "I:fetching a.example from ns3's 10.53.0.3, source address defaulted"
61 $DIG +tcp
+noadd
+nosea
+nostat
+noquest
+nocomm
+nocmd
+noauth \
62 @
10.53.0.3 a.example. any
-p 5300 > dig.out.ns3.2 || status
=1
63 grep ";" dig.out.ns3.2
# XXXDCL why is this here?
65 echo "I:comparing ns3's initial a.example to one from reconfigured 10.53.0.2"
66 $PERL ..
/digcomp.pl
dig.out.ns3.1
dig.out.ns2.2 || status
=1
68 echo "I:comparing ns3's initial a.example to one from reconfigured 10.53.0.3"
69 $PERL ..
/digcomp.pl
dig.out.ns3.1
dig.out.ns3.2 || status
=1
71 echo "I:comparing ns2's initial a.example to one from reconfigured 10.53.0.4"
72 $PERL ..
/digcomp.pl
dig.out.ns2.1
dig.out.ns4.2 || status
=1
74 echo "I:comparing ns2's initial a.example to one from reconfigured 10.53.0.3"
75 echo "I:(should be different)"
76 if $PERL ..
/digcomp.pl
dig.out.ns2.1
dig.out.ns3.2
>/dev
/null
78 echo "I:no differences found. something's wrong."
82 echo "I:exit status: $status"