1# $OpenBSD: ssh-com-sftp.sh,v 1.4 2003/05/14 22:08:27 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 3.2.0 29 3.2.2 30 3.2.3 31 3.3.0" 32 33# go for it 34for v in ${VERSIONS}; do 35 server=${TEST_COMBASE}/${v}/sftp-server2 36 if [ ! -x ${server} ]; then 37 continue 38 fi 39 verbose "sftp-server $v" 40 for B in ${BUFFERSIZE}; do 41 for R in ${REQUESTS}; do 42 verbose "test $tid: buffer_size $B num_requests $R" 43 rm -f ${COPY}.1 ${COPY}.2 44 ${SFTP} -P ${server} -B $B -R $R -b /dev/stdin \ 45 > /dev/null 2>&1 << EOF 46 version 47 get $DATA ${COPY}.1 48 put $DATA ${COPY}.2 49EOF 50 r=$? 51 if [ $r -ne 0 ]; then 52 fail "sftp failed with $r" 53 fi 54 cmp $DATA ${COPY}.1 || fail "corrupted copy after get" 55 cmp $DATA ${COPY}.2 || fail "corrupted copy after put" 56 done 57 done 58done 59