Blame tests/gnutls-cli-resume.sh

Packit aea12f
#!/bin/sh
Packit aea12f
Packit aea12f
# Copyright (C) 2019 Red Hat, Inc.
Packit aea12f
#
Packit aea12f
# Author: Nikos Mavrogiannopoulos
Packit aea12f
#
Packit aea12f
# This file is part of GnuTLS.
Packit aea12f
#
Packit aea12f
# GnuTLS is free software; you can redistribute it and/or modify it
Packit aea12f
# under the terms of the GNU General Public License as published by the
Packit aea12f
# Free Software Foundation; either version 3 of the License, or (at
Packit aea12f
# your option) any later version.
Packit aea12f
#
Packit aea12f
# GnuTLS is distributed in the hope that it will be useful, but
Packit aea12f
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit aea12f
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit aea12f
# General Public License for more details.
Packit aea12f
#
Packit aea12f
# You should have received a copy of the GNU Lesser General Public License
Packit aea12f
# along with this program.  If not, see <https://www.gnu.org/licenses/>
Packit aea12f
#
Packit aea12f
Packit aea12f
srcdir="${srcdir:-.}"
Packit aea12f
SERV="${SERV:-../src/gnutls-serv${EXEEXT}}"
Packit aea12f
CLI="${CLI:-../src/gnutls-cli${EXEEXT}}"
Packit aea12f
unset RETCODE
Packit aea12f
Packit aea12f
if ! test -x "${SERV}"; then
Packit aea12f
	exit 77
Packit aea12f
fi
Packit aea12f
Packit aea12f
if ! test -x "${CLI}"; then
Packit aea12f
	exit 77
Packit aea12f
fi
Packit aea12f
Packit aea12f
if test "${WINDIR}" != ""; then
Packit aea12f
	exit 77
Packit aea12f
fi
Packit aea12f
Packit aea12f
SERV="${SERV} -q"
Packit aea12f
Packit aea12f
. "${srcdir}/scripts/common.sh"
Packit aea12f
Packit aea12f
KEY1=${srcdir}/../doc/credentials/x509/key-rsa.pem
Packit aea12f
CERT1=${srcdir}/../doc/credentials/x509/cert-rsa.pem
Packit aea12f
Packit aea12f
eval "${GETPORT}"
Packit aea12f
launch_server $$ --echo --x509keyfile ${KEY1} --x509certfile ${CERT1}
Packit aea12f
PID=$!
Packit aea12f
wait_server ${PID}
Packit aea12f
Packit aea12f
run_server_test() {
Packit aea12f
	local priority=$1
Packit aea12f
	local id=$2
Packit aea12f
	local TMPFILE=resume.$$-$i.tmp
Packit aea12f
Packit aea12f
	"${CLI}" -p "${PORT}" 127.0.0.1 --logfile=${TMPFILE} --priority="${priority}" --resume --insecure </dev/null >/dev/null || \
Packit aea12f
		exit 1
Packit aea12f
	grep -H "* This is a resumed session" ${TMPFILE} ||
Packit aea12f
		exit 1
Packit aea12f
Packit aea12f
	rm -f ${TMPFILE}
Packit aea12f
Packit aea12f
	exit 0
Packit aea12f
}
Packit aea12f
Packit aea12f
echo "Checking whether session resumption works reliably under TLS1.3"
Packit aea12f
PRIORITY="NORMAL:-VERS-ALL:+VERS-TLS1.3"
Packit aea12f
WAITPID=""
Packit aea12f
Packit aea12f
i=0
Packit aea12f
while [ $i -lt 10 ]
Packit aea12f
do
Packit aea12f
	run_server_test "${PRIORITY}" $i &
Packit aea12f
	WAITPID="$WAITPID $!"
Packit aea12f
	i=`expr $i + 1`
Packit aea12f
done
Packit aea12f
Packit aea12f
for i in "$WAITPID";do
Packit aea12f
	wait $i
Packit aea12f
	test $? != 0 && exit 1
Packit aea12f
done
Packit aea12f
Packit aea12f
echo "Checking whether session resumption works reliably under TLS1.2"
Packit aea12f
PRIORITY="NORMAL:-VERS-ALL:+VERS-TLS1.2"
Packit aea12f
WAITPID=""
Packit aea12f
Packit aea12f
i=0
Packit aea12f
while [ $i -lt 10 ]
Packit aea12f
do
Packit aea12f
	run_server_test "${PRIORITY}" $i &
Packit aea12f
	WAITPID="$WAITPID $!"
Packit aea12f
	i=`expr $i + 1`
Packit aea12f
done
Packit aea12f
Packit aea12f
for i in "$WAITPID";do
Packit aea12f
	wait $i
Packit aea12f
	test $? != 0 && exit 1
Packit aea12f
done
Packit aea12f
Packit Service 991b93
echo "Checking whether session resumption works reliably under TLS1.2 (no tickets)"
Packit Service 991b93
PRIORITY="NORMAL:-VERS-ALL:+VERS-TLS1.2:%NO_TICKETS"
Packit Service 991b93
WAITPID=""
Packit Service 991b93
Packit Service 991b93
i=0
Packit Service 991b93
while [ $i -lt 10 ]
Packit Service 991b93
do
Packit Service 991b93
	run_server_test "${PRIORITY}" $i &
Packit Service 991b93
	WAITPID="$WAITPID $!"
Packit Service 991b93
	i=`expr $i + 1`
Packit Service 991b93
done
Packit Service 991b93
Packit Service 991b93
for i in "$WAITPID";do
Packit Service 991b93
	wait $i
Packit Service 991b93
	test $? != 0 && exit 1
Packit Service 991b93
done
Packit Service 991b93
Packit aea12f
kill ${PID}
Packit aea12f
wait
Packit aea12f
Packit aea12f
exit 0