summaryrefslogtreecommitdiff
path: root/t/get-netssleay.t
blob: d36111dc748d7284a9f2bbfe01db73370e61a370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/perl

use strict;
use warnings;
use Test::More;

BEGIN {
 plan( tests=>4 );
 use_ok( 'Net::HTTPS::Any', qw( https_get ) );
}

#200

my($content, $response, %headers) = https_get(
  { 'host' => 'secure.sisd.com',
    'port' => 443,
    'path' => '/freeside/index.html',
  },
  'net_https_any_test' => 1,
);

like($response, qr/^HTTP\/[\d\.]+\s+200/i, 'Received 200 (OK) response');

ok( length($content), 'Received content' );

#404

my($content2, $response2, %headers2) = https_get(
  { 'host' => 'secure.sisd.com',
    'port' => 443,
    'path' => '/freeside/notfound.html',
  },
  'net_https_any_test' => 1,
);

like($response2, qr/^HTTP\/[\d\.]+\s+404/i, 'Received 404 (OK) response');