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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
#!perl -w
use strict;
use warnings;
use Data::Dumper;
use Test::More;
use Test::HTTP::LocalServer;
use Future::HTTP::Tiny;
use HTTP::Tiny;
plan tests => 11;
my $server = Test::HTTP::LocalServer->spawn(
#debug => 1
);
delete @ENV{ qw[
HTTP_PROXY
http_proxy
HTTP_PROXY_ALL
http_proxy_all
HTTPS_PROXY
https_proxy
CGI_HTTP_PROXY
ALL_PROXY
all_proxy
] };
diag( "Version of HTTP::Tiny: " . HTTP::Tiny->VERSION );
my $ua = Future::HTTP::Tiny->new();
ok !$ua->is_async, 'is_async is false';
my $url = $server->url;
my ($body,$headers) = $ua->http_get($url)->get;
like $headers->{Status}, qr/2../, "Retrieve URL using HTTP::Tiny backend";
is $headers->{URL}, $server->url, "We arrive at the expected URL"
or diag Dumper $headers;
my $u = $server->redirect( 'foo' );
($body,$headers) = $ua->http_get($u)->get;
like $headers->{Status}, qr/2../, "Retrieve URL using redirect for a single redirection";
# HTTP::Tiny 0.017 didn't record the final URL
SKIP: {
if( $HTTP::Tiny::VERSION < 0.018 ) {
skip "HTTP::Tiny before 0.018 doesn't record the final URL", 1;
};
is $headers->{URL}, $url . 'foo', "We arrive at the expected URL"
or diag Dumper $headers;
};
# The redirect detection only came with HTTP::Tiny 0.058+
SKIP: {
if( $HTTP::Tiny::VERSION < 0.058 ) {
skip "HTTP::Tiny before 0.058 doesn't handle redirects", 2;
};
ok exists $headers->{Redirect}, "We were redirected here";
ok !exists $headers->{Redirect}->[1]->{Redirect}, "... once";
};
$u = $server->redirect( 'redirect/foo' );
($body,$headers) = $ua->http_get($u)->get;
like $headers->{Status}, qr/2../, "Retrieve URL using redirect for a double redirection";
# HTTP::Tiny 0.017 didn't record the final URL
SKIP: {
if( $HTTP::Tiny::VERSION < 0.018 ) {
skip "HTTP::Tiny before 0.018 doesn't record the final URL", 1;
};
is $headers->{URL}, $url . 'foo', "We arrive at the expected URL"
or diag Dumper $headers;
};
# The redirect detection only came with HTTP::Tiny 0.058+
SKIP: {
if( $HTTP::Tiny::VERSION < 0.058 ) {
skip "HTTP::Tiny before 0.058 doesn't handle redirects", 2;
};
ok exists $headers->{Redirect}, "We were redirected here";
is $headers->{Redirect}->[1]->{Redirect}->[1]->{URL}, $u, "... twice, starting from $u"
or diag Dumper $headers->{Redirect}->[1];
};
$server->stop;
done_testing;
|