Changeset f363569 in mod_gnutls
- Timestamp:
- Sep 25, 2020, 5:53:51 PM (2 years ago)
- Branches:
- asyncio, master
- Children:
- b4dc111
- Parents:
- be2ad50
- Location:
- test
- Files:
-
- 1 added
- 2 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
test/Makefile.am
rbe2ad50 rf363569 81 81 shared_identities = authority authority/client 82 82 pgp_identities = $(shared_identities) 83 x509_only_identities = authority/server authority/ imposter\83 x509_only_identities = authority/server authority/meow.test \ 84 84 authority/subca authority/subca/server \ 85 85 rogueca rogueca/imposter rogueca/rogueclient … … 123 123 124 124 cert_templates = authority/template.in authority/client/template.in \ 125 authority/ imposter/template.in authority/ocsp-responder/template \125 authority/meow.test/template.in authority/ocsp-responder/template \ 126 126 authority/server/template.in \ 127 127 authority/subca/template.in authority/subca/server/template.in \ … … 130 130 rogueca/rogueclient/template.in 131 131 generated_templates = authority/template authority/client/template \ 132 authority/ imposter/template authority/server/template \132 authority/meow.test/template authority/server/template \ 133 133 rogueca/imposter/template rogueca/rogueclient/template 134 134 -
test/tests/06_verify_sni_a/apache.conf
rbe2ad50 rf363569 11 11 12 12 <VirtualHost _default_:${TEST_PORT}> 13 ServerName imposter.example13 ServerName meow.test 14 14 GnuTLSEnable On 15 GnuTLSCertificateFile authority/ imposter/x509.pem16 GnuTLSKeyFile authority/ imposter/secret.key15 GnuTLSCertificateFile authority/meow.test/x509.pem 16 GnuTLSKeyFile authority/meow.test/secret.key 17 17 </VirtualHost> -
test/tests/07_verify_sni_b/apache.conf
rbe2ad50 rf363569 6 6 7 7 <VirtualHost _default_:${TEST_PORT}> 8 ServerName imposter.example8 ServerName meow.test 9 9 GnuTLSEnable On 10 GnuTLSCertificateFile authority/ imposter/x509.pem11 GnuTLSKeyFile authority/ imposter/secret.key10 GnuTLSCertificateFile authority/meow.test/x509.pem 11 GnuTLSKeyFile authority/meow.test/secret.key 12 12 </VirtualHost> 13 13 -
test/tests/08_verify_no_sni_fallback_to_first_vhost/apache.conf
rbe2ad50 rf363569 11 11 12 12 <VirtualHost _default_:${TEST_PORT}> 13 ServerName imposter.example13 ServerName meow.test 14 14 GnuTLSEnable On 15 GnuTLSCertificateFile authority/ imposter/x509.pem16 GnuTLSKeyFile authority/ imposter/secret.key15 GnuTLSCertificateFile authority/meow.test/x509.pem 16 GnuTLSKeyFile authority/meow.test/secret.key 17 17 </VirtualHost> -
test/tests/09_verify_no_sni_fails_with_wrong_order/apache.conf
rbe2ad50 rf363569 3 3 GnuTLSCache ${DEFAULT_CACHE} 4 4 5 # In this order, clients with no SNI should get the imposter'skey5 # In this order, clients with no SNI should get the cat key 6 6 7 7 <VirtualHost _default_:${TEST_PORT}> 8 ServerName imposter.example8 ServerName meow.test 9 9 GnuTLSEnable On 10 GnuTLSCertificateFile authority/ imposter/x509.pem11 GnuTLSKeyFile authority/ imposter/secret.key10 GnuTLSCertificateFile authority/meow.test/x509.pem 11 GnuTLSKeyFile authority/meow.test/secret.key 12 12 </VirtualHost> 13 13 -
test/tests/09_verify_no_sni_fails_with_wrong_order/test.yaml
rbe2ad50 rf363569 2 2 gnutls_params: 3 3 - x509cafile=authority/x509.pem 4 - verify-hostname=meow.test 4 5 - disable-sni 5 6 actions: 6 7 - !request 7 8 path: /test.txt 9 headers: 10 Host: meow.test 8 11 expect: 9 reset: yes 10 12 status: 200 13 body: 14 exactly: | 15 test
Note: See TracChangeset
for help on using the changeset viewer.