X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FAction%2FChained.pm;h=030f22d2e323b4ac2db4cad95436db735ce10c09;hb=63b6bc2ae4f28f60fb0a9f3f731a1f3f24cf18e2;hp=d93827de12608f15469e55a287378e91c00420e9;hpb=1c34f703cbd82cddceea95593001a579e1d5f646;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/Controller/Action/Chained.pm b/t/lib/TestApp/Controller/Action/Chained.pm index d93827d..030f22d 100644 --- a/t/lib/TestApp/Controller/Action/Chained.pm +++ b/t/lib/TestApp/Controller/Action/Chained.pm @@ -15,7 +15,11 @@ sub begin :Private { } # # Simple parent/child action test # -sub foo :PathPart('chained/foo') :CaptureArgs(1) :Chained('/') { } +sub foo :PathPart('chained/foo') :CaptureArgs(1) :Chained('/') { + my ( $self, $c, @args ) = @_; + die "missing argument" unless @args; + die "more than 1 argument" if @args > 1; +} sub endpoint :PathPart('end') :Chained('/action/chained/foo') :Args(1) { } # @@ -71,6 +75,7 @@ sub priority_a1 :PathPart('chained/priority_a') :Chained('/') :Args { } sub priority_a2 :PathPart('chained/priority_a') :Chained('/') :CaptureArgs(1) { } sub priority_a2_end :PathPart('end') :Chained('priority_a2') :Args(1) { } + # # Priority: Fixed args vs. chained actions # @@ -79,6 +84,14 @@ sub priority_b2 :PathPart('chained/priority_b') :Chained('/') :CaptureArgs(1) { sub priority_b2_end :PathPart('end') :Chained('priority_b2') :Args(1) { } # +# Priority: With no Args() +# +sub priority_c1 :PathPart('chained/priority_c') :Chained('/') :CaptureArgs(1) { } +sub priority_c2 :PathPart('') :Chained('priority_c1') { } +sub priority_c2_xyz :PathPart('xyz') :Chained('priority_c1') { } + + +# # Optional specification of :Args in endpoint # sub opt_args :PathPart('chained/opt_args') :Chained('/') { } @@ -132,8 +145,53 @@ sub chain_dt_b :Chained('chain_dt_a') :PathPart('end') :Args(1) { } # sub fw_dt_target :Private { } +# +# Test multiple chained actions with no captures +# +sub empty_chain_a : Chained('/') PathPart('chained/empty') CaptureArgs(0) { } +sub empty_chain_b : Chained('empty_chain_a') PathPart('') CaptureArgs(0) { } +sub empty_chain_c : Chained('empty_chain_b') PathPart('') CaptureArgs(0) { } +sub empty_chain_d : Chained('empty_chain_c') PathPart('') CaptureArgs(1) { } +sub empty_chain_e : Chained('empty_chain_d') PathPart('') CaptureArgs(0) { } +sub empty_chain_f : Chained('empty_chain_e') PathPart('') Args(1) { } + +sub mult_nopp_base : Chained('/') PathPart('chained/mult_nopp') CaptureArgs(0) { } +sub mult_nopp_all : Chained('mult_nopp_base') PathPart('') Args(0) { } +sub mult_nopp_new : Chained('mult_nopp_base') PathPart('new') Args(0) { } +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) { } + +# +# Test Choice between branches and early return logic +# Declaration order is important for $children->{$*}, since this is first match best. +# +sub cc_base : Chained('/') PathPart('chained/choose_capture') CaptureArgs(0) { } +sub cc_link : Chained('cc_base') PathPart('') CaptureArgs(0) { } +sub cc_anchor : Chained('cc_link') PathPart('anchor.html') Args(0) { } +sub cc_all : Chained('cc_base') PathPart('') Args() { } + +sub cc_a : Chained('cc_base') PathPart('') CaptureArgs(1) { } +sub cc_a_link : Chained('cc_a') PathPart('a') CaptureArgs(0) { } +sub cc_a_anchor : Chained('cc_a_link') PathPart('') Args() { } + +sub cc_b : Chained('cc_base') PathPart('b') CaptureArgs(0) { } +sub cc_b_link : Chained('cc_b') PathPart('') CaptureArgs(1) { } +sub cc_b_anchor : Chained('cc_b_link') PathPart('anchor.html') Args() { } + +# +# Test static paths vs. captures +# + +sub apan : Chained('/') CaptureArgs(0) PathPrefix { } +sub korv : Chained('apan') CaptureArgs(0) PathPart('') { } +sub wurst : Chained('apan') CaptureArgs(1) PathPart('') { } +sub static_end : Chained('korv') Args(0) { } +sub capture_end : Chained('wurst') Args(0) PathPart('') { } + sub end :Private { my ($self, $c) = @_; + return if $c->stash->{no_end}; my $out = join('; ', map { join(', ', @$_) } ($c->req->captures, $c->req->args)); $c->res->body($out);