X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flive_engine_request_parameters.t;h=060bc9e4c6ca6135adccf29d2f4cea2c0decd355;hb=26dd6d9f6575fe782e78d6845fff3447e5ba5744;hp=1f1091f20944bd9126e59e6408a453d9ee0e5765;hpb=7d22a5373b8e3c57c1c6a9cae3d246efb840a8ea;p=catagits%2FCatalyst-Runtime.git diff --git a/t/live_engine_request_parameters.t b/t/live_engine_request_parameters.t index 1f1091f..060bc9e 100644 --- a/t/live_engine_request_parameters.t +++ b/t/live_engine_request_parameters.t @@ -6,13 +6,12 @@ use warnings; use FindBin; use lib "$FindBin::Bin/lib"; -use Test::More tests => 35; +use Test::More tests => 53; use Catalyst::Test 'TestApp'; use Catalyst::Request; use HTTP::Headers; use HTTP::Request::Common; -use URI; { my $creq; @@ -49,6 +48,16 @@ use URI; { my $creq; + ok( my $response = request("http://localhost/dump/request?q=foo=bar"), + 'Request' ); + ok( $response->is_success, 'Response Successful 2xx' ); + is( $response->content_type, 'text/plain', 'Response Content-Type' ); + ok( eval '$creq = ' . $response->content ); + is $creq->{parameters}->{q}, 'foo=bar', '= not ignored'; +} + +{ + my $creq; my $parameters = { 'a' => [qw(A b C d E f G)], @@ -128,3 +137,26 @@ use URI; ok( eval '$creq = ' . $response->content, 'Unserialize Catalyst::Request' ); is( $creq->{uri}->query, 'x=1&y=1&z=1', 'Catalyst::Request GET query_string' ); } + +{ + my $creq; + ok( my $response = request("http://localhost/dump/request?&&q="), + 'Request' ); + ok( $response->is_success, 'Response Successful 2xx' ); + is( $response->content_type, 'text/plain', 'Response Content-Type' ); + ok( eval '$creq = ' . $response->content ); + is( keys %{$creq->{parameters}}, 1, 'remove empty parameter' ); + is( $creq->{parameters}->{q}, '', 'empty parameter' ); +} + +{ + my $creq; + ok( my $response = request("http://localhost/dump/request?&0&q="), + 'Request' ); + ok( $response->is_success, 'Response Successful 2xx' ); + is( $response->content_type, 'text/plain', 'Response Content-Type' ); + ok( eval '$creq = ' . $response->content ); + is( keys %{$creq->{parameters}}, 2, 'remove empty parameter' ); + is( $creq->{parameters}->{q}, '', 'empty parameter' ); + ok( !defined $creq->{parameters}->{0}, 'empty parameter' ); +}