#!/bin/sh # Copyright (C) 2019 Red Hat, Inc. # # Author: Nikos Mavrogiannopoulos # # This file is part of GnuTLS. # # GnuTLS is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; either version 3 of the License, or (at # your option) any later version. # # GnuTLS 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 # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GnuTLS; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. : ${srcdir=.} TLSPY_SERV="${srcdir}/tls-fuzzer/tlslite-ng/scripts/tls.py" PYPATH="${srcdir}/tls-fuzzer/tlsfuzzer/" : ${CLI=../../src/gnutls-cli${EXEEXT}} unset RETCODE if test "${PYTHON}" = ":" ; then exit 77 fi if ! test -x "${TLSPY_SERV}"; then exit 77 fi if ! test -x "${CLI}"; then exit 77 fi if test "${WINDIR}" != ""; then exit 77 fi if ! test -z "${VALGRIND}"; then VALGRIND="${LIBTOOL:-libtool} --mode=execute ${VALGRIND} --error-exitcode=15" fi . "${srcdir}/../scripts/common.sh" KEY1=${srcdir}/tls-fuzzer/tlslite-ng/tests/serverX509Key.pem CERT1=${srcdir}/tls-fuzzer/tlsfuzzer/tests/serverX509Cert.pem #create links necessary for tlslite to function test -L "${srcdir}/tls-fuzzer/tlsfuzzer/ecdsa" || \ ln -s ../python-ecdsa/src/ecdsa "${srcdir}/tls-fuzzer/tlsfuzzer/" test -L "${srcdir}/tls-fuzzer/tlsfuzzer/tlslite" || \ ln -s ../tlslite-ng/tlslite "${srcdir}/tls-fuzzer/tlsfuzzer/" echo "Checking whether receiving 1 ticket succeeds (sanity)" eval "${GETPORT}" PYTHONPATH="${PYPATH}" "${PYTHON}" ${TLSPY_SERV} server --tickets 1 -k ${KEY1} -c ${CERT1} 127.0.0.1:${PORT} & PID=$! wait_server ${PID} ${VALGRIND} "${CLI}" -p "${PORT}" 127.0.0.1 --priority NORMAL:-VERS-ALL:+VERS-TLS1.3 --insecure