mirror of
https://github.com/mirror/wget.git
synced 2024-12-28 05:40:08 +08:00
58 lines
1.4 KiB
Perl
Executable File
58 lines
1.4 KiB
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
use SSLTest;
|
|
|
|
###############################################################################
|
|
|
|
# code, msg, headers, content
|
|
my %urls = (
|
|
'/somefile.txt' => {
|
|
code => "200",
|
|
msg => "Dontcare",
|
|
headers => {
|
|
"Content-type" => "text/plain",
|
|
},
|
|
content => "blabla",
|
|
},
|
|
);
|
|
|
|
# Skip the test if openssl is not available
|
|
my $ossl = `openssl version`;
|
|
unless ($ossl =~ m/OpenSSL 1/)
|
|
{
|
|
exit 77;
|
|
}
|
|
|
|
my $cdir = $ENV{'PWD'};
|
|
# HOSTALIASES env variable allows us to create hosts file alias.
|
|
my $testhostname = "WgetTestingServer";
|
|
$ENV{'HOSTALIASES'} = "$cdir/certs/wgethosts";
|
|
|
|
my $port = 24443;
|
|
my $cmdline = $WgetTest::WGETPATH . " --secure-protocol=PFS".
|
|
" --ca-certificate=$cdir/certs/test-ca-cert.pem".
|
|
" https://$testhostname:$port/somefile.txt";
|
|
|
|
my $expected_error_code = 0;
|
|
|
|
my %existing_files = (
|
|
);
|
|
|
|
my %expected_downloaded_files = (
|
|
'somefile.txt' => {
|
|
content => "blabla",
|
|
},
|
|
);
|
|
|
|
my $sslsock = SSLTest->new(cmdline => $cmdline,
|
|
input => \%urls,
|
|
errcode => $expected_error_code,
|
|
existing => \%existing_files,
|
|
output => \%expected_downloaded_files,
|
|
sslport => $port);
|
|
exit $sslsock->run();
|
|
|
|
# vim: et ts=4 sw=4
|