From 542ade65e7d6327770fece393b451c20e3ac2049 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 6 Jan 2011 14:53:31 -0600 Subject: one more test --- t/02-inputs.t | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/t/02-inputs.t b/t/02-inputs.t index f46cb24..1865c61 100644 --- a/t/02-inputs.t +++ b/t/02-inputs.t @@ -141,6 +141,23 @@ sub test_responses { "GET\n/\n\n" ); } + + { + my $base = URI->new($base_uri); + my $uri = $base->clone; + $uri->scheme('http'); + $uri->path('/') unless $uri->path; # XXX: work around plack bug + my $env = HTTP::Request->new(GET => $uri)->to_psgi; + $env->{'plack.client.url_scheme'} = $base->scheme; + $env->{'plack.client.app_name'} = $base->authority + if $base->scheme eq 'psgi-local'; + response_is( + $client->request(Plack::Request->new($env)), + 200, + ['Content-Type' => 'text/plain', 'Content-Length' => '7'], + "GET\n/\n\n" + ); + } } done_testing; -- cgit v1.2.3-54-g00ecf