1#!/bin/sh
2#
3# Copyright (C) 2004, 2007, 2011, 2012  Internet Systems Consortium, Inc. ("ISC")
4# Copyright (C) 2000, 2001  Internet Software Consortium.
5#
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.
9#
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.
17
18# Id: tests.sh,v 1.19 2011/11/04 23:46:15 tbox Exp
19
20SYSTEMTESTTOP=..
21. $SYSTEMTESTTOP/conf.sh
22
23status=0
24
25echo "I:1000 A records"
26$DIG +tcp +norec 1000.example. @10.53.0.1 a -p 5300 > dig.out.1000 || status=1
27#dig 1000.example. @10.53.0.1 a -p 5300 > knowngood.dig.out.1000
28$PERL ../digcomp.pl knowngood.dig.out.1000 dig.out.1000 || status=1
29
30echo "I:2000 A records"
31$DIG +tcp +norec 2000.example. @10.53.0.1 a -p 5300 > dig.out.2000 || status=1
32#dig 2000.example. @10.53.0.1 a -p 5300 > knowngood.dig.out.2000
33$PERL ../digcomp.pl knowngood.dig.out.2000 dig.out.2000 || status=1
34
35echo "I:3000 A records"
36$DIG +tcp +norec 3000.example. @10.53.0.1 a -p 5300 > dig.out.3000 || status=1
37#dig 3000.example. @10.53.0.1 a -p 5300 > knowngood.dig.out.3000
38$PERL ../digcomp.pl knowngood.dig.out.3000 dig.out.3000 || status=1
39
40echo "I:4000 A records"
41$DIG +tcp +norec 4000.example. @10.53.0.1 a -p 5300 > dig.out.4000 || status=1
42#dig 4000.example. @10.53.0.1 a -p 5300 > knowngood.dig.out.4000
43$PERL ../digcomp.pl knowngood.dig.out.4000 dig.out.4000 || status=1
44
45echo "I:exactly maximum rrset"
46$DIG +tcp +norec +noedns a-maximum-rrset.example. @10.53.0.1 a -p 5300 > dig.out.a-maximum-rrset \
47	|| status=1
48#dig a-maximum-rrset.example. @10.53.0.1 a -p 5300 > knowngood.dig.out.a-maximum-rrset
49$PERL ../digcomp.pl knowngood.dig.out.a-maximum-rrset dig.out.a-maximum-rrset || status=1
50
51echo "I:exceed maximum rrset (5000 A records)"
52$DIG +tcp +norec +noadd 5000.example. @10.53.0.1 a -p 5300 > dig.out.exceed || status=1
53# Look for truncation bit (tc).
54grep 'flags: .*tc.*;' dig.out.exceed > /dev/null || {
55    echo "I:TC bit was not set"
56    status=1
57}
58
59echo "I:exit status: $status"
60exit $status
61