summaryrefslogtreecommitdiff
path: root/tests/ocsp-tests/ocsptool
blob: 6677f8058872aa0935cece10fddff93999947bcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/bin/sh

# Copyright (C) 2017 Red Hat, Inc.
#
# 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 Lesser General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>

#set -e

# Sanity check program for various ocsptool options

srcdir="${srcdir:-.}"
OCSPTOOL="${OCSPTOOL:-../src/ocsptool${EXEEXT}}"
DIFF="${DIFF:-diff}"
CMP="${CMP:-cmp}"
TMPFILE=ocsp.$$.tmp

if ! test -x "${OCSPTOOL}"; then
	exit 77
fi

export TZ="UTC"

"${OCSPTOOL}" -j --infile "${srcdir}/ocsp-tests/response1.pem" --outfile "${TMPFILE}"
rc=$?

# We're done.
if test "${rc}" != "0"; then
	echo "Test 1 - PEM loading failed"
	exit ${rc}
fi

${CMP} "${srcdir}/ocsp-tests/response1.der" "${TMPFILE}" >/dev/null 2>&1
rc=$?
if test "${rc}" != "0"; then
	echo "Test 1 - Comparison of DER file failed"
	exit ${rc}
fi

"${OCSPTOOL}" -j --outpem --infile "${srcdir}/ocsp-tests/response1.pem" --outfile "${TMPFILE}"
rc=$?

# We're done.
if test "${rc}" != "0"; then
	echo "Test 2 - PEM loading failed"
	exit ${rc}
fi

${DIFF} -B "${srcdir}/ocsp-tests/response1.pem" "${TMPFILE}" >/dev/null 2>&1
rc=$?
if test "${rc}" != "0"; then
	echo "Test 2 - Comparison of PEM file failed $TMPFILE"
	exit ${rc}
fi


"${OCSPTOOL}" -j --infile "${srcdir}/ocsp-tests/response1.der"
rc=$?

# We're done.
if test "${rc}" != "0"; then
	echo "Test 3 - Transparent (backwards compatible) DER loading failed"
	exit ${rc}
fi

"${OCSPTOOL}" -j --inder --infile "${srcdir}/ocsp-tests/response1.der"
rc=$?

# We're done.
if test "${rc}" != "0"; then
	echo "Test 4 - DER loading failed"
	exit ${rc}
fi

rm -f "${TMPFILE}"

exit 0