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