merged
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_uri_for.t
CommitLineData
fbcc39ad 1use strict;
2use warnings;
2689f8a4 3use FindBin qw/$Bin/;
4use lib "$FindBin::Bin/../lib";
62b64711 5use Test::More;
fbcc39ad 6use URI;
7
2689f8a4 8use_ok('TestApp');
fbcc39ad 9
fa32ac82 10my $request = Catalyst::Request->new( {
7c1c4dc6 11 _log => Catalyst::Log->new,
fa32ac82 12 base => URI->new('http://127.0.0.1/foo')
13 } );
2689f8a4 14my $dispatcher = TestApp->dispatcher;
15my $context = TestApp->new( {
fa32ac82 16 request => $request,
17 namespace => 'yada',
18 } );
fbcc39ad 19
20is(
21 Catalyst::uri_for( $context, '/bar/baz' )->as_string,
22 'http://127.0.0.1/foo/bar/baz',
23 'URI for absolute path'
24);
25
26is(
27 Catalyst::uri_for( $context, 'bar/baz' )->as_string,
28 'http://127.0.0.1/foo/yada/bar/baz',
29 'URI for relative path'
30);
31
d3e7a648 32is(
33 Catalyst::uri_for( $context, '', 'arg1', 'arg2' )->as_string,
34 'http://127.0.0.1/foo/yada/arg1/arg2',
35 'URI for undef action with args'
36);
37
38
fbcc39ad 39is( Catalyst::uri_for( $context, '../quux' )->as_string,
40 'http://127.0.0.1/foo/quux', 'URI for relative dot path' );
fdba7a9d 41
8327e2e2 42is(
43 Catalyst::uri_for( $context, 'quux', { param1 => 'value1' } )->as_string,
44 'http://127.0.0.1/foo/yada/quux?param1=value1',
45 'URI for undef action with query params'
46);
47
57e74a1e 48is (Catalyst::uri_for( $context, '/bar/wibble?' )->as_string,
49 'http://127.0.0.1/foo/bar/wibble%3F', 'Question Mark gets encoded'
50);
5d50f369 51
57e74a1e 52is( Catalyst::uri_for( $context, qw/bar wibble?/, 'with space' )->as_string,
53 'http://127.0.0.1/foo/yada/bar/wibble%3F/with%20space', 'Space gets encoded'
54);
55
f0417b32 56is(
57 Catalyst::uri_for( $context, '/bar', 'with+plus', { 'also' => 'with+plus' })->as_string,
58 'http://127.0.0.1/foo/bar/with+plus?also=with%2Bplus',
59 'Plus is not encoded'
60);
57e74a1e 61
3a6d7f15 62is(
63 Catalyst::uri_for( $context, '/bar#fragment', { param1 => 'value1' } )->as_string,
02336198 64 'http://127.0.0.1/foo/bar?param1=value1#fragment',
9d1f9508 65 'URI for path with fragment and query params 1'
3a6d7f15 66);
5a8e2ba0 67
9d1f9508 68is(
7064f69b 69 Catalyst::uri_for( $context, '0#fragment', { param1 => 'value1' } )->as_string,
70 'http://127.0.0.1/foo/yada/0?param1=value1#fragment',
71 'URI for path 0 with fragment and query params 1'
72);
73
74is(
9d1f9508 75 Catalyst::uri_for( $context, '/bar#fragment^%$', { param1 => 'value1' } )->as_string,
02336198 76 'http://127.0.0.1/foo/bar?param1=value1#fragment^%$',
9d1f9508 77 'URI for path with fragment and query params 3'
78);
79
6b9f9ef7 80is(
02336198 81 Catalyst::uri_for( $context, '/foo#bar/baz', { param1 => 'value1' } )->as_string,
82 'http://127.0.0.1/foo/foo?param1=value1#bar/baz',
83 'URI for path with fragment and query params 3'
6b9f9ef7 84);
85
1f8714f6 86is(
950282bc 87 Catalyst::uri_for( 'TestApp', '/bar/baz' )->as_string,
88 '/bar/baz',
89 'URI for absolute path, called with only class name'
90);
91
92## relative action (or path) doesn't make sense when calling as class method
93# is(
94# Catalyst::uri_for( 'TestApp', 'bar/baz' )->as_string,
95# '/yada/bar/baz',
96# 'URI for relative path, called with only class name'
97# );
98
99is(
100 Catalyst::uri_for( 'TestApp', '/', 'arg1', 'arg2' )->as_string,
101 '/arg1/arg2',
102 'URI for root action with args, called with only class name'
103);
104
105## relative action (or path) doesn't make sense when calling as class method
106# is( Catalyst::uri_for( 'TestApp', '../quux' )->as_string,
107# '/quux', 'URI for relative dot path, called with only class name' );
108
109is(
110 Catalyst::uri_for( 'TestApp', '/quux', { param1 => 'value1' } )->as_string,
111 '/quux?param1=value1',
112 'URI for quux action with query params, called with only class name'
113);
114
115is (Catalyst::uri_for( 'TestApp', '/bar/wibble?' )->as_string,
116 '/bar/wibble%3F', 'Question Mark gets encoded, called with only class name'
117);
118
119## relative action (or path) doesn't make sense when calling as class method
120# is( Catalyst::uri_for( 'TestApp', qw/bar wibble?/, 'with space' )->as_string,
121# '/yada/bar/wibble%3F/with%20space', 'Space gets encoded, called with only class name'
122# );
123
124is(
125 Catalyst::uri_for( 'TestApp', '/bar', 'with+plus', { 'also' => 'with+plus' })->as_string,
126 '/bar/with+plus?also=with%2Bplus',
127 'Plus is not encoded, called with only class name'
128);
129
5a8e2ba0 130TODO: {
131 local $TODO = 'broken by 5.7008';
132 is(
133 Catalyst::uri_for( $context, '/bar#fragment', { param1 => 'value1' } )->as_string,
134 'http://127.0.0.1/foo/bar?param1=value1#fragment',
135 'URI for path with fragment and query params'
136 );
137}
138
5789a3d8 139# test with utf-8
140is(
141 Catalyst::uri_for( $context, 'quux', { param1 => "\x{2620}" } )->as_string,
142 'http://127.0.0.1/foo/yada/quux?param1=%E2%98%A0',
143 'URI for undef action with query params in unicode'
144);
2f381252 145is(
146 Catalyst::uri_for( $context, 'quux', { 'param:1' => "foo" } )->as_string,
147 'http://127.0.0.1/foo/yada/quux?param%3A1=foo',
148 'URI for undef action with query params in unicode'
149);
5789a3d8 150
fbb513f7 151# test with object
152is(
153 Catalyst::uri_for( $context, 'quux', { param1 => $request->base } )->as_string,
154 'http://127.0.0.1/foo/yada/quux?param1=http%3A%2F%2F127.0.0.1%2Ffoo',
155 'URI for undef action with query param as object'
a8020c62 156 );
157
158# test with empty arg
159{
160 my @warnings;
161 local $SIG{__WARN__} = sub { push @warnings, @_ };
162 is(
163 Catalyst::uri_for( $context )->as_string,
164 'http://127.0.0.1/foo/yada',
165 'URI with no action'
166 );
7064f69b 167
168 is(
169 Catalyst::uri_for( $context, 0 )->as_string,
170 'http://127.0.0.1/foo/yada/0',
171 'URI with 0 path'
172 );
173
a8020c62 174 is_deeply(\@warnings, [], "No warnings with no path argument");
175}
fbb513f7 176
fa32ac82 177$request->base( URI->new('http://localhost:3000/') );
178$request->match( 'orderentry/contract' );
fdba7a9d 179is(
180 Catalyst::uri_for( $context, '/Orderentry/saveContract' )->as_string,
181 'http://localhost:3000/Orderentry/saveContract',
182 'URI for absolute path'
183);
bdcb95ef 184
185{
fa32ac82 186 $request->base( URI->new('http://127.0.0.1/') );
bdcb95ef 187
fa32ac82 188 $context->namespace('');
bdcb95ef 189
190 is( Catalyst::uri_for( $context, '/bar/baz' )->as_string,
191 'http://127.0.0.1/bar/baz', 'URI with no base or match' );
fcea752e 192
193 # test "0" as the path
194 is( Catalyst::uri_for( $context, qw/0 foo/ )->as_string,
195 'http://127.0.0.1/0/foo', '0 as path is ok'
196 );
197
bdcb95ef 198}
5789a3d8 199
d0f0fcf6 200# test with undef -- no warnings should be thrown
201{
202 my $warnings = 0;
203 local $SIG{__WARN__} = sub { $warnings++ };
204
205 Catalyst::uri_for( $context, '/bar/baz', { foo => undef } )->as_string,
206 is( $warnings, 0, "no warnings emitted" );
207}
208
7a2295bc 209# Test with parameters '/', 'foo', 'bar' - should not generate a //
210is( Catalyst::uri_for( $context, qw| / foo bar | )->as_string,
211 'http://127.0.0.1/foo/bar', 'uri is /foo/bar, not //foo/bar'
212);
213
6a99f9e6 214TODO: {
215 local $TODO = 'RFCs are for people who, erm - fix this test..';
1b5227a1 216 # Test rfc3986 reserved characters. These characters should all be escaped
217 # according to the RFC, but it is a very big feature change so I've removed it
6a99f9e6 218 no warnings; # Yes, everything in qw is sane
219 is(
220 Catalyst::uri_for( $context, qw|! * ' ( ) ; : @ & = $ / ? % # [ ] ,|, )->as_string,
1b5227a1 221 'http://127.0.0.1/%21/%2A/%27/%2B/%29/%3B/%3A/%40/%26/%3D/%24/%2C/%2F/%3F/%25/%23/%5B/%5D',
222 'rfc 3986 reserved characters'
223 );
1b5227a1 224
294773ca 225 # jshirley bug - why the hell does only one of these get encoded
226 # has been like this forever however.
227 is(
228 Catalyst::uri_for( $context, qw|{1} {2}| )->as_string,
229 'http://127.0.0.1/{1}/{2}',
230 'not-escaping unreserved characters'
231 );
232}
6a99f9e6 233
1f851263 234# make sure caller's query parameter hash isn't messed up
235{
236 my $query_params_base = {test => "one two",
237 bar => ["foo baz", "bar"]};
238 my $query_params_test = {test => "one two",
239 bar => ["foo baz", "bar"]};
240 Catalyst::uri_for($context, '/bar/baz', $query_params_test);
241 is_deeply($query_params_base, $query_params_test,
242 "uri_for() doesn't mess up query parameter hash in the caller");
243}
62b64711 244
2689f8a4 245
246{
247 my $path_action = $dispatcher->get_action_by_path(
248 '/action/path/six'
249 );
250
251 # 5.80018 is only encoding the first of the / in the arg.
252 is(
253 Catalyst::uri_for( $context, $path_action, 'foo/bar/baz' )->as_string,
254 'http://127.0.0.1/action/path/six/foo%2Fbar%2Fbaz',
255 'Escape all forward slashes in args as %2F'
256 );
257}
258
76cd735d 259{
260 my $index_not_private = $dispatcher->get_action_by_path(
261 '/action/chained/argsorder/index'
262 );
263
264 is(
265 Catalyst::uri_for( $context, $index_not_private )->as_string,
266 'http://127.0.0.1/argsorder',
267 'Return non-DispatchType::Index path for index action with args'
268 );
269}
62b64711 270
0ee04045 271{
272 package MyStringThing;
273
274 use overload '""' => sub { $_[0]->{string} }, fallback => 1;
275}
62b64711 276
0ee04045 277is(
278 Catalyst::uri_for( $context, bless( { string => 'test' }, 'MyStringThing' ) ),
279 'http://127.0.0.1/test',
280 'overloaded object handled correctly'
281);
282
283done_testing;