summaryrefslogtreecommitdiff
path: root/tests/Test-https-badcerts.px
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Add . to perl path for all perl tests"Tim Rühsen2019-05-301-1/+1
| | | | | | This reverts commit 79be99aff4717a75ec7531d8b3a4ec96341754ca. /usr/bin/env 8.28 and below doesn't know -S.
* Fix HTTPS Perl testsTim Rühsen2018-11-091-32/+4
| | | | | | | | | * tests/SSLTest.pm: Rename server cert and key file * tests/Test-https*.px: Fix and remove OpenSSL hard-coding * tests/certs/create-certs.sh: Script to generate test files * tests/certs/*-template.txt: GnuTLS template files for certs and crl * tests/certs/*.pem: Keys, certs, crls * tests/certs/README: Removed commands, link to create-certs.sh
* Add . to perl path for all perl testsTim Rühsen2018-09-071-1/+1
| | | | | | | * tests/*.px: Add -I . to the shebang This allows perl test to be run from tests/ directory, e.g. via ./Test--post-file.px
* Fix HTTPS testsTim Rühsen2018-05-061-9/+1
| | | | | | | | | * tests/Test-https-badcerts.px: Fix test return value * tests/Test-https-crl.px: Likewise * README: How to create certs with GnuTLS's certtool * tests/certs/revokedcrl.pem: Recreated revocation * tests/certs/server.crt: Recreated server cert with no expiry * tests/certs/test-ca-cert.pem: Recreated CA cert with no expiry
* Fix warning to not print binary IP addressTim Rühsen2018-02-091-1/+1
| | | | | | | | | | | * tests/Test-https-badcerts.px: Likewise * tests/Test-https-clientcert.px: Likewise * tests/Test-https-crl.px: Likewise * tests/Test-https-pfs.px: Likewise * tests/Test-https-selfsigned.px: Likewise * tests/Test-https-tlsv1.px: Likewise * tests/Test-https-tlsv1x.px: Likewise * tests/Test-https-weboftrust.px: Likewise
* Fix uninitialized value messages in testsTim Rühsen2017-10-301-1/+1
| | | | | | * tests/Test-https-*.px: Use correct variable in error message Reported-by: Jeffrey Walton
* Fix Test-https-badcerts.px to work with GnuTLSTim Rühsen2017-05-141-1/+1
| | | | | | | | * tests/Test-https-badcerts.px: Remove OpenSSL requirement * tests/certs/expired.crt: Re-created with valid dates * tests/certs/expired.key: Likewise * tests/certs/invalid.crt: Likewise * tests/certs/invalid.key: Likewise
* Removed all uses of temp files.Vijo Cherian2017-05-091-52/+7
| | | | Added needed files to GIT
* Cleanup on exit in Test-https-*.pxTim Rühsen2017-05-091-0/+10
| | | | * tests/Test-https-*.px: Cleanup on exit
* Fix path and VPATH issues of new https/TLS testsTim Rühsen2017-05-091-15/+26
| | | | | | | | | * tests/SSLTest.pm: Use $srcdir in read-only files, (_setup_server): Remove unneeded path fixation code * tests/Test-https-*.px: Use $srcdir for read-only files, use $cdir for writable files * tests/certs/interca.conf: Adjust paths * tests/certs/rootca.conf: Adjust paths
* Check for test server name resolution in testsTim Rühsen2017-05-091-1/+10
| | | | * tests/Test-https-*.px: Skip if test server name resolution fails
* * tests/Test-https-*: Change server port to <= 32767Tim Rühsen2017-05-091-1/+1
|
* Move https test server ports from >32767 to <= 32767Tim Rühsen2017-05-091-1/+1
| | | | | | * Test-https-badcerts.px: Change port * Test-https-crl.px: Likewise * Test-https-weboftrust.px: Likewise
* Add static HOSTSALIAS fileTim Rühsen2017-05-041-5/+1
| | | | | * tests/certs/wgethosts: New file * tests/Test-https-*.px: Remove creation of wgethosts file
* Added new tests for SSLVijo Cherian2017-05-041-8/+19
| | | | | | | | | | | | | | | | | | | * tests/Test-https-badcerts.px : New file * tests/Test-https-clientcert.px : New file * tests/Test-https-crl.px : New file * tests/Test-https-weboftrust.px : New file * tests/certs/interca.conf : New file * tests/certs/rootca.conf : New file * tests/certs/test-ca-key.pem : New file Added all new SSL / HTTPS tests to make check Added Test for SSL Web of Trust, accept only if CA chain of trust is intact. Added a test script for client certificate Added Test for crlfile option of wget Added test to make sure that wget doesn't accept expired or invalid certs Some clean up : 1, Removed cause of warnings from perl & other cosmetic changes 2, Fix make -j 4 check such that it passes all tests
* Added new tests for SSLVijo Cherian2017-04-281-0/+147
* tests/Test-https-badcerts.px : New file * tests/Test-https-clientcert.px : New file * tests/Test-https-crl.px : New file * tests/Test-https-weboftrust.px : New file * tests/certs/interca.conf : New file * tests/certs/rootca.conf : New file * tests/certs/test-ca-key.pem : New file Added all new SSL / HTTPS tests to make check Added Test for SSL Web of Trust, accept only if CA chain of trust is intact. Added a test script for client certificate Added Test for crlfile option of wget Added test to make sure that wget doesn't accept expired or invalid certs Some clean up : Removed cause of warnings from perl & other cosmetic changes