more tests for escaping fragment
[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,
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 68
69is(
70 Catalyst::uri_for( $context, '/bar#fragment\x{2620}', { param1 => 'value1' } )->as_string,
71 'http://127.0.0.1/foo/bar?param1=value1#fragment%5Cx%7B2620%7D',
72 'URI for path with fragment and query params 2'
73);
74
75
76is(
77 Catalyst::uri_for( $context, '/bar#fragment^%$', { param1 => 'value1' } )->as_string,
78 'http://127.0.0.1/foo/bar?param1=value1#fragment%5E%25%24',
79 'URI for path with fragment and query params 3'
80);
81
82
5789a3d8 83# test with utf-8
84is(
85 Catalyst::uri_for( $context, 'quux', { param1 => "\x{2620}" } )->as_string,
86 'http://127.0.0.1/foo/yada/quux?param1=%E2%98%A0',
87 'URI for undef action with query params in unicode'
88);
2f381252 89is(
90 Catalyst::uri_for( $context, 'quux', { 'param:1' => "foo" } )->as_string,
91 'http://127.0.0.1/foo/yada/quux?param%3A1=foo',
92 'URI for undef action with query params in unicode'
93);
5789a3d8 94
fbb513f7 95# test with object
96is(
97 Catalyst::uri_for( $context, 'quux', { param1 => $request->base } )->as_string,
98 'http://127.0.0.1/foo/yada/quux?param1=http%3A%2F%2F127.0.0.1%2Ffoo',
99 'URI for undef action with query param as object'
100);
101
fa32ac82 102$request->base( URI->new('http://localhost:3000/') );
103$request->match( 'orderentry/contract' );
fdba7a9d 104is(
105 Catalyst::uri_for( $context, '/Orderentry/saveContract' )->as_string,
106 'http://localhost:3000/Orderentry/saveContract',
107 'URI for absolute path'
108);
bdcb95ef 109
110{
fa32ac82 111 $request->base( URI->new('http://127.0.0.1/') );
bdcb95ef 112
fa32ac82 113 $context->namespace('');
bdcb95ef 114
115 is( Catalyst::uri_for( $context, '/bar/baz' )->as_string,
116 'http://127.0.0.1/bar/baz', 'URI with no base or match' );
fcea752e 117
118 # test "0" as the path
119 is( Catalyst::uri_for( $context, qw/0 foo/ )->as_string,
120 'http://127.0.0.1/0/foo', '0 as path is ok'
121 );
122
bdcb95ef 123}
5789a3d8 124
d0f0fcf6 125# test with undef -- no warnings should be thrown
126{
127 my $warnings = 0;
128 local $SIG{__WARN__} = sub { $warnings++ };
129
130 Catalyst::uri_for( $context, '/bar/baz', { foo => undef } )->as_string,
131 is( $warnings, 0, "no warnings emitted" );
132}
133
7a2295bc 134# Test with parameters '/', 'foo', 'bar' - should not generate a //
135is( Catalyst::uri_for( $context, qw| / foo bar | )->as_string,
136 'http://127.0.0.1/foo/bar', 'uri is /foo/bar, not //foo/bar'
137);
138
6a99f9e6 139TODO: {
140 local $TODO = 'RFCs are for people who, erm - fix this test..';
1b5227a1 141 # Test rfc3986 reserved characters. These characters should all be escaped
142 # according to the RFC, but it is a very big feature change so I've removed it
6a99f9e6 143 no warnings; # Yes, everything in qw is sane
144 is(
145 Catalyst::uri_for( $context, qw|! * ' ( ) ; : @ & = $ / ? % # [ ] ,|, )->as_string,
1b5227a1 146 'http://127.0.0.1/%21/%2A/%27/%2B/%29/%3B/%3A/%40/%26/%3D/%24/%2C/%2F/%3F/%25/%23/%5B/%5D',
147 'rfc 3986 reserved characters'
148 );
1b5227a1 149
294773ca 150 # jshirley bug - why the hell does only one of these get encoded
151 # has been like this forever however.
152 is(
153 Catalyst::uri_for( $context, qw|{1} {2}| )->as_string,
154 'http://127.0.0.1/{1}/{2}',
155 'not-escaping unreserved characters'
156 );
157}
6a99f9e6 158
1f851263 159# make sure caller's query parameter hash isn't messed up
160{
161 my $query_params_base = {test => "one two",
162 bar => ["foo baz", "bar"]};
163 my $query_params_test = {test => "one two",
164 bar => ["foo baz", "bar"]};
165 Catalyst::uri_for($context, '/bar/baz', $query_params_test);
166 is_deeply($query_params_base, $query_params_test,
167 "uri_for() doesn't mess up query parameter hash in the caller");
168}
62b64711 169
2689f8a4 170
171{
172 my $path_action = $dispatcher->get_action_by_path(
173 '/action/path/six'
174 );
175
176 # 5.80018 is only encoding the first of the / in the arg.
177 is(
178 Catalyst::uri_for( $context, $path_action, 'foo/bar/baz' )->as_string,
179 'http://127.0.0.1/action/path/six/foo%2Fbar%2Fbaz',
180 'Escape all forward slashes in args as %2F'
181 );
182}
183
76cd735d 184{
185 my $index_not_private = $dispatcher->get_action_by_path(
186 '/action/chained/argsorder/index'
187 );
188
189 is(
190 Catalyst::uri_for( $context, $index_not_private )->as_string,
191 'http://127.0.0.1/argsorder',
192 'Return non-DispatchType::Index path for index action with args'
193 );
194}
62b64711 195
0ee04045 196{
197 package MyStringThing;
198
199 use overload '""' => sub { $_[0]->{string} }, fallback => 1;
200}
62b64711 201
0ee04045 202is(
203 Catalyst::uri_for( $context, bless( { string => 'test' }, 'MyStringThing' ) ),
204 'http://127.0.0.1/test',
205 'overloaded object handled correctly'
206);
207
208done_testing;