#!/bin/sh

# Copyright (C) 2015 Nikos Mavrogiannopoulos
#
# 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.

outdir="output.$$"

. ${srcdir}/common.sh

# This uses the engine for basic sign-verify operation.

sed -e "s|@MODULE_PATH@|${ADDITIONAL_PARAM}|g" -e "s|@ENGINE_PATH@|../src/.libs/libpkcs11.so|g" <"${srcdir}/engines.cnf.in" >engines.cnf

export OPENSSL_ENGINES="../src/.libs/"
PRIVATE_KEY="pkcs11:token=libp11-test;id=%00%01%02%03;object=server-key;type=private;pin-value=1234"
PUBLIC_KEY="pkcs11:token=libp11-test;id=%00%01%02%03;object=server-key;type=public;pin-value=1234"

./evp-sign ctrl false engines.cnf ${PRIVATE_KEY} ${PUBLIC_KEY} ${ADDITIONAL_PARAM}
if test $? != 0;then
	echo "Basic PKCS #11 test, using ctrl failed"
	exit 1;
fi

./evp-sign default false engines.cnf ${PRIVATE_KEY} ${PUBLIC_KEY} ${ADDITIONAL_PARAM}
if test $? != 0;then
	echo "Basic PKCS #11 test, using default failed"
	exit 1;
fi

./evp-sign ctrl 1234 engines.cnf ${PRIVATE_KEY} ${PUBLIC_KEY} ${ADDITIONAL_PARAM}
if test $? != 0;then
	echo "Basic PKCS #11 test without pin-value, using ctrl failed"
	exit 1;
fi

./evp-sign default 1234 engines.cnf ${PRIVATE_KEY} ${PUBLIC_KEY} ${ADDITIONAL_PARAM}
if test $? != 0;then
	echo "Basic PKCS #11 test without pin-value, using default failed"
	exit 1;
fi

./evp-sign ctrl 1234 engines.cnf "label_server-key" "label_server-key" ${ADDITIONAL_PARAM}
if test $? != 0;then
	echo "Basic PKCS #11 test with legacy name #1 failed"
	exit 1;
fi

./evp-sign default 1234 engines.cnf "id_00010203" "id_00010203" ${ADDITIONAL_PARAM}
if test $? != 0;then
	echo "Basic PKCS #11 test with legacy name #2 failed"
	exit 1;
fi

rm -rf "$outdir"
rm -f engines.cnf

exit 0
