73413659a4c18f0561530211af9ad3bf1a7c0996
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_uri_for_action.t
1 use strict;
2 use warnings;
3
4 use FindBin;
5 use lib "$FindBin::Bin/../lib";
6
7 use Test::More;
8
9 use_ok('TestApp');
10
11 my $dispatcher = TestApp->dispatcher;
12
13 #
14 #   Private Action
15 #
16 my $private_action = $dispatcher->get_action_by_path(
17                        '/class_forward_test_method'
18                      );
19
20 ok(!defined($dispatcher->uri_for_action($private_action)),
21    "Private action returns undef for URI");
22
23 #
24 #   Path Action
25 #
26 my $path_action = $dispatcher->get_action_by_path(
27                     '/action/testrelative/relative'
28                   );
29
30 is($dispatcher->uri_for_action($path_action), "/action/relative/relative",
31    "Public path action returns correct URI");
32
33 ok(!defined($dispatcher->uri_for_action($path_action, [ 'foo' ])),
34    "no URI returned for Path action when snippets are given");
35
36 #
37 #   Index Action
38 #
39 my $index_action = $dispatcher->get_action_by_path(
40                      '/action/index/index'
41                    );
42
43 ok(!defined($dispatcher->uri_for_action($index_action, [ 'foo' ])),
44    "no URI returned for index action when snippets are given");
45
46 is($dispatcher->uri_for_action($index_action),
47    "/action/index",
48    "index action returns correct path");
49
50 #
51 #   Chained Action
52 #
53 my $chained_action = $dispatcher->get_action_by_path(
54                        '/action/chained/endpoint',
55                      );
56
57 ok(!defined($dispatcher->uri_for_action($chained_action)),
58    "Chained action without captures returns undef");
59
60 ok(!defined($dispatcher->uri_for_action($chained_action, [ 1, 2 ])),
61    "Chained action with too many captures returns undef");
62
63 is($dispatcher->uri_for_action($chained_action, [ 1 ]),
64    "/chained/foo/1/end",
65    "Chained action with correct captures returns correct path");
66
67 #
68 #   Tests with Context
69 #
70 my $request = Catalyst::Request->new( {
71                 _log => Catalyst::Log->new,
72                 base => URI->new('http://127.0.0.1/foo')
73               } );
74
75 my $context = TestApp->new( {
76                 request => $request,
77                 namespace => 'yada',
78               } );
79
80
81
82
83 # this works, using $ctx
84 is($context->uri_for( 'TestApp', $context->controller('Action::Chained')->action_for('endpoint')),
85    "http://127.0.0.1/foo/yada/chained/foo/end",
86    "uri_for a controller and action");
87
88 # this fails, uri_for returns undef, why isn't this one working??
89 is( $context->uri_for_action( '/action/chained/endpoint' ),
90         'http://127.0.0.1/chained/foo/end',
91    "uri_for a controller and action as string");
92
93 # this fails, uri_for returns undef
94 is(Catalyst::uri_for_action( 'TestApp', $context->controller('Action::Chained')->action_for('endpoint')),
95    "/chained/foo/end",
96    "uri_for a controller and action, called with only class name");
97
98 # this fails, uri_for returns undef
99 is(Catalyst::uri_for_action( 'TestApp', '/action/chained/endpoint' ),
100    "/chained/foo/end",
101    "uri_for a controller and action as string, called with only class name");
102
103 # this fails, uri_for returns undef
104 is(Catalyst::uri_for_action( 'TestApp', $chained_action),
105    "/chained/foo/end",
106    "uri_for action via dispatcher, called with only class name");
107
108
109
110 is($context->uri_for($context->controller('Action')),
111    "http://127.0.0.1/foo/yada/action/",
112    "uri_for a controller");
113
114 is($context->uri_for($path_action),
115    "http://127.0.0.1/foo/action/relative/relative",
116    "uri_for correct for path action");
117
118 is($context->uri_for($path_action, qw/one two/, { q => 1 }),
119    "http://127.0.0.1/foo/action/relative/relative/one/two?q=1",
120    "uri_for correct for path action with args and query");
121
122 ok(!defined($context->uri_for($path_action, [ 'blah' ])),
123    "no URI returned by uri_for for Path action with snippets");
124
125 is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }),
126    "http://127.0.0.1/foo/chained/foo/1/end/2?q=1",
127    "uri_for correct for chained with captures, args and query");
128
129 #
130 #   More Chained with Context Tests
131 #
132 {
133     is( $context->uri_for_action( '/action/chained/endpoint2', [1,2], (3,4), { x => 5 } ),
134         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4?x=5',
135         'uri_for_action correct for chained with multiple captures and args' );
136
137     is( $context->uri_for_action( '/action/chained/endpoint2', [1,2,3,4], { x => 5 } ),
138         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4?x=5',
139         'uri_for_action correct for chained with multiple captures and args combined' );
140
141     is( $context->uri_for_action( '/action/chained/three_end', [1,2,3], (4,5,6) ),
142         'http://127.0.0.1/foo/chained/one/1/two/2/3/three/4/5/6',
143         'uri_for_action correct for chained with multiple capturing actions' );
144
145     is( $context->uri_for_action( '/action/chained/three_end', [1,2,3,4,5,6] ),
146         'http://127.0.0.1/foo/chained/one/1/two/2/3/three/4/5/6',
147         'uri_for_action correct for chained with multiple capturing actions and args combined' );
148
149     my $action_needs_two = '/action/chained/endpoint2';
150     
151     ok( ! defined( $context->uri_for_action($action_needs_two, [1],     (2,3)) ),
152         'uri_for_action returns undef for not enough captures' );
153         
154     is( $context->uri_for_action($action_needs_two,            [1,2],   (2,3)),
155         'http://127.0.0.1/foo/chained/foo2/1/2/end2/2/3',
156         'uri_for_action returns correct uri for correct captures' );
157
158     is( $context->uri_for_action($action_needs_two,            [1,2,2,3]),
159         'http://127.0.0.1/foo/chained/foo2/1/2/end2/2/3',
160         'uri_for_action returns correct uri for correct captures and args combined' );
161
162     ok( ! defined( $context->uri_for_action($action_needs_two, [1,2,3], (2,3)) ),
163         'uri_for_action returns undef for too many captures' );
164     
165     is( $context->uri_for_action($action_needs_two, [1,2],   (3)),
166         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3',
167         'uri_for_action returns uri with lesser args than specified on action' );
168
169     is( $context->uri_for_action($action_needs_two, [1,2,3]),
170         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3',
171         'uri_for_action returns uri with lesser args than specified on action with captures combined' );
172
173     is( $context->uri_for_action($action_needs_two, [1,2],   (3,4,5)),
174         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4/5',
175         'uri_for_action returns uri with more args than specified on action' );
176
177     is( $context->uri_for_action($action_needs_two, [1,2,3,4,5]),
178         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4/5',
179         'uri_for_action returns uri with more args than specified on action with captures combined' );
180
181     is( $context->uri_for_action($action_needs_two, [1,''], (3,4)),
182         'http://127.0.0.1/foo/chained/foo2/1//end2/3/4',
183         'uri_for_action returns uri with empty capture on undef capture' );
184
185     is( $context->uri_for_action($action_needs_two, [1,'',3,4]),
186         'http://127.0.0.1/foo/chained/foo2/1//end2/3/4',
187         'uri_for_action returns uri with empty capture on undef capture and args combined' );
188
189     is( $context->uri_for_action($action_needs_two, [1,2], ('',3)),
190         'http://127.0.0.1/foo/chained/foo2/1/2/end2//3',
191         'uri_for_action returns uri with empty arg on undef argument' );
192
193     is( $context->uri_for_action($action_needs_two, [1,2,'',3]),
194         'http://127.0.0.1/foo/chained/foo2/1/2/end2//3',
195         'uri_for_action returns uri with empty arg on undef argument and args combined' );
196
197     is( $context->uri_for_action($action_needs_two, [1,2], (3,'')),
198         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/',
199         'uri_for_action returns uri with empty arg on undef last argument' );
200
201     is( $context->uri_for_action($action_needs_two, [1,2,3,'']),
202         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/',
203         'uri_for_action returns uri with empty arg on undef last argument with captures combined' );
204
205     my $complex_chained = '/action/chained/empty_chain_f';
206     is( $context->uri_for_action( $complex_chained, [23], (13), {q => 3} ),
207         'http://127.0.0.1/foo/chained/empty/23/13?q=3',
208         'uri_for_action returns correct uri for chain with many empty path parts' );
209     is( $context->uri_for_action( $complex_chained, [23,13], {q => 3} ),
210         'http://127.0.0.1/foo/chained/empty/23/13?q=3',
211         'uri_for_action returns correct uri for chain with many empty path parts with captures and args combined' );
212
213     eval { $context->uri_for_action( '/does/not/exist' ) };
214     like $@, qr{^Can't find action for path '/does/not/exist'},
215         'uri_for_action croaks on nonexistent path';
216
217 }
218
219 done_testing;
220