asynciodebian/masterdebian/stretch-backportsproxy-ticketupstream
Last change
on this file since ee94de5 was
1872744,
checked in by Thomas Klute <thomas2.klute@…>, 3 years ago
|
Test suite: Rename bash function backend_apache to apache_service
|
-
Property mode set to
100755
|
File size:
830 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | # Try HTTPS access with OCSP status check |
---|
3 | |
---|
4 | # Skip if OCSP tests are not enabled |
---|
5 | [ -n "${OCSP_PORT}" ] || exit 77 |
---|
6 | |
---|
7 | : ${srcdir:="."} |
---|
8 | . ${srcdir}/common.bash |
---|
9 | netns_reexec ${@} |
---|
10 | |
---|
11 | . $(dirname ${0})/apache_service.bash |
---|
12 | |
---|
13 | testdir="${srcdir}/tests/27_OCSP_server" |
---|
14 | TEST_NAME="$(basename ${testdir})" |
---|
15 | |
---|
16 | apache_service "${testdir}" "ocsp.conf" start "${OCSP_LOCK}" |
---|
17 | |
---|
18 | # trigger OCSP server test in the runtests script |
---|
19 | export CHECK_OCSP_SERVER="true" |
---|
20 | echo "OCSP index for the test CA:" |
---|
21 | cat authority/ocsp_index.txt |
---|
22 | |
---|
23 | ${srcdir}/runtests t-27 |
---|
24 | ret=${?} |
---|
25 | |
---|
26 | apache_service "${testdir}" "ocsp.conf" stop |
---|
27 | |
---|
28 | echo "Checking if client actually got a stapled response." |
---|
29 | if grep -P "^- Options: .*OCSP status request," outputs/27_*.output; then |
---|
30 | echo "OK" |
---|
31 | else |
---|
32 | echo "Error: \"OCSP status request\" option is missing!" |
---|
33 | ret=1 |
---|
34 | fi |
---|
35 | |
---|
36 | exit ${ret} |
---|
Note: See
TracBrowser
for help on using the repository browser.