Changeset be2ad50 in mod_gnutls
- Timestamp:
- Sep 25, 2020, 4:19:27 PM (21 months ago)
- Branches:
- asyncio, master
- Children:
- f363569
- Parents:
- cbc3477
- Location:
- test
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
test/Makefile.am
rcbc3477 rbe2ad50 83 83 x509_only_identities = authority/server authority/imposter \ 84 84 authority/subca authority/subca/server \ 85 rogueca rogueca/ rogueclient85 rogueca rogueca/imposter rogueca/rogueclient 86 86 if ENABLE_OCSP_TEST 87 87 x509_only_identities += authority/ocsp-responder authority/subca/ocsp-responder … … 127 127 authority/subca/template.in authority/subca/server/template.in \ 128 128 authority/subca/ocsp-responder/template \ 129 rogueca/template rogueca/rogueclient/template.in 129 rogueca/template rogueca/imposter/template.in \ 130 rogueca/rogueclient/template.in 130 131 generated_templates = authority/template authority/client/template \ 131 authority/imposter/template rogueca/rogueclient/template \132 authority/server/template132 authority/imposter/template authority/server/template \ 133 rogueca/imposter/template rogueca/rogueclient/template 133 134 134 135 # Delete X.509 private keys on full clean. Note that unless you need -
test/tests/21_TLS_reverse_proxy_wrong_cert/backend.conf
rcbc3477 rbe2ad50 6 6 ServerName ${BACKEND_HOST} 7 7 GnuTLSEnable On 8 GnuTLSCertificateFile authority/imposter/x509.pem9 GnuTLSKeyFile authority/imposter/secret.key8 GnuTLSCertificateFile rogueca/imposter/x509.pem 9 GnuTLSKeyFile rogueca/imposter/secret.key 10 10 </VirtualHost> -
test/tests/21_TLS_reverse_proxy_wrong_cert/test.yaml
rcbc3477 rbe2ad50 18 18 description: >- 19 19 Check if the proxy itself works correctly and presents the 20 expected bad certificate20 expected untrusted certificate 21 21 host: '${BACKEND_HOST}' 22 22 port: '${BACKEND_PORT}' 23 23 gnutls_params: 24 - x509cafile=authority/x509.pem 25 - verify-hostname=imposter.example 24 - x509cafile=rogueca/x509.pem 26 25 actions: 27 26 - !request
Note: See TracChangeset
for help on using the changeset viewer.