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