Test uri_for with path = 0
[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 is($context->uri_for($context->controller('Action')),
81    "http://127.0.0.1/foo/yada/action/",
82    "uri_for a controller");
83
84 is($context->uri_for($path_action),
85    "http://127.0.0.1/foo/action/relative/relative",
86    "uri_for correct for path action");
87
88 is($context->uri_for($path_action, qw/one two/, { q => 1 }),
89    "http://127.0.0.1/foo/action/relative/relative/one/two?q=1",
90    "uri_for correct for path action with args and query");
91
92 ok(!defined($context->uri_for($path_action, [ 'blah' ])),
93    "no URI returned by uri_for for Path action with snippets");
94
95 is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }),
96    "http://127.0.0.1/foo/chained/foo/1/end/2?q=1",
97    "uri_for correct for chained with captures, args and query");
98
99 #
100 #   More Chained with Context Tests
101 #
102 {
103     is( $context->uri_for_action( '/action/chained/endpoint2', [1,2], (3,4), { x => 5 } ),
104         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4?x=5',
105         'uri_for_action correct for chained with multiple captures and args' );
106
107     is( $context->uri_for_action( '/action/chained/endpoint2', [1,2,3,4], { x => 5 } ),
108         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4?x=5',
109         'uri_for_action correct for chained with multiple captures and args combined' );
110
111     is( $context->uri_for_action( '/action/chained/three_end', [1,2,3], (4,5,6) ),
112         'http://127.0.0.1/foo/chained/one/1/two/2/3/three/4/5/6',
113         'uri_for_action correct for chained with multiple capturing actions' );
114
115     is( $context->uri_for_action( '/action/chained/three_end', [1,2,3,4,5,6] ),
116         'http://127.0.0.1/foo/chained/one/1/two/2/3/three/4/5/6',
117         'uri_for_action correct for chained with multiple capturing actions and args combined' );
118
119     my $action_needs_two = '/action/chained/endpoint2';
120     
121     ok( ! defined( $context->uri_for_action($action_needs_two, [1],     (2,3)) ),
122         'uri_for_action returns undef for not enough captures' );
123         
124     is( $context->uri_for_action($action_needs_two,            [1,2],   (2,3)),
125         'http://127.0.0.1/foo/chained/foo2/1/2/end2/2/3',
126         'uri_for_action returns correct uri for correct captures' );
127
128     is( $context->uri_for_action($action_needs_two,            [1,2,2,3]),
129         'http://127.0.0.1/foo/chained/foo2/1/2/end2/2/3',
130         'uri_for_action returns correct uri for correct captures and args combined' );
131
132     ok( ! defined( $context->uri_for_action($action_needs_two, [1,2,3], (2,3)) ),
133         'uri_for_action returns undef for too many captures' );
134     
135     is( $context->uri_for_action($action_needs_two, [1,2],   (3)),
136         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3',
137         'uri_for_action returns uri with lesser args than specified on action' );
138
139     is( $context->uri_for_action($action_needs_two, [1,2,3]),
140         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3',
141         'uri_for_action returns uri with lesser args than specified on action with captures combined' );
142
143     is( $context->uri_for_action($action_needs_two, [1,2],   (3,4,5)),
144         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4/5',
145         'uri_for_action returns uri with more args than specified on action' );
146
147     is( $context->uri_for_action($action_needs_two, [1,2,3,4,5]),
148         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4/5',
149         'uri_for_action returns uri with more args than specified on action with captures combined' );
150
151     is( $context->uri_for_action($action_needs_two, [1,''], (3,4)),
152         'http://127.0.0.1/foo/chained/foo2/1//end2/3/4',
153         'uri_for_action returns uri with empty capture on undef capture' );
154
155     is( $context->uri_for_action($action_needs_two, [1,'',3,4]),
156         'http://127.0.0.1/foo/chained/foo2/1//end2/3/4',
157         'uri_for_action returns uri with empty capture on undef capture and args combined' );
158
159     is( $context->uri_for_action($action_needs_two, [1,2], ('',3)),
160         'http://127.0.0.1/foo/chained/foo2/1/2/end2//3',
161         'uri_for_action returns uri with empty arg on undef argument' );
162
163     is( $context->uri_for_action($action_needs_two, [1,2,'',3]),
164         'http://127.0.0.1/foo/chained/foo2/1/2/end2//3',
165         'uri_for_action returns uri with empty arg on undef argument and args combined' );
166
167     is( $context->uri_for_action($action_needs_two, [1,2], (3,'')),
168         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/',
169         'uri_for_action returns uri with empty arg on undef last argument' );
170
171     is( $context->uri_for_action($action_needs_two, [1,2,3,'']),
172         'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/',
173         'uri_for_action returns uri with empty arg on undef last argument with captures combined' );
174
175     my $complex_chained = '/action/chained/empty_chain_f';
176     is( $context->uri_for_action( $complex_chained, [23], (13), {q => 3} ),
177         'http://127.0.0.1/foo/chained/empty/23/13?q=3',
178         'uri_for_action returns correct uri for chain with many empty path parts' );
179     is( $context->uri_for_action( $complex_chained, [23,13], {q => 3} ),
180         'http://127.0.0.1/foo/chained/empty/23/13?q=3',
181         'uri_for_action returns correct uri for chain with many empty path parts with captures and args combined' );
182
183     eval { $context->uri_for_action( '/does/not/exist' ) };
184     like $@, qr{^Can't find action for path '/does/not/exist'},
185         'uri_for_action croaks on nonexistent path';
186
187 }
188
189 done_testing;
190