1# $OpenBSD: ssh-com-sftp.sh,v 1.2 2002/04/10 08:45:30 markus Exp $ 2# Placed in the Public Domain. 3 4tid="basic sftp put/get with ssh.com server" 5 6DATA=/bin/ls 7COPY=${OBJ}/copy 8 9BUFFERSIZE="5 1000 32000 64000" 10REQUESTS="1 2 10" 11 12#TEST_COMBASE=/path/to/ssh/com/binaries 13if [ "X${TEST_COMBASE}" = "X" ]; then 14 fatal '$TEST_COMBASE is not set' 15fi 16 17VERSIONS=" 18 2.0.10 19 2.0.12 20 2.0.13 21 2.1.0 22 2.2.0 23 2.3.0 24 2.3.1 25 2.4.0 26 3.0.0 27 3.1.0" 28 29# go for it 30for v in ${VERSIONS}; do 31 server=${TEST_COMBASE}/${v}/sftp-server2 32 if [ ! -x ${server} ]; then 33 continue 34 fi 35 verbose "sftp-server $v" 36 for B in ${BUFFERSIZE}; do 37 for R in ${REQUESTS}; do 38 verbose "test $tid: buffer_size $B num_requests $R" 39 rm -f ${COPY}.1 ${COPY}.2 40 ${SFTP} -P ${server} -B $B -R $R -b /dev/stdin \ 41 > /dev/null 2>&1 << EOF 42 version 43 get $DATA ${COPY}.1 44 put $DATA ${COPY}.2 45EOF 46 r=$? 47 if [ $r -ne 0 ]; then 48 fail "sftp failed with $r" 49 fi 50 cmp $DATA ${COPY}.1 || fail "corrupted copy after get" 51 cmp $DATA ${COPY}.2 || fail "corrupted copy after put" 52 done 53 done 54done 55