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