source: mod_gnutls/test/Makefile.am @ ee94de5

asynciodebian/masterdebian/stretch-backportsmainproxy-ticketupstream
Last change on this file since ee94de5 was ee94de5, checked in by Thomas Klute <thomas2.klute@…>, 5 years ago

Test suite: Clean up for current GnuPG versions

Newer GnuPG versions start gpg-agent processes per GNUPGHOME (one for
every PGP identity) while creating the PGP certificates and leave an
authority/tofu.db file. Stop agent processes during check or
mostlyclean targets to be sure they are gone and do not interfere with
later test runs.

  • Property mode set to 100644
File size: 10.5 KB
Line 
1SUBDIRS = tests
2
3dist_check_SCRIPTS = test-00_basic.bash \
4        test-01_serverwide_priorities.bash \
5        test-02_cache_in_vhost.bash \
6        test-03_cachetimeout_in_vhost.bash \
7        test-04_basic_nosni.bash \
8        test-05_mismatched-priorities.bash \
9        test-06_verify_sni_a.bash \
10        test-07_verify_sni_b.bash \
11        test-08_verify_no_sni_fallback_to_first_vhost.bash \
12        test-09_verify_no_sni_fails_with_wrong_order.bash \
13        test-10_basic_client_verification.bash \
14        test-11_basic_client_verification_fail.bash \
15        test-12_cgi_variables.bash \
16        test-13_cgi_variables_no_client_cert.bash \
17        test-14_basic_openpgp.bash
18if USE_MSVA
19dist_check_SCRIPTS += test-15_basic_msva.bash
20endif
21dist_check_SCRIPTS += test-16_view-status.bash \
22        test-17_cgi_vars_large_cert.bash \
23        test-18_client_verification_wrong_cert.bash \
24        test-19_TLS_reverse_proxy.bash \
25        test-20_TLS_reverse_proxy_client_auth.bash \
26        test-21_TLS_reverse_proxy_wrong_cert.bash \
27        test-22_TLS_reverse_proxy_crl_revoke.bash \
28        test-23_TLS_reverse_proxy_mismatched_priorities.bash \
29        test-24_pkcs11_cert.bash \
30        test-25_Disable_TLS_1.0.bash \
31        test-26_redirect_HTTP_to_HTTPS.bash \
32        test-27_OCSP_server.bash
33
34TEST_EXTENSIONS = .bash
35TESTS = $(dist_check_SCRIPTS)
36
37check_PROGRAMS = pgpcrc gnutls_openpgp_support
38pgpcrc_SOURCES = pgpcrc.c
39gnutls_openpgp_support_SOURCES = gnutls_openpgp_support.c
40gnutls_openpgp_support_CFLAGS = $(LIBGNUTLS_CFLAGS)
41gnutls_openpgp_support_LDFLAGS = $(LIBGNUTLS_LIBS)
42
43# build OCSP database tool
44if ENABLE_OCSP_TEST
45check_PROGRAMS += gen_ocsp_index
46gen_ocsp_index_SOURCES = gen_ocsp_index.c cert_helper.c
47gen_ocsp_index_CFLAGS = $(LIBGNUTLS_CFLAGS)
48gen_ocsp_index_LDFLAGS = $(LIBGNUTLS_LIBS)
49noinst_HEADERS = cert_helper.h
50endif
51
52# Identities in the miniature CA, server, and client environment for
53# the test suite
54shared_identities = server authority client imposter rogueca
55pgp_identities = $(shared_identities)
56x509_only_identities = rogueclient
57if ENABLE_OCSP_TEST
58x509_only_identities += ocsp-responder
59endif
60x509_identities = $(shared_identities) $(x509_only_identities)
61identities = $(shared_identities) $(x509_only_identities)
62# Append strings after ":=" to each identity to generate a list of
63# necessary files
64pgp_tokens = $(pgp_identities:=/cert.pgp) \
65        $(pgp_identities:=/secret.pgp)
66x509_keys = $(x509_identities:=/secret.key)
67x509_certs = $(x509_identities:=/x509.pem)
68x509_tokens = $(x509_certs) $(x509_keys)
69tokens = $(x509_tokens) $(pgp_tokens)
70
71if !DISABLE_FLOCK
72# flock command for write access to the authority keyring
73GPG_FLOCK = @FLOCK@ authority/lock
74endif
75
76include $(srcdir)/test_ca.mk
77
78# Test cases trying to create keys and certificates in parallel causes
79# race conditions. Ensure that all keys and certificates are generated
80# before tests get to run.
81#
82# NOTE: Once the support files have been generated, test cases can be
83# run with multiple jobs, but real parallelization would require
84# dynamic port assignments. At the moment, lock files ensure that only
85# one Apache instance (possibly plus a proxy back end instance) is
86# running at any time, so test cases actually have to wait for each
87# other - just not in any particular order.
88check_DATA = $(tokens) server/crl.pem
89
90MOSTLYCLEANFILES = cache/* logs/* outputs/* server/crl.pem
91
92cert_templates = authority.template.in client.template.in \
93        imposter.template.in ocsp-responder.template rogueca.template \
94        rogueclient.template.in server.template.in
95generated_templates = authority.template client.template \
96        imposter.template rogueclient.template server.template
97
98# Delete X.509 private keys on full clean. Note that unless you need
99# to generate fresh keys, the "mostlyclean" target should be
100# sufficient (see below).
101CLEANFILES = $(x509_keys)
102
103# Delete X.509 certificates and generated templates on "mostlyclean"
104# target. Certificates can be rebuilt without generating new key
105# pairs, and regenerating them makes it possible to change identities
106# (e.g. host names) without wasting time on new keys (which would
107# happen after "clean").
108MOSTLYCLEANFILES += */x509.pem $(generated_templates) *.uid
109
110
111# Delete PGP keyrings on "mostlyclean" target. They are created from
112# the X.509 private keys and certificates with an expiration time of
113# one day, so regenerating them is both fast and frequently
114# necessary.
115MOSTLYCLEANFILES += */*.pgp */*.pgp.raw */*.gpg */*.gpg~ */gpg.conf \
116        authority/lock */*.kbx */*.kbx~ */S.gpg-agent */private-keys-v1.d/* \
117        authority/tofu.db
118# GnuPG random pool, no need to regenerate on every build
119CLEANFILES += authority/random_seed
120
121# GnuPG 2 starts gpg-agent processes per GNUPGHOME (one for every PGP
122# identity) while creating the PGP certificates. This target is called
123# by both "check-local" and "mostlyclean-local": The former because
124# agent processes are started while preparing for "check" and are no
125# longer needed afterwards, the latter to make sure they are gone
126# along with their certificates.
127stop-gnupg-agent:
128        for id in $(pgp_identities) $(msva_home); do \
129                GNUPGHOME=$$id/ gpgconf --kill gpg-agent || true; \
130        done
131
132check-local: stop-gnupg-agent
133
134# Delete lock files for test servers on "mostlyclean" target.
135MOSTLYCLEANFILES += *.lock
136
137# rule to build MSVA trust database
138if USE_MSVA
139msva_home = msva.gnupghome
140check_DATA += $(msva_home)/trustdb.gpg client.uid
141MOSTLYCLEANFILES += $(msva_home)/trustdb.gpg
142$(msva_home)/trustdb.gpg: authority/minimal.pgp client/cert.pgp
143        mkdir -p -m 0700 $(dir $@)
144        GNUPGHOME=$(dir $@) gpg --import < $<
145        printf "%s:6:\n" "$$(GNUPGHOME=authority/ gpg --with-colons --list-secret-keys --fingerprint | grep ^fpr: | cut -f 10 -d :)" | GNUPGHOME=$(dir $@) gpg --import-ownertrust
146        GNUPGHOME=$(dir $@) gpg --import < client/cert.pgp
147        printf "keyserver does-not-exist.example\n" > $(msva_home)/gpg.conf
148endif
149
150if ENABLE_OCSP_TEST
151# rules to build OCSP database
152check_DATA += authority/ocsp_index.txt
153MOSTLYCLEANFILES += authority/ocsp_index.txt authority/ocsp_index.txt.attr
154authority/ocsp_index.txt: $(x509_tokens) gen_ocsp_index authority/ocsp_index.txt.attr
155        ./gen_ocsp_index server/x509.pem client/x509.pem > $@
156
157authority/ocsp_index.txt.attr: authority/secret.key
158        echo "unique_subject = no" > $@
159
160# build certificate chain file for server
161check_DATA += server/x509-chain.pem
162MOSTLYCLEANFILES += server/x509-chain.pem
163%/x509-chain.pem: %/x509.pem authority/x509.pem
164        cat $< authority/x509.pem > $@
165endif
166
167# SoftHSM tokens. Note that the SoftHSM 2 token is a directory and
168# hence has to be treated slightly differently.
169SOFTHSM_TOKEN = server/softhsm.db
170SOFTHSM2_TOKEN = server/softhsm2.db
171
172# Tokens should be cleaned whether or not the matching SoftHSM version
173# was detected on the last ./configure run.
174MOSTLYCLEANFILES += $(SOFTHSM_TOKEN)
175# included in mostlyclean-local below
176clean-softhsm2-db:
177        -rm -rf $(SOFTHSM2_TOKEN)
178
179if HAVE_SOFTHSM1
180check_DATA += $(SOFTHSM_TOKEN)
181endif HAVE_SOFTHSM1
182
183if HAVE_SOFTHSM2
184check_DATA += $(SOFTHSM2_TOKEN)
185endif HAVE_SOFTHSM2
186
187check_DATA += make-test-dirs
188extra_dirs = logs cache outputs
189make-test-dirs:
190        mkdir -p $(extra_dirs)
191
192.PHONY: make-test-dirs clean-softhsm2-db stop-gnupg-agent
193
194
195mostlyclean-local: clean-softhsm2-db stop-gnupg-agent
196        -rmdir $(pgp_identities:=/private-keys-v1.d) || true
197if USE_MSVA
198        -rmdir $(msva_home)/private-keys-v1.d || true
199endif
200
201# Delete test data directories, and wait for test services to
202# exit. The reason for the wait is that Apache instances may take some
203# time to exit and delete their PID files. Occasionally some PID files
204# where still around during "distcheck" runs by the time the target
205# checked if the build directory was really empty after "distclean",
206# breaking the build. Delaying "clean-local" until PID files are gone
207# avoids this issue, and the timeout will expose actually unclean
208# stops.
209clean-local:
210        -rmdir $(identities) || true
211        -rmdir $(extra_dirs) || true
212if USE_MSVA
213        -rmdir $(msva_home) || true
214endif
215        wait=0; \
216        while ls *.pid && test "$$wait" -lt "@TEST_LOCK_WAIT@"; do \
217                wait=$$(($$wait + 1)); \
218                echo "waiting for test services to exit ($$wait seconds)"; \
219                sleep 1; \
220        done
221
222# Apache configuration and data files
223apache_data = base_apache.conf cgi_module.conf data/dump.cgi data/ocsp.cgi \
224        data/secret.txt data/test.txt ffdhe3072.pem mime.types \
225        proxy_mods.conf
226
227EXTRA_DIST = $(apache_data) $(cert_templates) $(shared_identities:=.uid.in) \
228        apache_service.bash common.bash runtests server-crl.template \
229        softhsm.bash
230
231# Lockfile for the main Apache process
232test_lockfile = ./test.lock
233# Lockfile for the proxy backend Apache process (if any)
234backend_lockfile = ./backend.lock
235# Lockfile for the OCSP server Apache process (if any)
236ocsp_lockfile = ./ocsp.lock
237
238# port for the main Apache server
239TEST_PORT ?= 9932
240# port for MSVA in test cases that use it
241MSVA_PORT ?= 9933
242# port for TLS proxy backend server
243BACKEND_PORT ?= 9934
244# port for the OCSP responder
245if ENABLE_OCSP_TEST
246OCSP_PORT ?= 9936
247endif
248# maximum time to wait for MSVA startup (milliseconds)
249TEST_SERVICE_MAX_WAIT ?= 10000
250# wait loop time for MSVA startup (milliseconds)
251TEST_SERVICE_WAIT ?= 400
252
253AM_TESTS_ENVIRONMENT = export APACHE2=@APACHE2@; \
254        export AP_LIBEXECDIR=@AP_LIBEXECDIR@; \
255        export TEST_LOCK_WAIT="@TEST_LOCK_WAIT@"; \
256        export TEST_HOST="@TEST_HOST@"; \
257        export TEST_PORT="$(TEST_PORT)"; \
258        export MSVA_PORT="$(MSVA_PORT)"; \
259        export TEST_SERVICE_MAX_WAIT="$(TEST_SERVICE_MAX_WAIT)"; \
260        export TEST_SERVICE_WAIT="$(TEST_SERVICE_WAIT)"; \
261        export TEST_QUERY_TIMEOUT="@TEST_QUERY_TIMEOUT@"; \
262        export BACKEND_HOST="@TEST_HOST@"; \
263        export BACKEND_PORT="$(BACKEND_PORT)"; \
264        export HTTP_CLI="@HTTP_CLI@";
265
266if HAVE_SOFTHSM
267AM_TESTS_ENVIRONMENT += export SOFTHSM="@SOFTHSM@"; \
268        export SOFTHSM_MAJOR_VERSION="@SOFTHSM_MAJOR_VERSION@"; \
269        export SOFTHSM_LIB="@SOFTHSM_LIB@"
270endif
271
272if ENABLE_OCSP_TEST
273AM_TESTS_ENVIRONMENT += export OPENSSL="@OPENSSL@"; \
274        export OCSP_PORT="$(OCSP_PORT)";
275endif
276
277if ENABLE_NETNS
278AM_TESTS_ENVIRONMENT += export UNSHARE="@UNSHARE@"; \
279        export USE_TEST_NAMESPACE=1;
280endif
281# Without flock tests must not run in parallel, and PID files are used
282# to prevent conflicts between server instances. Otherwise set lock
283# files for flock.
284if DISABLE_FLOCK
285AM_TESTS_ENVIRONMENT += export TEST_LOCK="apache2.pid"; \
286        export BACKEND_LOCK="backend.pid"; \
287        export OCSP_LOCK="ocsp.pid";
288.NOTPARALLEL:
289else
290AM_TESTS_ENVIRONMENT += export FLOCK="@FLOCK@"; \
291        export TEST_LOCK="$(test_lockfile)"; \
292        export BACKEND_LOCK="$(backend_lockfile)"; \
293        export OCSP_LOCK="$(ocsp_lockfile)";
294endif
295
296# Echo AM_TESTS_ENVIRONMENT. This can be useful for debugging, e.g. if
297# you want to manually run an Apache instance with Valgrind using the
298# same configuration as a test case.
299show-test-env: export TEST_ENV=$(AM_TESTS_ENVIRONMENT)
300show-test-env:
301        @echo "$${TEST_ENV}"
Note: See TracBrowser for help on using the repository browser.