61210dc77392e74481df815e8687472b107be4a2
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained.pm
1 package TestApp::Controller::Action::Chained;
2
3 use strict;
4 use warnings;
5
6 use base qw/Catalyst::Controller/;
7
8 sub begin :Private { }
9
10 #
11 #   TODO
12 #   :Chained('') means what?
13 #
14
15 #
16 #   Simple parent/child action test
17 #
18 sub foo  :PathPart('chained/foo')  :CaptureArgs(1) :Chained('/') { }
19 sub endpoint  :PathPart('end')  :Chained('/action/chained/foo')  :Args(1) { }
20
21 #
22 #   Parent/child test with two args each
23 #
24 sub foo2 :PathPart('chained/foo2') :CaptureArgs(2) :Chained('/') { }
25 sub endpoint2 :PathPart('end2') :Chained('/action/chained/foo2') :Args(2) { }
26
27 #
28 #   Relative specification of parent action
29 #
30 sub bar :PathPart('chained/bar') :Chained('/') :CaptureArgs(0) { }
31 sub finale :PathPart('') :Chained('bar') :Args { }
32
33 #
34 #   three chain with concurrent endpoints
35 #
36 sub one   :PathPart('chained/one') :Chained('/')                   :CaptureArgs(1) { }
37 sub two   :PathPart('two')         :Chained('/action/chained/one') :CaptureArgs(2) { }
38 sub three_end :PathPart('three')       :Chained('two') :Args(3) { }
39 sub one_end   :PathPart('chained/one') :Chained('/')   :Args(1) { }
40 sub two_end   :PathPart('two')         :Chained('one') :Args(2) { }
41
42 #
43 #   Dispatch on number of arguments
44 #
45 sub multi1 :PathPart('chained/multi') :Chained('/') :Args(1) { }
46 sub multi2 :PathPart('chained/multi') :Chained('/') :Args(2) { }
47
48 #
49 #   Roots in an action defined in a higher controller
50 #
51 sub higher_root :PathPart('bar') :Chained('/action/chained/foo/higher_root') :Args(1) { }
52
53 #
54 #   Controller -> subcontroller -> controller
55 #
56 sub pcp1 :PathPart('chained/pcp1')  :Chained('/')                        :CaptureArgs(1) { }
57 sub pcp3 :Chained('/action/chained/foo/pcp2') :Args(1)     { }
58
59 #
60 #   Dispatch on capture number
61 #
62 sub multi_cap1 :PathPart('chained/multi_cap') :Chained('/') :CaptureArgs(1) { }
63 sub multi_cap2 :PathPart('chained/multi_cap') :Chained('/') :CaptureArgs(2) { }
64 sub multi_cap_end1 :PathPart('baz') :Chained('multi_cap1') :Args(0) { }
65 sub multi_cap_end2 :PathPart('baz') :Chained('multi_cap2') :Args(0) { }
66
67 #
68 #   Priority: Slurpy args vs. chained actions
69 #
70 sub priority_a1 :PathPart('chained/priority_a') :Chained('/') :Args { }
71 sub priority_a2 :PathPart('chained/priority_a') :Chained('/') :CaptureArgs(1) { }
72 sub priority_a2_end :PathPart('end') :Chained('priority_a2') :Args(1) { }
73
74
75 #
76 #   Priority: Fixed args vs. chained actions
77 #
78 sub priority_b1 :PathPart('chained/priority_b') :Chained('/') :Args(3) { }
79 sub priority_b2 :PathPart('chained/priority_b') :Chained('/') :CaptureArgs(1) { }
80 sub priority_b2_end :PathPart('end') :Chained('priority_b2') :Args(1) { }
81
82 #
83 #   Priority: With no Args()
84 #
85 sub priority_c1 :PathPart('chained/priority_c') :Chained('/') :CaptureArgs(1) { }
86 sub priority_c2 :PathPart('') :Chained('priority_c1') { }
87 sub priority_c2_xyz :PathPart('xyz') :Chained('priority_c1')  { }
88
89
90 #
91 #   Optional specification of :Args in endpoint
92 #
93 sub opt_args :PathPart('chained/opt_args') :Chained('/') { }
94
95 #
96 #   Optional PathPart test -> /chained/optpp/*/opt_pathpart/*
97 #
98 sub opt_pp_start :Chained('/') :PathPart('chained/optpp') :CaptureArgs(1) { }
99 sub opt_pathpart :Chained('opt_pp_start') :Args(1) { }
100
101 #
102 #   Optional Args *and* PathPart -> /chained/optall/*/oa/...
103 #
104 sub opt_all_start :Chained('/') :PathPart('chained/optall') :CaptureArgs(1) { }
105 sub oa :Chained('opt_all_start') { }
106
107 #
108 #   :Chained is the same as :Chained('/')
109 #
110 sub rootdef :Chained :PathPart('chained/rootdef') :Args(1) { }
111
112 #
113 #   the ParentChain controller chains to this action by
114 #   specifying :Chained('.')
115 #
116 sub parentchain :Chained('/') :PathPart('chained/parentchain') :CaptureArgs(1) { }
117
118 #
119 #   This is just for a test that a loose end is not callable
120 #
121 sub loose :Chained :PathPart('chained/loose') CaptureArgs(1) { }
122
123 #
124 #   Forwarding out of the middle of a chain.
125 #
126 sub chain_fw_a :Chained :PathPart('chained/chain_fw') :CaptureArgs(1) {
127     $_[1]->forward( '/action/chained/fw_dt_target' );
128 }
129 sub chain_fw_b :Chained('chain_fw_a') :PathPart('end') :Args(1) { }
130
131 #
132 #   Detaching out of the middle of a chain.
133 #
134 sub chain_dt_a :Chained :PathPart('chained/chain_dt') :CaptureArgs(1) {
135     $_[1]->detach( '/action/chained/fw_dt_target' );
136 }
137 sub chain_dt_b :Chained('chain_dt_a') :PathPart('end') :Args(1) { }
138
139 #
140 #   Target for former forward and chain tests.
141 #
142 sub fw_dt_target :Private { }
143
144 #
145 #   Test multiple chained actions with no captures
146 #
147 sub empty_chain_a : Chained('/')             PathPart('chained/empty') CaptureArgs(0) { }
148 sub empty_chain_b : Chained('empty_chain_a') PathPart('')              CaptureArgs(0) { }
149 sub empty_chain_c : Chained('empty_chain_b') PathPart('')              CaptureArgs(0) { }
150 sub empty_chain_d : Chained('empty_chain_c') PathPart('')              CaptureArgs(1) { }
151 sub empty_chain_e : Chained('empty_chain_d') PathPart('')              CaptureArgs(0) { }
152 sub empty_chain_f : Chained('empty_chain_e') PathPart('')              Args(1)        { }
153
154 sub mult_nopp_base  : Chained('/') PathPart('chained/mult_nopp') CaptureArgs(0) { }
155 sub mult_nopp_all   : Chained('mult_nopp_base') PathPart('') Args(0) { }
156 sub mult_nopp_new   : Chained('mult_nopp_base') PathPart('new') Args(0) { }
157 sub mult_nopp_id    : Chained('mult_nopp_base') PathPart('') CaptureArgs(1) { }
158 sub mult_nopp_idall : Chained('mult_nopp_id') PathPart('') Args(0) { }
159 sub mult_nopp_idnew : Chained('mult_nopp_id') PathPart('new') Args(0) { }
160
161 #
162 #       Test Choice between branches and early return logic
163 #   Declaration order is important for $children->{$*}, since this is first match best.
164 #
165 sub cc_base     : Chained('/')           PathPart('chained/choose_capture') CaptureArgs(0) { }
166 sub cc_link     : Chained('cc_base') PathPart('')                                               CaptureArgs(0) { }
167 sub cc_anchor   : Chained('cc_link') PathPart('anchor.html')                    Args(0)            { }
168 sub cc_all      : Chained('cc_base') PathPart('')                                               Args()             { }
169
170 sub cc_a                : Chained('cc_base')    PathPart('')    CaptureArgs(1) { }
171 sub cc_a_link   : Chained('cc_a')               PathPart('a')   CaptureArgs(0) { }
172 sub cc_a_anchor : Chained('cc_a_link')  PathPart('')    Args()             { }
173
174 sub cc_b                : Chained('cc_base')    PathPart('b')                           CaptureArgs(0) { }
175 sub cc_b_link   : Chained('cc_b')               PathPart('')                            CaptureArgs(1) { }
176 sub cc_b_anchor : Chained('cc_b_link')  PathPart('anchor.html')         Args()             { }
177
178 sub end :Private {
179   my ($self, $c) = @_;
180   return if $c->stash->{no_end};
181   my $out = join('; ', map { join(', ', @$_) }
182                          ($c->req->captures, $c->req->args));
183   $c->res->body($out);
184 }
185
186 1;