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