openssh/regress/connect-uri.sh
millert@openbsd.org@openbsd.org 116b1b4394 upstream commit
Add tests for URI parsing.  OK markus@

OpenBSD-Regress-ID: 5d1df19874f3b916d1a2256a905526e17a98bd3b
2017-10-31 09:08:51 +11:00

30 lines
816 B
Bash

# $OpenBSD: connect-uri.sh,v 1.1 2017/10/24 19:33:32 millert Exp $
# Placed in the Public Domain.
tid="uri connect"
# Remove Port and User from ssh_config, we want to rely on the URI
cp $OBJ/ssh_config $OBJ/ssh_config.orig
egrep -v '^ +(Port|User) +.*$' $OBJ/ssh_config.orig > $OBJ/ssh_config
start_sshd
verbose "$tid: no trailing slash"
${SSH} -F $OBJ/ssh_config "ssh://${USER}@somehost:${PORT}" true
if [ $? -ne 0 ]; then
fail "ssh connection failed"
fi
verbose "$tid: trailing slash"
${SSH} -F $OBJ/ssh_config "ssh://${USER}@somehost:${PORT}/" true
if [ $? -ne 0 ]; then
fail "ssh connection failed"
fi
verbose "$tid: with path name"
${SSH} -F $OBJ/ssh_config "ssh://${USER}@somehost:${PORT}/${DATA}" true \
> /dev/null 2>&1
if [ $? -eq 0 ]; then
fail "ssh connection succeeded, expected failure"
fi