Changeset e27e01f in mod_gnutls
- Timestamp:
- Sep 27, 2020, 11:22:45 AM (20 months ago)
- Branches:
- asyncio, master
- Children:
- 747a9c4
- Parents:
- 2495b5a
- Location:
- test
- Files:
-
- 8 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
test/Makefile.am
r2495b5a re27e01f 22 22 test-03_cachetimeout_in_vhost.bash \ 23 23 test-04_name_based_vhosts.bash \ 24 test-06_verify_sni_a.bash \25 test-07_verify_sni_b.bash \26 test-08_verify_no_sni_fallback_to_first_vhost.bash \27 test-09_verify_no_sni_fails_with_wrong_order.bash \28 24 test-10_client_verification.bash \ 29 25 test-12_cgi_variables.bash \ -
test/tests/04_name_based_vhosts/test.yaml
r2495b5a re27e01f 7 7 actions: 8 8 - !request 9 path: / test.txt9 path: /vhost0/test.txt 10 10 expect: 11 11 status: 200 … … 13 13 exactly: | 14 14 test 15 - !connection 16 description: >- 17 Connection to the default vhost must work with SNI. 18 gnutls_params: 19 - x509cafile=authority/x509.pem 20 actions: 21 - !request 22 path: /vhost0/test.txt 23 expect: 24 status: 200 25 body: 26 exactly: | 27 test 28 - !connection 29 description: >- 30 Connection to the second vhost must work with SNI. 31 gnutls_params: 32 - x509cafile=authority/x509.pem 33 - verify-hostname=meow.test 34 - sni-hostname=meow.test 35 actions: 36 - !request 37 path: /meow/test.txt 38 headers: 39 Host: meow.test 40 expect: 41 status: 200 42 body: 43 exactly: | 44 test -
test/tests/Makefile.am
r2495b5a re27e01f 5 5 03_cachetimeout_in_vhost/apache.conf 03_cachetimeout_in_vhost/test.yaml \ 6 6 04_name_based_vhosts/apache.conf 04_name_based_vhosts/test.yaml \ 7 06_verify_sni_a/apache.conf 06_verify_sni_a/test.yaml \8 07_verify_sni_b/apache.conf 07_verify_sni_b/test.yaml \9 08_verify_no_sni_fallback_to_first_vhost/apache.conf 08_verify_no_sni_fallback_to_first_vhost/test.yaml \10 09_verify_no_sni_fails_with_wrong_order/apache.conf 09_verify_no_sni_fails_with_wrong_order/test.yaml \11 7 10_client_verification/apache.conf 10_client_verification/test.yaml \ 12 8 12_cgi_variables/apache.conf 12_cgi_variables/test.yaml \
Note: See TracChangeset
for help on using the changeset viewer.