X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Funit_load_catalyst_test.t;h=a39498b331326d807add77218ea126fb3ffda08a;hp=d3f30ee477e929b2a348e11211dfb40c93d53154;hb=35b3434762d426e0cd5e04eb735291f8ca7ea08e;hpb=b1ead5a2645de398ab6f2627ace6e7cf9e4f2cfe diff --git a/t/aggregate/unit_load_catalyst_test.t b/t/aggregate/unit_load_catalyst_test.t index d3f30ee..a39498b 100644 --- a/t/aggregate/unit_load_catalyst_test.t +++ b/t/aggregate/unit_load_catalyst_test.t @@ -3,14 +3,12 @@ use strict; use warnings; -use FindBin; -use lib "$FindBin::Bin/lib"; -use Test::More tests => 59; +use Test::More; use FindBin qw/$Bin/; use lib "$Bin/../lib"; use Catalyst::Utils; use HTTP::Request::Common; -use Test::Exception; +use Test::Fatal; my $Class = 'Catalyst::Test'; my $App = 'TestApp'; @@ -26,7 +24,7 @@ my %Meth = ( ### make sure we're not trying to connect to a remote host -- these are local tests local $ENV{CATALYST_SERVER}; -use_ok( $Class ); +use Catalyst::Test (); ### check available methods { ### turn of redefine warnings, we'll get new subs exported @@ -89,6 +87,9 @@ use_ok( $Class ); " Content recorded in response" ); ok( $c->stash, " Stash accessible" ); ok( $c->action, " Action object accessible" ); + ok( $res->request, " Response has request object" ); + is exception { is( $res->request->uri, $Url) }, undef, + " Request object has correct url"; } } } @@ -106,7 +107,7 @@ use_ok( $Class ); # FIXME - These vhosts in tests tests should be somewhere else... -sub customize { Catalyst::Test::_customize_request(@_) } +sub customize { Catalyst::Test::_customize_request($_[0], {}, @_[1 .. $#_]) } { my $req = Catalyst::Utils::request('/dummy'); @@ -145,10 +146,15 @@ sub customize { Catalyst::Test::_customize_request(@_) } use_ok('Catalyst::Test', 'TestApp', 'foobar'); # Back compat test, ensure that request ignores anything which isn't a hash. -lives_ok { +is exception { request(GET('/dummy'), 'foo'); -} 'scalar additional param to request method ignored'; -lives_ok { +}, undef, 'scalar additional param to request method ignored'; +is exception { request(GET('/dummy'), []); -} 'array additional param to request method ignored'; +}, undef, 'array additional param to request method ignored'; +my $res = request(GET('/')); +is $res->code, 200, 'Response code 200'; +is $res->headers->{status}, 200, 'Back compat "status" header present'; + +done_testing;