summaryrefslogtreecommitdiff
path: root/regress/usr.bin/ssh/banner.sh
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2003-10-11 11:49:50 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2003-10-11 11:49:50 +0000
commited482001e4107c564aad5ade4249f83114f5cfab (patch)
treeeb2f9cefaa8e37147d8d0bf3175e27fec171dae1 /regress/usr.bin/ssh/banner.sh
parentda65f4cd325900fbffa3144929d070b0b15d7684 (diff)
Test missing banner file, suppression of banner with ssh -q, check return
code from ssh. ok markus@
Diffstat (limited to 'regress/usr.bin/ssh/banner.sh')
-rw-r--r--regress/usr.bin/ssh/banner.sh25
1 files changed, 19 insertions, 6 deletions
diff --git a/regress/usr.bin/ssh/banner.sh b/regress/usr.bin/ssh/banner.sh
index 03e2fc8f15b..0b9c9500749 100644
--- a/regress/usr.bin/ssh/banner.sh
+++ b/regress/usr.bin/ssh/banner.sh
@@ -1,13 +1,21 @@
-# $OpenBSD: banner.sh,v 1.1 2003/10/07 01:52:13 dtucker Exp $
+# $OpenBSD: banner.sh,v 1.2 2003/10/11 11:49:49 dtucker Exp $
# Placed in the Public Domain.
tid="banner"
echo "Banner $OBJ/banner.in" >> $OBJ/sshd_proxy
+rm -f $OBJ/banner.out $OBJ/banner.in $OBJ/empty.in
+touch $OBJ/empty.in
+
+trace "test missing banner file"
+verbose "test $tid: missing banner file"
+( ${SSH} -2 -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \
+ cmp $OBJ/empty.in $OBJ/banner.out ) || \
+ fail "missing banner file"
+
for s in 0 10 100 1000 10000 100000 ; do
if [ "$s" = "0" ]; then
# create empty banner
- rm -f $OBJ/banner.in
touch $OBJ/banner.in
elif [ "$s" = "10" ]; then
# create 10-byte banner file
@@ -22,10 +30,15 @@ for s in 0 10 100 1000 10000 100000 ; do
trace "test banner size $s"
verbose "test $tid: size $s"
- ${SSH} -2 -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out
- if ! cmp $OBJ/banner.in $OBJ/banner.out ; then
+ ( ${SSH} -2 -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \
+ cmp $OBJ/banner.in $OBJ/banner.out ) || \
fail "banner size $s mismatch"
- fi
done
-rm -f $OBJ/banner.out $OBJ/banner.in
+trace "test suppress banner (-q)"
+verbose "test $tid: suppress banner (-q)"
+( ${SSH} -q -2 -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \
+ cmp $OBJ/empty.in $OBJ/banner.out ) || \
+ fail "suppress banner (-q)"
+
+rm -f $OBJ/banner.out $OBJ/banner.in $OBJ/empty.in