Heim@Heim-PC ~/.cpan/build/Crypt-SSLeay-0.64-4GqoXH
$ perl Makefile.PL
The test suite can attempt to connect to public servers to ensure that the
code is working properly. If you are behind a strict firewall or have no
network connectivity, these tests may fail (through no fault of the code).
Do you want to run the live tests (y/N)? [N] y
Checking if your kit is complete...
Looks good
Warning: prerequisite LWP::Protocol::https 6.02 not found.
Note (probably harmless): No library found for -lz
Note (probably harmless): No library found for -lssl32
Note (probably harmless): No library found for -lssleay32
Note (probably harmless): No library found for -leay32
Writing Makefile for Crypt::SSLeay
Writing MYMETA.yml
Heim@Heim-PC ~/.cpan/build/Crypt-SSLeay-0.64-4GqoXH
$
####
perl Makefile.PL
make
####
Heim@Heim-PC ~/.cpan/build/LWP-Protocol-https-6.03-szsMUU
$ make test
PERL_DL_NONLAZY=1 /usr/bin/perl.exe "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/apache.t .. 1/2
# Failed test at t/apache.t line 14.
# Failed test at t/apache.t line 15.
# 'Can't connect to www.apache.org:443
#
# '
# doesn't match '(?^:Apache Software Foundation)'
# Looks like you failed 2 tests of 2.
t/apache.t .. Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/2 subtests
Test Summary Report
-------------------
t/apache.t (Wstat: 512 Tests: 2 Failed: 2)
Failed tests: 1-2
Non-zero exit status: 2
Files=1, Tests=2, 1 wallclock secs ( 0.02 usr 0.03 sys + 0.17 cusr 0.12 csys = 0.34 CPU)
Result: FAIL
Failed 1/1 test programs. 2/2 subtests failed.
Makefile:783: recipe for target `test_dynamic' failed
make: *** [test_dynamic] Error 2
####
$ cat apache.t
#!perl -w
use strict;
use Test::More;
use LWP::UserAgent;
my $ua = LWP::UserAgent->new();
plan skip_all => "Not online" unless $ua->is_online;
plan tests => 2;
my $res = $ua->simple_request(HTTP::Request->new(GET => "https://www.apache.org"));
ok($res->is_success);
like($res->content, qr/Apache Software Foundation/);
$res->dump(prefix => "# ");