source: mod_gnutls/test/test-24_pkcs11_cert.bash @ 0909c92

asynciomainproxy-ticket
Last change on this file since 0909c92 was 05984a0, checked in by Fiona Klute <fiona.klute@…>, 3 years ago

Replace "runtests" with "runtest.py"

This is the next step from handling HTTP requests and responses in
Python. In particular error handling is a lot easier to do in Python
than using Bash trap functions.

  • Property mode set to 100755
File size: 1.0 KB
Line 
1#!/bin/bash
2
3testdir="$(dirname ${0})/tests/24_pkcs11_cert"
4
5# The Apache/SoftHSM configuration mixes up directories, so generate
6# config files with absolute paths to the token database from a
7# template. Generating them on every run avoids problems if the source
8# tree was moved.
9tmp_softhsm_conf="$(mktemp mod_gnutls_test-XXXXXX.conf)"
10function cleanup_tmpconf
11{
12    rm "${tmp_softhsm_conf}"
13}
14trap cleanup_tmpconf EXIT
15
16if [ "${SOFTHSM_MAJOR_VERSION}" = "1" ]; then
17    cat - >"${tmp_softhsm_conf}" <<EOF
180:$(realpath $(pwd))/server/softhsm.db
19EOF
20    export SOFTHSM_CONF="${tmp_softhsm_conf}"
21elif [ "${SOFTHSM_MAJOR_VERSION}" = "2" ]; then
22    cat - >"${tmp_softhsm_conf}" <<EOF
23objectstore.backend = file
24directories.tokendir = $(realpath $(pwd))/authority/server/softhsm2.db
25EOF
26    export SOFTHSM2_CONF="${tmp_softhsm_conf}"
27fi
28
29echo "Generated temporary SoftHSM config ${tmp_softhsm_conf}:"
30cat "${tmp_softhsm_conf}"
31
32. $(dirname ${0})/softhsm.bash
33
34set -e
35
36${srcdir}/netns_py.bash ${srcdir}/runtest.py --test-number 24
37
38cleanup_tmpconf
39trap - EXIT
Note: See TracBrowser for help on using the repository browser.