12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #!/bin/sh
- #
- # Copyright (C) 2016 Red Hat, Inc.
- #
- # This file is part of openconnect.
- #
- # This is free software; you can redistribute it and/or
- # modify it under the terms of the GNU Lesser General Public License
- # as published by the Free Software Foundation; either version 2.1 of
- # the License, or (at your option) any later version.
- #
- # This library is distributed in the hope that it will be useful, but
- # WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- # Lesser General Public License for more details.
- #
- # You should have received a copy of the GNU Lesser General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>
- # This test uses LD_PRELOAD
- PRELOAD=1
- SERV="${SERV:-../src/ocserv}"
- srcdir=${srcdir:-.}
- top_builddir=${top_builddir:-..}
- . `dirname $0`/common.sh
- key_list=${key_list:-`echo ${certdir}/*-key-*.{pem,der,p12}`}
- echo "Testing certificate auth..."
- launch_simple_sr_server -d 1 -f -c configs/test-user-cert.config
- PID=$!
- wait_server $PID
- for KEY in ${key_list}; do
- echo -n "Connecting to obtain cookie (with key ${KEY##*/})... "
- if [ "${KEY%%.p12}" != "${KEY}" ]; then
- CERTARGS="-c ${KEY} --key-password password"
- else
- CERTARGS="--sslkey ${KEY} --key-password password -c ${KEY%-key-*}-cert.pem"
- fi
- ( echo "test" | LD_PRELOAD=libsocket_wrapper.so $OPENCONNECT -q $ADDRESS:443 -u test $CERTARGS --servercert=d66b507ae074d03b02eafca40d35f87dd81049d3 --cookieonly --passwd-on-stdin ) ||
- fail $PID "Could not connect with key ${KEY##*/}!"
- done
- echo ok
- cleanup
- exit 0
|