4077. [test] Add static-stub regression test for DS NXDOMAIN

return making the static stub disappear. [RT #38564]

(cherry picked from commit be9720ae2c)
This commit is contained in:
Mark Andrews
2015-02-27 12:46:45 +11:00
parent b7d7ce54e7
commit f0d388e561
7 changed files with 79 additions and 8 deletions

View File

@@ -57,3 +57,8 @@ zone "example.org" {
type master;
file "example.org.db";
};
zone "undelegated" {
type master;
file "undelegated.db.signed";
};

View File

@@ -42,4 +42,24 @@ trusted-keys {
};
EOF
' > trusted.conf
zone=undelegated
infile=undelegated.db.in
zonefile=undelegated.db
keyname1=`$KEYGEN -q -r $RANDFILE -a RSASHA256 -b 1024 -n zone $zone`
keyname2=`$KEYGEN -q -r $RANDFILE -a RSASHA256 -b 2048 -f KSK -n zone $zone`
cat $infile $keyname1.key $keyname2.key > $zonefile
$SIGNER -g -r $RANDFILE -o $zone $zonefile > /dev/null 2>&1
cat $keyname2.key | grep -v '^; ' | $PERL -n -e '
local ($dn, $class, $type, $flags, $proto, $alg, @rest) = split;
local $key = join("", @rest);
print <<EOF
trusted-keys {
"$dn" $flags $proto $alg "$key";
};
EOF
' >> trusted.conf
cp trusted.conf ../ns2/trusted.conf

View File

@@ -0,0 +1,26 @@
; Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
; copyright notice and this permission notice appear in all copies.
;
; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
; AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
; INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
; LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
; OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
; PERFORMANCE OF THIS SOFTWARE.
$TTL 300 ; 5 minutes
undelegated. IN SOA ns3.undelegated. hostmaster.undelegated. (
2010080900 ; serial
20 ; refresh (20 seconds)
20 ; retry (20 seconds)
1814400 ; expire (3 weeks)
3600 ; minimum (1 hour)
)
undelegated. NS ns3.undelegated.
undelegated. A 10.53.0.4
undelegated. AAAA ::1
ns3.undelegated. A 10.53.0.3