X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Funit_core_uri_for_action.t;h=f9d3ba11dfb6214cc9dfa1de62026f145d71038f;hp=f7cd481eb6ace4bb81de8fd3365ba74eabea7cce;hb=HEAD;hpb=0cff119a540a3c8961750bd499f4c470771ac342 diff --git a/t/aggregate/unit_core_uri_for_action.t b/t/aggregate/unit_core_uri_for_action.t index f7cd481..f9d3ba1 100644 --- a/t/aggregate/unit_core_uri_for_action.t +++ b/t/aggregate/unit_core_uri_for_action.t @@ -1,5 +1,3 @@ -#!perl - use strict; use warnings; @@ -36,38 +34,6 @@ ok(!defined($dispatcher->uri_for_action($path_action, [ 'foo' ])), "no URI returned for Path action when snippets are given"); # -# Regex Action -# -my $regex_action = $dispatcher->get_action_by_path( - '/action/regexp/one' - ); - -ok(!defined($dispatcher->uri_for_action($regex_action)), - "Regex action without captures returns undef"); - -ok(!defined($dispatcher->uri_for_action($regex_action, [ 1, 2, 3 ])), - "Regex action with too many captures returns undef"); - -is($dispatcher->uri_for_action($regex_action, [ 'foo', 123 ]), - "/action/regexp/foo/123", - "Regex action interpolates captures correctly"); - -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 # my $index_action = $dispatcher->get_action_by_path( @@ -102,6 +68,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') } ); @@ -110,6 +77,26 @@ my $context = TestApp->new( { namespace => 'yada', } ); +is($context->uri_for($context->controller('Action::Chained')->action_for('endpoint'), [ 1 ]), + 'http://127.0.0.1/foo/chained/foo/1/end', + "uri_for a controller and action"); + +is( $context->uri_for_action( '/action/chained/endpoint', [ 1 ] ), + 'http://127.0.0.1/foo/chained/foo/1/end', + "uri_for a controller and action as string"); + +is(TestApp->uri_for_action($context->controller('Action::Chained')->action_for('endpoint'), [ 1 ]), + '/chained/foo/1/end', + "uri_for a controller and action, called with only class name"); + +is(TestApp->uri_for_action('/action/chained/endpoint', [ 1 ] ), + '/chained/foo/1/end', + "uri_for a controller and action as string, called with only class name"); + +is(TestApp->uri_for_action( $chained_action, [ 1 ]), + '/chained/foo/1/end', + "uri_for action via dispatcher, called with only class name"); + is($context->uri_for($context->controller('Action')), "http://127.0.0.1/foo/yada/action/", "uri_for a controller"); @@ -125,10 +112,6 @@ is($context->uri_for($path_action, qw/one two/, { q => 1 }), ok(!defined($context->uri_for($path_action, [ 'blah' ])), "no URI returned by uri_for for Path action with snippets"); -is($context->uri_for($regex_action, [ 'foo', 123 ], qw/bar baz/, { q => 1 }), - "http://127.0.0.1/foo/action/regexp/foo/123/bar/baz?q=1", - "uri_for correct for regex with captures, args and query"); - is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }), "http://127.0.0.1/foo/chained/foo/1/end/2?q=1", "uri_for correct for chained with captures, args and query"); @@ -154,10 +137,10 @@ is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }), '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)) ), 'uri_for_action returns undef for not enough 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' ); @@ -168,7 +151,7 @@ is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }), ok( ! defined( $context->uri_for_action($action_needs_two, [1,2,3], (2,3)) ), 'uri_for_action returns undef for too many captures' ); - + 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' );