X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Funit_core_uri_for_action.t;h=9b34229366a773c7063d7bd2249635b52c97ffe1;hb=3d5bcdf43a28bf58551db1e8fe19a96102a5b624;hp=ccc59105d637d376d68531051e7eeb1f6e919b03;hpb=b1cb1951d47533ecf9ccd52aaac1d02f051cf205;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/unit_core_uri_for_action.t b/t/aggregate/unit_core_uri_for_action.t index ccc5910..9b34229 100644 --- a/t/aggregate/unit_core_uri_for_action.t +++ b/t/aggregate/unit_core_uri_for_action.t @@ -8,8 +8,6 @@ use lib "$FindBin::Bin/../lib"; use Test::More; -plan tests => 33; - use_ok('TestApp'); my $dispatcher = TestApp->dispatcher; @@ -104,6 +102,7 @@ is($dispatcher->uri_for_action($chained_action, [ 1 ]), # Tests with Context # my $request = Catalyst::Request->new( { + _log => Catalyst::Log->new, base => URI->new('http://127.0.0.1/foo') } ); @@ -143,10 +142,18 @@ is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }), 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4?x=5', 'uri_for_action correct for chained with multiple captures and args' ); + is( $context->uri_for_action( '/action/chained/endpoint2', [1,2,3,4], { x => 5 } ), + 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4?x=5', + 'uri_for_action correct for chained with multiple captures and args combined' ); + is( $context->uri_for_action( '/action/chained/three_end', [1,2,3], (4,5,6) ), 'http://127.0.0.1/foo/chained/one/1/two/2/3/three/4/5/6', 'uri_for_action correct for chained with multiple capturing actions' ); + is( $context->uri_for_action( '/action/chained/three_end', [1,2,3,4,5,6] ), + 'http://127.0.0.1/foo/chained/one/1/two/2/3/three/4/5/6', + 'uri_for_action correct for chained with multiple capturing actions and args combined' ); + my $action_needs_two = '/action/chained/endpoint2'; ok( ! defined( $context->uri_for_action($action_needs_two, [1], (2,3)) ), @@ -155,7 +162,11 @@ is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }), is( $context->uri_for_action($action_needs_two, [1,2], (2,3)), 'http://127.0.0.1/foo/chained/foo2/1/2/end2/2/3', 'uri_for_action returns correct uri for correct captures' ); - + + is( $context->uri_for_action($action_needs_two, [1,2,2,3]), + 'http://127.0.0.1/foo/chained/foo2/1/2/end2/2/3', + 'uri_for_action returns correct uri for correct captures and args combined' ); + ok( ! defined( $context->uri_for_action($action_needs_two, [1,2,3], (2,3)) ), 'uri_for_action returns undef for too many captures' ); @@ -163,26 +174,49 @@ is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }), 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3', 'uri_for_action returns uri with lesser args than specified on action' ); + is( $context->uri_for_action($action_needs_two, [1,2,3]), + 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3', + 'uri_for_action returns uri with lesser args than specified on action with captures combined' ); + is( $context->uri_for_action($action_needs_two, [1,2], (3,4,5)), 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4/5', 'uri_for_action returns uri with more args than specified on action' ); + is( $context->uri_for_action($action_needs_two, [1,2,3,4,5]), + 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4/5', + 'uri_for_action returns uri with more args than specified on action with captures combined' ); + is( $context->uri_for_action($action_needs_two, [1,''], (3,4)), 'http://127.0.0.1/foo/chained/foo2/1//end2/3/4', 'uri_for_action returns uri with empty capture on undef capture' ); + is( $context->uri_for_action($action_needs_two, [1,'',3,4]), + 'http://127.0.0.1/foo/chained/foo2/1//end2/3/4', + 'uri_for_action returns uri with empty capture on undef capture and args combined' ); + is( $context->uri_for_action($action_needs_two, [1,2], ('',3)), 'http://127.0.0.1/foo/chained/foo2/1/2/end2//3', 'uri_for_action returns uri with empty arg on undef argument' ); + is( $context->uri_for_action($action_needs_two, [1,2,'',3]), + 'http://127.0.0.1/foo/chained/foo2/1/2/end2//3', + 'uri_for_action returns uri with empty arg on undef argument and args combined' ); + is( $context->uri_for_action($action_needs_two, [1,2], (3,'')), 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/', 'uri_for_action returns uri with empty arg on undef last argument' ); + is( $context->uri_for_action($action_needs_two, [1,2,3,'']), + 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/', + 'uri_for_action returns uri with empty arg on undef last argument with captures combined' ); + my $complex_chained = '/action/chained/empty_chain_f'; is( $context->uri_for_action( $complex_chained, [23], (13), {q => 3} ), 'http://127.0.0.1/foo/chained/empty/23/13?q=3', 'uri_for_action returns correct uri for chain with many empty path parts' ); + is( $context->uri_for_action( $complex_chained, [23,13], {q => 3} ), + 'http://127.0.0.1/foo/chained/empty/23/13?q=3', + 'uri_for_action returns correct uri for chain with many empty path parts with captures and args combined' ); eval { $context->uri_for_action( '/does/not/exist' ) }; like $@, qr{^Can't find action for path '/does/not/exist'}, @@ -190,3 +224,5 @@ is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }), } +done_testing; +