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.10 2007/06/19 23:47:06 tbox Exp
21 .
$SYSTEMTESTTOP/conf.sh
25 DIGOPTS
="@10.53.0.1 -p 5300"
27 echo "I:querying for various representations of an IN A record"
28 for i
in 1 2 3 4 5 6 7 8 9 10 11 12
31 $DIG +short
$DIGOPTS a
$i.example a
in > dig.out || ret
=1
32 echo 10.0.0.1 |
diff - dig.out || ret
=1
37 status
=`expr $status + $ret`
40 echo "I:querying for various representations of an IN TXT record"
41 for i
in 1 2 3 4 5 6 7
44 $DIG +short
$DIGOPTS txt
$i.example txt
in > dig.out || ret
=1
45 echo '"hello"' |
diff - dig.out || ret
=1
50 status
=`expr $status + $ret`
53 echo "I:querying for various representations of an IN TYPE123 record"
57 $DIG +short
$DIGOPTS unk
$i.example type123
in > dig.out || ret
=1
58 echo '\# 1 00' |
diff - dig.out || ret
=1
63 status
=`expr $status + $ret`
66 echo "I:querying for various representations of a CLASS10 TYPE1 record"
70 $DIG +short
$DIGOPTS a
$i.example a class10
> dig.out || ret
=1
71 echo '\# 4 0A000001' |
diff - dig.out || ret
=1
76 status
=`expr $status + $ret`
79 echo "I:querying for various representations of a CLASS10 TXT record"
83 $DIG +short
$DIGOPTS txt
$i.example txt class10
> dig.out || ret
=1
84 echo '"hello"' |
diff - dig.out || ret
=1
89 status
=`expr $status + $ret`
92 echo "I:querying for various representations of a CLASS10 TYPE123 record"
96 $DIG +short
$DIGOPTS unk
$i.example type123 class10
> dig.out || ret
=1
97 echo '\# 1 00' |
diff - dig.out || ret
=1
102 status
=`expr $status + $ret`
105 echo "I:querying for SOAs of zone that should have failed to load"
109 $DIG $DIGOPTS broken
$i. soa
in > dig.out || ret
=1
110 grep "SERVFAIL" dig.out
> /dev
/null || ret
=1
115 status
=`expr $status + $ret`
118 echo "I:exit status: $status"