tests.sh revision 67adc03ef81fb610f8df093b17f55275ee816754
# Copyright (C) 2005, 2007, 2010-2012 Internet Systems Consortium, Inc. ("ISC")
#
# 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.
# $Id$
status=0
echo "I: checking that named-checkconf handles a known good config"
ret=0
echo "I: checking that named-checkconf prints a known good config"
ret=0
do
ret=0
echo "I: checking that named-checkconf detects error in $bad"
done
echo "I: checking that named-checkconf catches range errors"
ret=0
echo "I: checking named-checkconf dnssec warnings"
ret=0
# this one should have no warnings
echo "I: range checking fields that do not allow zero"
ret=0
cat > badzero.conf << EOF
options {
$field 0;
};
EOF
cat > badzero.conf << EOF
view dummy {
$field 0;
};
EOF
cat > badzero.conf << EOF
options {
$field 0;
};
view dummy {
};
EOF
cat > badzero.conf << EOF
zone dummy {
type slave;
masters { 0.0.0.0; };
$field 0;
};
EOF
done
echo "I: checking options allowed in inline-signing slaves"
ret=0
echo "I: checking named-checkconf DLZ warnings"
ret=0
echo "I:exit status: $status"
exit $status