1 | SUBDIRS = tests |
---|
2 | |
---|
3 | dist_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 |
---|
18 | if USE_MSVA |
---|
19 | dist_check_SCRIPTS += test-15_basic_msva.bash |
---|
20 | endif |
---|
21 | dist_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 | |
---|
33 | TESTS = $(dist_check_SCRIPTS) |
---|
34 | |
---|
35 | # build OCSP database tool |
---|
36 | if ENABLE_OCSP_TEST |
---|
37 | check_PROGRAMS = gen_ocsp_index |
---|
38 | gen_ocsp_index_SOURCES = gen_ocsp_index.c cert_helper.c |
---|
39 | noinst_HEADERS = cert_helper.h |
---|
40 | endif |
---|
41 | |
---|
42 | # Identities in the miniature CA, server, and client environment for |
---|
43 | # the test suite |
---|
44 | shared_identities = server authority client imposter rogueca |
---|
45 | pgp_identities = $(shared_identities) |
---|
46 | x509_only_identities = rogueclient |
---|
47 | x509_identities = $(shared_identities) $(x509_only_identities) |
---|
48 | identities = $(shared_identities) $(x509_only_identities) |
---|
49 | # Append strings after ":=" to each identity to generate a list of |
---|
50 | # necessary files |
---|
51 | pgp_tokens = $(pgp_identities:=/secring.gpg) $(pgp_identities:=/cert.pgp) \ |
---|
52 | $(pgp_identities:=/secret.pgp) |
---|
53 | x509_keys = $(x509_identities:=/secret.key) |
---|
54 | x509_certs = $(x509_identities:=/x509.pem) |
---|
55 | x509_tokens = $(x509_certs) $(x509_keys) |
---|
56 | tokens = $(x509_tokens) $(pgp_tokens) |
---|
57 | |
---|
58 | if !DISABLE_FLOCK |
---|
59 | # flock command for write access to the authority keyring |
---|
60 | GPG_FLOCK = @FLOCK@ authority/lock |
---|
61 | endif |
---|
62 | |
---|
63 | include $(srcdir)/test_ca.mk |
---|
64 | |
---|
65 | # Test cases trying to create keys and certificates in parallel causes |
---|
66 | # race conditions. Ensure that all keys and certificates are generated |
---|
67 | # before tests get to run. |
---|
68 | # |
---|
69 | # NOTE: Once the support files have been generated, test cases can be |
---|
70 | # run with multiple jobs, but real parallelization would require |
---|
71 | # dynamic port assignments. At the moment, lock files ensure that only |
---|
72 | # one Apache instance (possibly plus a proxy back end instance) is |
---|
73 | # running at any time, so test cases actually have to wait for each |
---|
74 | # other - just not in any particular order. |
---|
75 | check_DATA = $(tokens) server/crl.pem |
---|
76 | |
---|
77 | MOSTLYCLEANFILES = cache/* logs/* outputs/* server/crl.pem |
---|
78 | |
---|
79 | cert_templates = authority.template.in client.template.in \ |
---|
80 | imposter.template.in rogueca.template rogueclient.template.in \ |
---|
81 | server.template.in |
---|
82 | generated_templates = authority.template client.template \ |
---|
83 | imposter.template rogueclient.template server.template |
---|
84 | |
---|
85 | # Delete X.509 private keys on full clean. Note that unless you need |
---|
86 | # to generate fresh keys, the "mostlyclean" target should be |
---|
87 | # sufficient (see below). |
---|
88 | CLEANFILES = $(x509_keys) |
---|
89 | |
---|
90 | # Delete X.509 certificates and generated templates on "mostlyclean" |
---|
91 | # target. Certificates can be rebuilt without generating new key |
---|
92 | # pairs, and regenerating them makes it possible to change identities |
---|
93 | # (e.g. host names) without wasting time on new keys (which would |
---|
94 | # happen after "clean"). |
---|
95 | MOSTLYCLEANFILES += */x509.pem $(generated_templates) *.uid |
---|
96 | |
---|
97 | |
---|
98 | # Delete PGP keyrings on "mostlyclean" target. They are created from |
---|
99 | # the X.509 private keys and certificates with an expiration time of |
---|
100 | # one day, so regenerating them is both fast and frequently |
---|
101 | # necessary. |
---|
102 | MOSTLYCLEANFILES += */*.pgp */*.gpg */*.gpg~ */gpg.conf authority/lock |
---|
103 | # GnuPG random pool, no need to regenerate on every build |
---|
104 | CLEANFILES += authority/random_seed |
---|
105 | |
---|
106 | # Delete lock files for test servers on "mostlyclean" target. |
---|
107 | MOSTLYCLEANFILES += *.lock |
---|
108 | |
---|
109 | # rule to build MSVA trust database |
---|
110 | if USE_MSVA |
---|
111 | msva_home = msva.gnupghome |
---|
112 | check_DATA += $(msva_home)/trustdb.gpg client.uid |
---|
113 | MOSTLYCLEANFILES += $(msva_home)/trustdb.gpg |
---|
114 | $(msva_home)/trustdb.gpg: authority/minimal.pgp client/cert.pgp |
---|
115 | mkdir -p -m 0700 $(dir $@) |
---|
116 | GNUPGHOME=$(dir $@) gpg --import < $< |
---|
117 | printf "%s:6:\n" "$$(GNUPGHOME=authority gpg --with-colons --list-secret-keys --fingerprint | grep ^fpr: | cut -f 10 -d :)" | GNUPGHOME=$(dir $@) gpg --import-ownertrust |
---|
118 | GNUPGHOME=$(dir $@) gpg --import < client/cert.pgp |
---|
119 | printf "keyserver does-not-exist.example\n" > $(msva_home)/gpg.conf |
---|
120 | endif |
---|
121 | |
---|
122 | |
---|
123 | # SoftHSM tokens. Note that the SoftHSM 2 token is a directory and |
---|
124 | # hence has to be treated slightly differently. |
---|
125 | SOFTHSM_TOKEN = server/softhsm.db |
---|
126 | SOFTHSM2_TOKEN = server/softhsm2.db |
---|
127 | |
---|
128 | # Tokens should be cleaned whether or not the matching SoftHSM version |
---|
129 | # was detected on the last ./configure run. |
---|
130 | MOSTLYCLEANFILES += $(SOFTHSM_TOKEN) |
---|
131 | # included in mostlyclean-local below |
---|
132 | clean-softhsm2-db: |
---|
133 | -rm -rf $(SOFTHSM2_TOKEN) |
---|
134 | |
---|
135 | if HAVE_SOFTHSM1 |
---|
136 | check_DATA += $(SOFTHSM_TOKEN) |
---|
137 | endif HAVE_SOFTHSM1 |
---|
138 | |
---|
139 | if HAVE_SOFTHSM2 |
---|
140 | check_DATA += $(SOFTHSM2_TOKEN) |
---|
141 | endif HAVE_SOFTHSM2 |
---|
142 | |
---|
143 | check_DATA += make-test-dirs |
---|
144 | extra_dirs = logs cache outputs |
---|
145 | make-test-dirs: |
---|
146 | mkdir -p $(extra_dirs) |
---|
147 | |
---|
148 | .PHONY: make-test-dirs clean-softhsm2-db |
---|
149 | |
---|
150 | mostlyclean-local: clean-softhsm2-db |
---|
151 | |
---|
152 | clean-local: |
---|
153 | -rmdir $(identities) || true |
---|
154 | -rmdir $(extra_dirs) || true |
---|
155 | if USE_MSVA |
---|
156 | -rmdir $(msva_home) || true |
---|
157 | endif |
---|
158 | |
---|
159 | # Apache configuration and data files |
---|
160 | apache_data = base_apache.conf cgi_module.conf data/* mime.types proxy_mods.conf |
---|
161 | |
---|
162 | EXTRA_DIST = $(apache_data) $(cert_templates) *.uid.in common.bash \ |
---|
163 | proxy_backend.bash runtests server-crl.template softhsm.bash |
---|
164 | |
---|
165 | # Lockfile for the main Apache process |
---|
166 | test_lockfile = ./test.lock |
---|
167 | # Lockfile for the proxy backend Apache process (if any) |
---|
168 | backend_lockfile = ./backend.lock |
---|
169 | # Maximum wait time in seconds for flock to aquire instance lock |
---|
170 | # files, or Apache to remove its PID file |
---|
171 | lock_wait = 30 |
---|
172 | |
---|
173 | # port for the main Apache server |
---|
174 | TEST_PORT ?= 9932 |
---|
175 | # port for MSVA in test cases that use it |
---|
176 | MSVA_PORT ?= 9933 |
---|
177 | # maximum time to wait for MSVA startup (milliseconds) |
---|
178 | TEST_MSVA_MAX_WAIT ?= 10000 |
---|
179 | # wait loop time for MSVA startup (milliseconds) |
---|
180 | TEST_MSVA_WAIT ?= 400 |
---|
181 | # seconds for the HTTP request to be sent and responded to |
---|
182 | TEST_QUERY_DELAY ?= 30 |
---|
183 | |
---|
184 | AM_TESTS_ENVIRONMENT = export APACHE2=@APACHE2@; \ |
---|
185 | export AP_LIBEXECDIR=@AP_LIBEXECDIR@; \ |
---|
186 | export TEST_LOCK_WAIT="$(lock_wait)"; \ |
---|
187 | export TEST_HOST="@TEST_HOST@"; \ |
---|
188 | export TEST_PORT="$(TEST_PORT)"; \ |
---|
189 | export MSVA_PORT="$(MSVA_PORT)"; \ |
---|
190 | export TEST_MSVA_MAX_WAIT="$(TEST_MSVA_MAX_WAIT)"; \ |
---|
191 | export TEST_MSVA_WAIT="$(TEST_MSVA_WAIT)"; \ |
---|
192 | export TEST_QUERY_DELAY="$(TEST_QUERY_DELAY)"; \ |
---|
193 | export BACKEND_HOST="@TEST_HOST@"; \ |
---|
194 | export HTTP_CLI="@HTTP_CLI@"; |
---|
195 | |
---|
196 | if HAVE_SOFTHSM |
---|
197 | AM_TESTS_ENVIRONMENT += export SOFTHSM="@SOFTHSM@"; \ |
---|
198 | export SOFTHSM_MAJOR_VERSION="@SOFTHSM_MAJOR_VERSION@"; \ |
---|
199 | export SOFTHSM_LIB="@SOFTHSM_LIB@" |
---|
200 | endif |
---|
201 | |
---|
202 | if ENABLE_NETNS |
---|
203 | AM_TESTS_ENVIRONMENT += export UNSHARE="@UNSHARE@"; \ |
---|
204 | export USE_TEST_NAMESPACE=1; |
---|
205 | endif |
---|
206 | # Without flock tests must not run in parallel. Otherwise set lock files. |
---|
207 | if DISABLE_FLOCK |
---|
208 | .NOTPARALLEL: |
---|
209 | else |
---|
210 | AM_TESTS_ENVIRONMENT += export FLOCK="@FLOCK@"; \ |
---|
211 | export TEST_LOCK="$(test_lockfile)"; \ |
---|
212 | export BACKEND_LOCK="$(backend_lockfile)"; |
---|
213 | endif |
---|
214 | |
---|
215 | # Echo AM_TESTS_ENVIRONMENT. This can be useful for debugging, e.g. if |
---|
216 | # you want to manually run an Apache instance with Valgrind using the |
---|
217 | # same configuration as a test case. |
---|
218 | show-test-env: export TEST_ENV=$(AM_TESTS_ENVIRONMENT) |
---|
219 | show-test-env: |
---|
220 | @echo "$${TEST_ENV}" |
---|