Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / bind / dist / bin / tests / system / unknown / tests.sh
blobedb3f0a07adb21fe54abc1a23c6cb2dc61e79c1e
1 #!/bin/sh
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
20 SYSTEMTESTTOP=..
21 . $SYSTEMTESTTOP/conf.sh
23 status=0
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
30 ret=0
31 $DIG +short $DIGOPTS a$i.example a in > dig.out || ret=1
32 echo 10.0.0.1 | diff - dig.out || ret=1
33 if [ $ret != 0 ]
34 then
35 echo "#$i failed"
37 status=`expr $status + $ret`
38 done
40 echo "I:querying for various representations of an IN TXT record"
41 for i in 1 2 3 4 5 6 7
43 ret=0
44 $DIG +short $DIGOPTS txt$i.example txt in > dig.out || ret=1
45 echo '"hello"' | diff - dig.out || ret=1
46 if [ $ret != 0 ]
47 then
48 echo "#$i failed"
50 status=`expr $status + $ret`
51 done
53 echo "I:querying for various representations of an IN TYPE123 record"
54 for i in 1 2 3
56 ret=0
57 $DIG +short $DIGOPTS unk$i.example type123 in > dig.out || ret=1
58 echo '\# 1 00' | diff - dig.out || ret=1
59 if [ $ret != 0 ]
60 then
61 echo "#$i failed"
63 status=`expr $status + $ret`
64 done
66 echo "I:querying for various representations of a CLASS10 TYPE1 record"
67 for i in 1 2
69 ret=0
70 $DIG +short $DIGOPTS a$i.example a class10 > dig.out || ret=1
71 echo '\# 4 0A000001' | diff - dig.out || ret=1
72 if [ $ret != 0 ]
73 then
74 echo "#$i failed"
76 status=`expr $status + $ret`
77 done
79 echo "I:querying for various representations of a CLASS10 TXT record"
80 for i in 1 2 3 4
82 ret=0
83 $DIG +short $DIGOPTS txt$i.example txt class10 > dig.out || ret=1
84 echo '"hello"' | diff - dig.out || ret=1
85 if [ $ret != 0 ]
86 then
87 echo "#$i failed"
89 status=`expr $status + $ret`
90 done
92 echo "I:querying for various representations of a CLASS10 TYPE123 record"
93 for i in 1 2
95 ret=0
96 $DIG +short $DIGOPTS unk$i.example type123 class10 > dig.out || ret=1
97 echo '\# 1 00' | diff - dig.out || ret=1
98 if [ $ret != 0 ]
99 then
100 echo "#$i failed"
102 status=`expr $status + $ret`
103 done
105 echo "I:querying for SOAs of zone that should have failed to load"
106 for i in 1 2 3 4
108 ret=0
109 $DIG $DIGOPTS broken$i. soa in > dig.out || ret=1
110 grep "SERVFAIL" dig.out > /dev/null || ret=1
111 if [ $ret != 0 ]
112 then
113 echo "#$i failed"
115 status=`expr $status + $ret`
116 done
118 echo "I:exit status: $status"
119 exit $status