]> andersk Git - openssh.git/blame - regress/envpass.sh
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / regress / envpass.sh
CommitLineData
08ba3a8a 1# $OpenBSD: envpass.sh,v 1.4 2005/03/04 08:48:46 djm Exp $
30ee6294 2# Placed in the Public Domain.
3
4tid="environment passing"
5
6# NB accepted env vars are in test-exec.sh (_XXX_TEST_* and _XXX_TEST)
7
08ba3a8a 8# Prepare a custom config to test for a configuration parsing bug fixed in 4.0
9cat << EOF > $OBJ/ssh_proxy_envpass
10Host test-sendenv-confparse-bug
11 SendEnv *
12EOF
13cat $OBJ/ssh_proxy >> $OBJ/ssh_proxy_envpass
14
30ee6294 15trace "pass env, don't accept"
16verbose "test $tid: pass env, don't accept"
08ba3a8a 17_TEST_ENV=blah ${SSH} -oSendEnv="*" -F $OBJ/ssh_proxy_envpass otherhost \
cb19b709 18 sh << 'EOF'
e0e1d130 19 test -z "$_TEST_ENV"
cb19b709 20EOF
30ee6294 21r=$?
22if [ $r -ne 0 ]; then
23 fail "environment found"
24fi
25
26trace "don't pass env, accept"
27verbose "test $tid: don't pass env, accept"
08ba3a8a 28_XXX_TEST_A=1 _XXX_TEST_B=2 ${SSH} -F $OBJ/ssh_proxy_envpass otherhost \
cb19b709 29 sh << 'EOF'
e0e1d130 30 test -z "$_XXX_TEST_A" && test -z "$_XXX_TEST_B"
cb19b709 31EOF
30ee6294 32r=$?
33if [ $r -ne 0 ]; then
34 fail "environment found"
35fi
36
37trace "pass single env, accept single env"
38verbose "test $tid: pass single env, accept single env"
08ba3a8a 39_XXX_TEST=blah ${SSH} -oSendEnv="_XXX_TEST" -F $OBJ/ssh_proxy_envpass \
40 otherhost sh << 'EOF'
cb19b709 41 test X"$_XXX_TEST" = X"blah"
42EOF
30ee6294 43r=$?
44if [ $r -ne 0 ]; then
45 fail "environment not found"
46fi
47
48trace "pass multiple env, accept multiple env"
49verbose "test $tid: pass multiple env, accept multiple env"
50_XXX_TEST_A=1 _XXX_TEST_B=2 ${SSH} -oSendEnv="_XXX_TEST_*" \
08ba3a8a 51 -F $OBJ/ssh_proxy_envpass otherhost \
cb19b709 52 sh << 'EOF'
53 test X"$_XXX_TEST_A" = X"1" -a X"$_XXX_TEST_B" = X"2"
54EOF
30ee6294 55r=$?
56if [ $r -ne 0 ]; then
57 fail "environment not found"
58fi
08ba3a8a 59
60rm -f $OBJ/ssh_proxy_envpass
This page took 0.13816 seconds and 5 git commands to generate.