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 | |
---|
31 | TESTS = $(dist_check_SCRIPTS) |
---|
32 | |
---|
33 | # Test cases trying to create keys and certificates in parallel causes |
---|
34 | # race conditions. Ensure that all keys and certificates are generated |
---|
35 | # before tests get to run. |
---|
36 | # |
---|
37 | # NOTE: Once the support files have been generated, test cases can be |
---|
38 | # run with multiple jobs, but real parallelization would require |
---|
39 | # dynamic port assignments. At the moment, lock files ensure that only |
---|
40 | # one Apache instance (possibly plus a proxy back end instance) is |
---|
41 | # running at any time, so test cases actually have to wait for each |
---|
42 | # other - just not in any particular order. |
---|
43 | check_DATA = setup.done server/crl.pem |
---|
44 | |
---|
45 | MOSTLYCLEANFILES = cache/* logs/* outputs/* server/crl.pem |
---|
46 | |
---|
47 | clean-local: |
---|
48 | $(MAKE) -f $(srcdir)/TestMakefile $(AM_MAKEFLAGS) clean |
---|
49 | |
---|
50 | # SoftHSM files |
---|
51 | check_DATA += server/softhsm.db |
---|
52 | MOSTLYCLEANFILES += tests/24_pkcs11_cert/softhsm.conf |
---|
53 | |
---|
54 | # This rule can be used for any TestMakefile target not included in |
---|
55 | # setup.done. The dependency on setup.done is used to avoid race |
---|
56 | # conditions between multiple calls to TestMakefile for key and |
---|
57 | # certificate generation. It is ignored for setup.done itself. |
---|
58 | server/crl.pem server/softhsm.db setup.done: setup.done |
---|
59 | srcdir=$(srcdir) $(MAKE) -f $(srcdir)/TestMakefile $(AM_MAKEFLAGS) $@ |
---|
60 | |
---|
61 | cert_templates = authority.template.in client.template.in \ |
---|
62 | imposter.template.in rogueca.template server.template.in |
---|
63 | apache_data = base_apache.conf data/* mime.types |
---|
64 | |
---|
65 | EXTRA_DIST = $(apache_data) $(cert_templates) *.uid.in proxy_backend.bash \ |
---|
66 | runtests server-crl.template server-softhsm.conf softhsm.bash \ |
---|
67 | TestMakefile |
---|
68 | |
---|
69 | AM_TESTS_ENVIRONMENT = export APACHECTL=$(APACHECTL); \ |
---|
70 | export AP_LIBEXECDIR=$(AP_LIBEXECDIR); |
---|