Clarrify debug documentation
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_uri_for.t
CommitLineData
fbcc39ad 1use strict;
2use warnings;
3
1f851263 4use Test::More tests => 20;
fbcc39ad 5use URI;
6
fa32ac82 7use_ok('Catalyst');
fbcc39ad 8
fa32ac82 9my $request = Catalyst::Request->new( {
10 base => URI->new('http://127.0.0.1/foo')
11 } );
fbcc39ad 12
fa32ac82 13my $context = Catalyst->new( {
14 request => $request,
15 namespace => 'yada',
16 } );
fbcc39ad 17
18is(
19 Catalyst::uri_for( $context, '/bar/baz' )->as_string,
20 'http://127.0.0.1/foo/bar/baz',
21 'URI for absolute path'
22);
23
24is(
25 Catalyst::uri_for( $context, 'bar/baz' )->as_string,
26 'http://127.0.0.1/foo/yada/bar/baz',
27 'URI for relative path'
28);
29
d3e7a648 30is(
31 Catalyst::uri_for( $context, '', 'arg1', 'arg2' )->as_string,
32 'http://127.0.0.1/foo/yada/arg1/arg2',
33 'URI for undef action with args'
34);
35
36
fbcc39ad 37is( Catalyst::uri_for( $context, '../quux' )->as_string,
38 'http://127.0.0.1/foo/quux', 'URI for relative dot path' );
fdba7a9d 39
8327e2e2 40is(
41 Catalyst::uri_for( $context, 'quux', { param1 => 'value1' } )->as_string,
42 'http://127.0.0.1/foo/yada/quux?param1=value1',
43 'URI for undef action with query params'
44);
45
57e74a1e 46is (Catalyst::uri_for( $context, '/bar/wibble?' )->as_string,
47 'http://127.0.0.1/foo/bar/wibble%3F', 'Question Mark gets encoded'
48);
5d50f369 49
57e74a1e 50is( Catalyst::uri_for( $context, qw/bar wibble?/, 'with space' )->as_string,
51 'http://127.0.0.1/foo/yada/bar/wibble%3F/with%20space', 'Space gets encoded'
52);
53
f0417b32 54is(
55 Catalyst::uri_for( $context, '/bar', 'with+plus', { 'also' => 'with+plus' })->as_string,
56 'http://127.0.0.1/foo/bar/with+plus?also=with%2Bplus',
57 'Plus is not encoded'
58);
57e74a1e 59
5789a3d8 60# test with utf-8
61is(
62 Catalyst::uri_for( $context, 'quux', { param1 => "\x{2620}" } )->as_string,
63 'http://127.0.0.1/foo/yada/quux?param1=%E2%98%A0',
64 'URI for undef action with query params in unicode'
65);
2f381252 66is(
67 Catalyst::uri_for( $context, 'quux', { 'param:1' => "foo" } )->as_string,
68 'http://127.0.0.1/foo/yada/quux?param%3A1=foo',
69 'URI for undef action with query params in unicode'
70);
5789a3d8 71
fbb513f7 72# test with object
73is(
74 Catalyst::uri_for( $context, 'quux', { param1 => $request->base } )->as_string,
75 'http://127.0.0.1/foo/yada/quux?param1=http%3A%2F%2F127.0.0.1%2Ffoo',
76 'URI for undef action with query param as object'
77);
78
fa32ac82 79$request->base( URI->new('http://localhost:3000/') );
80$request->match( 'orderentry/contract' );
fdba7a9d 81is(
82 Catalyst::uri_for( $context, '/Orderentry/saveContract' )->as_string,
83 'http://localhost:3000/Orderentry/saveContract',
84 'URI for absolute path'
85);
bdcb95ef 86
87{
fa32ac82 88 $request->base( URI->new('http://127.0.0.1/') );
bdcb95ef 89
fa32ac82 90 $context->namespace('');
bdcb95ef 91
92 is( Catalyst::uri_for( $context, '/bar/baz' )->as_string,
93 'http://127.0.0.1/bar/baz', 'URI with no base or match' );
fcea752e 94
95 # test "0" as the path
96 is( Catalyst::uri_for( $context, qw/0 foo/ )->as_string,
97 'http://127.0.0.1/0/foo', '0 as path is ok'
98 );
99
bdcb95ef 100}
5789a3d8 101
d0f0fcf6 102# test with undef -- no warnings should be thrown
103{
104 my $warnings = 0;
105 local $SIG{__WARN__} = sub { $warnings++ };
106
107 Catalyst::uri_for( $context, '/bar/baz', { foo => undef } )->as_string,
108 is( $warnings, 0, "no warnings emitted" );
109}
110
7a2295bc 111# Test with parameters '/', 'foo', 'bar' - should not generate a //
112is( Catalyst::uri_for( $context, qw| / foo bar | )->as_string,
113 'http://127.0.0.1/foo/bar', 'uri is /foo/bar, not //foo/bar'
114);
115
6a99f9e6 116TODO: {
117 local $TODO = 'RFCs are for people who, erm - fix this test..';
1b5227a1 118 # Test rfc3986 reserved characters. These characters should all be escaped
119 # according to the RFC, but it is a very big feature change so I've removed it
6a99f9e6 120 no warnings; # Yes, everything in qw is sane
121 is(
122 Catalyst::uri_for( $context, qw|! * ' ( ) ; : @ & = $ / ? % # [ ] ,|, )->as_string,
1b5227a1 123 'http://127.0.0.1/%21/%2A/%27/%2B/%29/%3B/%3A/%40/%26/%3D/%24/%2C/%2F/%3F/%25/%23/%5B/%5D',
124 'rfc 3986 reserved characters'
125 );
1b5227a1 126
294773ca 127 # jshirley bug - why the hell does only one of these get encoded
128 # has been like this forever however.
129 is(
130 Catalyst::uri_for( $context, qw|{1} {2}| )->as_string,
131 'http://127.0.0.1/{1}/{2}',
132 'not-escaping unreserved characters'
133 );
134}
6a99f9e6 135
1f851263 136# make sure caller's query parameter hash isn't messed up
137{
138 my $query_params_base = {test => "one two",
139 bar => ["foo baz", "bar"]};
140 my $query_params_test = {test => "one two",
141 bar => ["foo baz", "bar"]};
142 Catalyst::uri_for($context, '/bar/baz', $query_params_test);
143 is_deeply($query_params_base, $query_params_test,
144 "uri_for() doesn't mess up query parameter hash in the caller");
145}