summaryrefslogtreecommitdiff
path: root/regress/multiplex.sh
blob: 70a4e677f311c1d637911322ae4cb5c5d52e0579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#	$OpenBSD: multiplex.sh,v 1.1 2004/06/13 15:04:08 djm Exp $
#	Placed in the Public Domain.

CTL=$OBJ/ctl-sock

tid="connection multiplexing"

start_sshd

trace "start master, fork to background"
${SSH} -2 -MS$CTL -F $OBJ/ssh_config -f somehost sleep 60

trace "ssh transfer over multiplexed connection and check result"
${SSH} -S$CTL otherhost cat /bin/ls > $OBJ/ls.copy
test -f $OBJ/ls.copy			|| fail "failed copy /bin/ls"
cmp /bin/ls $OBJ/ls.copy		|| fail "corrupted copy of /bin/ls"

trace "ssh transfer over multiplexed connection and check result"
${SSH} -S $CTL otherhost cat /bin/ls > $OBJ/ls.copy
test -f $OBJ/ls.copy			|| fail "failed copy /bin/ls"
cmp /bin/ls $OBJ/ls.copy		|| fail "corrupted copy of /bin/ls"

rm -f $OBJ/ls.copy
trace "sftp transfer over multiplexed connection and check result"
echo "get /bin/ls $OBJ/ls.copy" | \
	${SFTP} -oControlPath=$CTL otherhost
test -f $OBJ/ls.copy			|| fail "failed copy /bin/ls"
cmp /bin/ls $OBJ/ls.copy		|| fail "corrupted copy of /bin/ls"

rm -f $OBJ/ls.copy
trace "scp transfer over multiplexed connection and check result"
${SCP} -oControlPath=$CTL otherhost:/bin/ls $OBJ/ls.copy
test -f $OBJ/ls.copy			|| fail "failed copy /bin/ls"
cmp /bin/ls $OBJ/ls.copy		|| fail "corrupted copy of /bin/ls"

for s in 0 1 4 5 44; do
	trace "exit status $s over multiplexed connection"
	verbose "test $tid: status $s"
	${SSH} -S $CTL otherhost exit $s
	r=$?
	if [ $r -ne $s ]; then
		fail "exit code mismatch for protocol $p: $r != $s"
	fi

	# same with early close of stdout/err
	trace "exit status $s with early close over multiplexed connection"
	${SSH} -S $CTL -n otherhost \
                exec sh -c \'"sleep 2; exec > /dev/null 2>&1; sleep 3; exit $s"\'
	r=$?
	if [ $r -ne $s ]; then
		fail "exit code (with sleep) mismatch for protocol $p: $r != $s"
	fi
done

sleep 30 # early close test sleeps 5 seconds per test