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