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