2013-03-20 14:31:10 -07:00
|
|
|
#!/bin/sh
|
2013-03-21 23:46:12 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
|
2013-03-20 14:31:10 -07:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
SYSTEMTESTTOP=..
|
|
|
|
. $SYSTEMTESTTOP/conf.sh
|
|
|
|
|
|
|
|
COVERAGE="$COVERAGE -c ./named-compilezone"
|
|
|
|
|
|
|
|
status=0
|
|
|
|
n=1
|
|
|
|
|
|
|
|
matchall () {
|
|
|
|
file=$1
|
|
|
|
echo "$2" | while read matchline; do
|
|
|
|
grep "$matchline" $file > /dev/null 2>&1 || {
|
|
|
|
echo "FAIL"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "I:checking for DNSSEC key coverage issues"
|
|
|
|
ret=0
|
|
|
|
for dir in [0-9][0-9]-*; do
|
|
|
|
ret=0
|
|
|
|
echo "I:$dir"
|
|
|
|
args= warn= error= ok= retcode= match=
|
|
|
|
. $dir/expect
|
|
|
|
$COVERAGE $args -K $dir example.com > coverage.$n 2>&1
|
|
|
|
|
|
|
|
# check that return code matches expectations
|
|
|
|
[ $? -eq $retcode ] || ret=1
|
|
|
|
|
|
|
|
# check for correct number of errors
|
|
|
|
found=`grep ERROR coverage.$n | wc -l`
|
|
|
|
[ $found -eq $error ] || ret=1
|
|
|
|
|
|
|
|
# check for correct number of warnings
|
|
|
|
found=`grep WARNING coverage.$n | wc -l`
|
|
|
|
[ $found -eq $warn ] || ret=1
|
|
|
|
|
|
|
|
# check for correct number of OKs
|
|
|
|
found=`grep "No errors found" coverage.$n | wc -l`
|
|
|
|
[ $found -eq $ok ] || ret=1
|
|
|
|
|
|
|
|
found=`matchall coverage.$n "$match"`
|
|
|
|
[ "$found" = "FAIL" ] && ret=1
|
|
|
|
|
|
|
|
n=`expr $n + 1`
|
|
|
|
if [ $ret != 0 ]; then echo "I:failed"; fi
|
|
|
|
status=`expr $status + $ret`
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "I:exit status: $status"
|
|
|
|
exit $status
|