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