]> andersk Git - openssh.git/blame - regress/sftp-badcmds.sh
- (tim) [defines.h] openbsd-compat/readpassphrase.c now needs _NSIG.
[openssh.git] / regress / sftp-badcmds.sh
CommitLineData
6c8ebe98 1# $OpenBSD: sftp-badcmds.sh,v 1.4 2009/08/13 01:11:55 djm Exp $
1d6c0b69 2# Placed in the Public Domain.
3
4tid="sftp invalid commands"
5
83d96134 6DATA=/bin/ls${EXEEXT}
006cb311 7DATA2=/bin/sh${EXEEXT}
1d6c0b69 8NONEXIST=/NONEXIST.$$
9COPY=${OBJ}/copy
10GLOBFILES=`(cd /bin;echo l*)`
11
2b1bb684 12rm -rf ${COPY} ${COPY}.1 ${COPY}.2 ${COPY}.dd
1d6c0b69 13
14rm -f ${COPY}
15verbose "$tid: get nonexistent"
6c8ebe98 16echo "get $NONEXIST $COPY" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \
1d6c0b69 17 || fail "get nonexistent failed"
18test -f ${COPY} && fail "existing copy after get nonexistent"
19
20rm -f ${COPY}.dd/*
21verbose "$tid: glob get to nonexistent directory"
6c8ebe98 22echo "get /bin/l* $NONEXIST" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \
1d6c0b69 23 || fail "get nonexistent failed"
24for x in $GLOBFILES; do
25 test -f ${COPY}.dd/$x && fail "existing copy after get nonexistent"
26done
27
28rm -f ${COPY}
29verbose "$tid: put nonexistent"
6c8ebe98 30echo "put $NONEXIST $COPY" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \
1d6c0b69 31 || fail "put nonexistent failed"
32test -f ${COPY} && fail "existing copy after put nonexistent"
33
34rm -f ${COPY}.dd/*
35verbose "$tid: glob put to nonexistent directory"
6c8ebe98 36echo "put /bin/l* ${COPY}.dd" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \
1d6c0b69 37 || fail "put nonexistent failed"
38for x in $GLOBFILES; do
39 test -f ${COPY}.dd/$x && fail "existing copy after nonexistent"
40done
41
42rm -f ${COPY}
43verbose "$tid: rename nonexistent"
6c8ebe98 44echo "rename $NONEXIST ${COPY}.1" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \
1d6c0b69 45 || fail "rename nonexist failed"
46test -f ${COPY}.1 && fail "file exists after rename nonexistent"
47
1d6c0b69 48rm -rf ${COPY} ${COPY}.dd
49cp $DATA $COPY
50mkdir ${COPY}.dd
51verbose "$tid: rename target exists (directory)"
6c8ebe98 52echo "rename $COPY ${COPY}.dd" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \
1d6c0b69 53 || fail "rename target exists (directory) failed"
54test -f ${COPY} || fail "oldname missing after rename target exists (directory)"
55test -d ${COPY}.dd || fail "newname missing after rename target exists (directory)"
56cmp $DATA ${COPY} >/dev/null 2>&1 || fail "corrupted oldname after rename target exists (directory)"
57
58rm -f ${COPY}.dd/*
59rm -rf ${COPY}
60cp ${DATA2} ${COPY}
61verbose "$tid: glob put files to local file"
6c8ebe98 62echo "put /bin/l* $COPY" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1
1d6c0b69 63cmp ${DATA2} ${COPY} || fail "put successed when it should have failed"
64
2b1bb684 65rm -rf ${COPY} ${COPY}.1 ${COPY}.2 ${COPY}.dd
1d6c0b69 66
67
This page took 1.335554 seconds and 5 git commands to generate.