X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fengine%2Frequest%2Fparameters.t;h=68fb7cdfc1dce0c169691a6fc92aacc1a6833424;hb=c2e37e5972fc1dd50f7eebdd0b73cea11ae1b8f4;hp=6cf7da91c1c52422acad890344e2a882d609cf9f;hpb=1408d0a4a06459625233de7e50c38707c184a83f;p=catagits%2FCatalyst-Runtime.git diff --git a/t/engine/request/parameters.t b/t/engine/request/parameters.t index 6cf7da9..68fb7cd 100644 --- a/t/engine/request/parameters.t +++ b/t/engine/request/parameters.t @@ -6,7 +6,7 @@ use warnings; use FindBin; use lib "$FindBin::Bin/../../lib"; -use Test::More tests => 11; +use Test::More tests => 19; use Catalyst::Test 'TestApp'; use Catalyst::Request; @@ -19,6 +19,25 @@ use URI; my $parameters = { 'a' => [qw(A b C d E f G)], + }; + + my $query = join( '&', map { 'a=' . $_ } @{ $parameters->{a} } ); + + ok( my $response = request("http://localhost/dump/request?$query"), 'Request' ); + ok( $response->is_success, 'Response Successful 2xx' ); + is( $response->content_type, 'text/plain', 'Response Content-Type' ); + like( $response->content, qr/^bless\( .* 'Catalyst::Request' \)$/s, 'Content is a serialized Catalyst::Request' ); + ok( eval '$creq = ' . $response->content, 'Unserialize Catalyst::Request' ); + isa_ok( $creq, 'Catalyst::Request' ); + is( $creq->method, 'GET', 'Catalyst::Request method' ); + is_deeply( $creq->parameters, $parameters, 'Catalyst::Request parameters' ); +} + +{ + my $creq; + + my $parameters = { + 'a' => [qw(A b C d E f G)], '%' => [ '%', '"', '& - &' ], }; @@ -49,3 +68,25 @@ use URI; is_deeply( $creq->uploads, {}, 'Catalyst::Request uploads' ); is_deeply( $creq->cookies, {}, 'Catalyst::Request cookie' ); } + +__END__ +# http://dev.catalyst.perl.org/ticket/37 +# multipart/form-data parameters that contain 'http://' +# Not testing in trunk because this is an HTTP::Message bug +# http://rt.cpan.org/NoAuth/Bug.html?id=13025 +{ + my $creq; + + my $parameters = { + 'url' => 'http://www.google.com', + }; + + my $request = POST( 'http://localhost/dump/request', + 'Content-Type' => 'multipart/form-data', + 'Content' => $parameters, + ); + + ok( my $response = request($request), 'Request' ); + ok( eval '$creq = ' . $response->content, 'Unserialize Catalyst::Request' ); + is_deeply( $creq->parameters, $parameters, 'Catalyst::Request parameters' ); +}