X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Funit_core_uri_for_action.t;h=ccc59105d637d376d68531051e7eeb1f6e919b03;hb=2e4a8275ce0d9d44cc059e042b0344d9e071150f;hp=53d71df91f57c2120914a4c4a997af124ad95867;hpb=6ab73369947422004890abb05035c491b086283f;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 53d71df..ccc5910 100644 --- a/t/aggregate/unit_core_uri_for_action.t +++ b/t/aggregate/unit_core_uri_for_action.t @@ -54,9 +54,20 @@ is($dispatcher->uri_for_action($regex_action, [ 'foo', 123 ]), "/action/regexp/foo/123", "Regex action interpolates captures correctly"); -is($dispatcher->uri_for_action($regex_action, [ 'foo/bar', 123 ]), - "/action/regexp/foo%2Fbar/123", - "Regex action interpolates captures correctly and url encodes /"); +my $regex_action_bs = $dispatcher->get_action_by_path( + '/action/regexp/one_backslashes' + ); + +ok(!defined($dispatcher->uri_for_action($regex_action_bs)), + "Regex action without captures returns undef"); + +ok(!defined($dispatcher->uri_for_action($regex_action_bs, [ 1, 2, 3 ])), + "Regex action with too many captures returns undef"); + +is($dispatcher->uri_for_action($regex_action_bs, [ 'foo', 123 ]), + "/action/regexp/foo/123.html", + "Regex action interpolates captures correctly"); + # # Index Action @@ -101,6 +112,10 @@ my $context = TestApp->new( { namespace => 'yada', } ); +is($context->uri_for($context->controller('Action')), + "http://127.0.0.1/foo/yada/action/", + "uri_for a controller"); + is($context->uri_for($path_action), "http://127.0.0.1/foo/action/relative/relative", "uri_for correct for path action"); @@ -109,10 +124,6 @@ is($context->uri_for($path_action, qw/one two/, { q => 1 }), "http://127.0.0.1/foo/action/relative/relative/one/two?q=1", "uri_for correct for path action with args and query"); -is($context->uri_for($path_action, qw|one/quux two|), - "http://127.0.0.1/foo/action/relative/relative/one%2Fquux/two", - "uri_for correctly url encoded for path action with args containing /"); - ok(!defined($context->uri_for($path_action, [ 'blah' ])), "no URI returned by uri_for for Path action with snippets"); @@ -168,14 +179,6 @@ 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 empty arg on undef last argument' ); - is( $context->uri_for_action($action_needs_two, [ 'foo' , 'bar/baz' ], (3,4)), - 'http://127.0.0.1/foo/chained/foo2/foo/bar%2Fbaz/end2/3/4', - 'uri_for_action works correctly when CaptureArg contains /' ); - - is( $context->uri_for_action($action_needs_two, [ 'foo' , 'bar' ], ('3/baz',4)), - 'http://127.0.0.1/foo/chained/foo2/foo/bar/end2/3%2Fbaz/4', - 'uri_for_action works correctly when Args contains /' ); - 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',