X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FAction%2FChained.pm;h=cffd3d657bba36e169f0023a19cf50f470a15d81;hp=051961cfd18edb7da5072703eb38bfe63f242f46;hb=1279064aaba5218247db3d0e49215802187ee41e;hpb=372b0c1b8751c29e542dbc7624f11b8c99ef5742 diff --git a/t/lib/TestApp/Controller/Action/Chained.pm b/t/lib/TestApp/Controller/Action/Chained.pm index 051961c..cffd3d6 100644 --- a/t/lib/TestApp/Controller/Action/Chained.pm +++ b/t/lib/TestApp/Controller/Action/Chained.pm @@ -5,7 +5,7 @@ use warnings; use HTML::Entities; -use base qw/Catalyst::Controller/; +use base qw/Catalyst::Controller::ActionRole/; sub begin :Private { } @@ -164,6 +164,14 @@ sub mult_nopp_id : Chained('mult_nopp_base') PathPart('') CaptureArgs(1) { } sub mult_nopp_idall : Chained('mult_nopp_id') PathPart('') Args(0) { } sub mult_nopp_idnew : Chained('mult_nopp_id') PathPart('new') Args(0) { } +sub mult_nopp2_base : Chained('/') PathPart('chained/mult_nopp2') CaptureArgs(0) { } +sub mult_nopp2_nocap : Chained('mult_nopp2_base') PathPart('') CaptureArgs(0) { } +sub mult_nopp2_action : Chained('mult_nopp2_nocap') PathPart('action') CaptureArgs(0) { } +sub mult_nopp2_action_default : Chained('mult_nopp2_action') PathPart('') Args(0) { } +sub mult_nopp2_action_with_arg : Chained('mult_nopp2_action') PathPart('') Args(1) { } +sub mult_nopp2_load : Chained('mult_nopp2_base') PathPart('') CaptureArgs(1) { } +sub mult_nopp2_view : Chained('mult_nopp2_load') PathPart('') Args(0) { } + # # Test Choice between branches and early return logic # Declaration order is important for $children->{$*}, since this is first match best. @@ -197,12 +205,27 @@ sub view : Chained('/') PathPart('chained') CaptureArgs(1) {} sub star_search : Chained('view') PathPart('search') Args(0) { } sub doc_star : Chained('/') PathPart('chained/doc') Args(1) {} -sub return_arg : Chained('/') PathPart('chained/return_arg') Args(1) {} +sub return_arg : Chained('view') PathPart('return_arg') Args(1) {} + sub return_arg_decoded : Chained('/') PathPart('chained/return_arg_decoded') Args(1) { my ($self, $c) = @_; $c->req->args([ map { decode_entities($_) } @{ $c->req->args }]); } +sub roundtrip_urifor : Chained('/') PathPart('chained/roundtrip_urifor') CaptureArgs(1) {} +sub roundtrip_urifor_end : Chained('roundtrip_urifor') PathPart('') Args(1) { + my ($self, $c) = @_; + # This should round-trip, always - i.e. the uri you put in should come back out. + $c->res->body($c->uri_for($c->action, $c->req->captures, @{$c->req->args}, $c->req->parameters)); + $c->stash->{no_end} = 1; +} + +sub match_captures : Chained('/') PathPart('chained/match_captures') CaptureArgs(1) Does('~TestMatchCaptures') { + my ($self, $c) = @_; + $c->res->header( 'X-TestAppActionTestMatchCapturesHasRan', 'yes'); +} + +sub match_captures_end : Chained('match_captures') PathPart('bar') Args(0) { } sub end :Private { my ($self, $c) = @_;