Changeset 4b9e34a in mod_gnutls for test/tests/12_cgi_variables/test.yaml
- Timestamp:
- Aug 30, 2020, 2:51:57 PM (2 years ago)
- Branches:
- asyncio, master
- Children:
- cbc3477
- Parents:
- 9bffdec
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/tests/12_cgi_variables/test.yaml
r9bffdec r4b9e34a 1 !connection 2 gnutls_params: 3 - x509cafile=authority/x509.pem 4 - x509keyfile=authority/client/secret.key 5 - x509certfile=authority/client/x509.pem 6 actions: 7 - !request 8 path: /dump.cgi 9 expect: 10 status: 200 11 body: 12 contains: 13 - | 1 - !connection 2 description: >- 3 The server requests but does not require client 4 authentication. The client authenticates, and the CGI script can 5 include certificate details in the output using environment 6 variables. 7 gnutls_params: 8 - x509cafile=authority/x509.pem 9 - x509keyfile=authority/client/secret.key 10 - x509certfile=authority/client/x509.pem 11 actions: 12 - !request 13 path: /dump.cgi 14 expect: 15 status: 200 16 body: 17 contains: 18 - | 19 ----Certificate:---- 20 -----BEGIN CERTIFICATE----- 21 - | 22 -----END CERTIFICATE----- 23 24 25 ----Verification Status:---- 26 SUCCESS 27 28 ----SubjectAltName:---- 29 RFC822NAME:test0@modgnutls.test 30 31 - !connection 32 description: >- 33 The server requests but does not require client 34 authentication. The client does not authenticate, and the CGI 35 script can note that in the output using environment variables. 36 gnutls_params: 37 - x509cafile=authority/x509.pem 38 actions: 39 - !request 40 path: /dump.cgi 41 expect: 42 status: 200 43 body: 44 contains: | 14 45 ----Certificate:---- 15 -----BEGIN CERTIFICATE-----16 - |17 -----END CERTIFICATE-----18 46 19 47 20 48 ----Verification Status:---- 21 SUCCESS49 NONE 22 50 23 51 ----SubjectAltName:---- 24 RFC822NAME:test0@modgnutls.test
Note: See TracChangeset
for help on using the changeset viewer.