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