diff options
Diffstat (limited to 'bin/tests/system/tcp/tests.sh')
-rw-r--r-- | bin/tests/system/tcp/tests.sh | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/bin/tests/system/tcp/tests.sh b/bin/tests/system/tcp/tests.sh new file mode 100644 index 0000000..89916d7 --- /dev/null +++ b/bin/tests/system/tcp/tests.sh @@ -0,0 +1,57 @@ +#!/bin/sh +# +# Copyright (C) Internet Systems Consortium, Inc. ("ISC") +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# See the COPYRIGHT file distributed with this work for additional +# information regarding copyright ownership. + +SYSTEMTESTTOP=.. +. $SYSTEMTESTTOP/conf.sh + +DIGOPTS="-p ${PORT}" +RNDCCMD="$RNDC -p ${CONTROLPORT} -c ../common/rndc.conf" + +status=0 + +echo_i "initialize counters" +$RNDCCMD -s 10.53.0.1 stats > /dev/null 2>&1 +$RNDCCMD -s 10.53.0.2 stats > /dev/null 2>&1 +ntcp10=`grep "TCP requests received" ns1/named.stats | tail -1 | awk '{print $1}'` +ntcp20=`grep "TCP requests received" ns2/named.stats | tail -1 | awk '{print $1}'` +#echo ntcp10 ':' "$ntcp10" +#echo ntcp20 ':' "$ntcp20" + +echo_i "check TCP transport" +ret=0 +$DIG $DIGOPTS @10.53.0.3 txt.example. > dig.out.3 +$RNDCCMD -s 10.53.0.1 stats > /dev/null 2>&1 +$RNDCCMD -s 10.53.0.2 stats > /dev/null 2>&1 +ntcp11=`grep "TCP requests received" ns1/named.stats | tail -1 | awk '{print $1}'` +ntcp21=`grep "TCP requests received" ns2/named.stats | tail -1 | awk '{print $1}'` +#echo ntcp11 ':' "$ntcp11" +#echo ntcp21 ':' "$ntcp21" +if [ "$ntcp10" -ge "$ntcp11" ]; then ret=1; fi +if [ "$ntcp20" -ne "$ntcp21" ]; then ret=1; fi +if [ $ret != 0 ]; then echo_i "failed"; fi +status=`expr $status + $ret` + +echo_i "check TCP forwarder" +ret=0 +$DIG $DIGOPTS @10.53.0.4 txt.example. > dig.out.4 +$RNDCCMD -s 10.53.0.1 stats > /dev/null 2>&1 +$RNDCCMD -s 10.53.0.2 stats > /dev/null 2>&1 +ntcp12=`grep "TCP requests received" ns1/named.stats | tail -1 | awk '{print $1}'` +ntcp22=`grep "TCP requests received" ns2/named.stats | tail -1 | awk '{print $1}'` +#echo ntcp12 ':' "$ntcp12" +#echo ntcp22 ':' "$ntcp22" +if [ "$ntcp11" -ne "$ntcp12" ]; then ret=1; fi +if [ "$ntcp21" -ge "$ntcp22" ];then ret=1; fi +if [ $ret != 0 ]; then echo_i "failed"; fi +status=`expr $status + $ret` + +echo_i "exit status: $status" +[ $status -eq 0 ] || exit 1 |