r12983@zaphod: kd | 2008-04-28 18:10:27 +1000
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained.pm
index e89b8e0..90b1efe 100644 (file)
@@ -158,6 +158,33 @@ 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};