e159a7ba5b493a3cfd656984299ea8e1cecb0f4a
[catagits/Catalyst-Runtime.git] / t / unit_core_uri_for.t
1 use strict;
2 use warnings;
3
4 use Test::More tests => 20;
5 use URI;
6
7 use_ok('Catalyst');
8
9 my $request = Catalyst::Request->new( {
10                 base => URI->new('http://127.0.0.1/foo')
11               } );
12
13 my $context = Catalyst->new( {
14                 context => Catalyst::Context->new( request => $request, namespace => 'yada' ),
15               } );
16
17 is(
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
23 is(
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
29 is(
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
36 is( Catalyst::uri_for( $context, '../quux' )->as_string,
37     'http://127.0.0.1/foo/quux', 'URI for relative dot path' );
38
39 is(
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
45 is (Catalyst::uri_for( $context, '/bar/wibble?' )->as_string,
46    'http://127.0.0.1/foo/bar/wibble%3F', 'Question Mark gets encoded'
47 );
48    
49 is( 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
53 is(
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 );
58
59 # test with utf-8
60 is(
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 );
65 is(
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 );
70
71 # test with object
72 is(
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
78 $request->base( URI->new('http://localhost:3000/') );
79 $request->match( 'orderentry/contract' );
80 is(
81     Catalyst::uri_for( $context, '/Orderentry/saveContract' )->as_string,
82     'http://localhost:3000/Orderentry/saveContract',
83     'URI for absolute path'
84 );
85
86 {
87     $request->base( URI->new('http://127.0.0.1/') );
88
89     $context->namespace('');
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' );
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
99 }
100
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
110 # Test with parameters '/', 'foo', 'bar' - should not generate a //
111 is( 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
115 TODO: {
116     local $TODO = 'RFCs are for people who, erm - fix this test..';
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
119     no warnings; # Yes, everything in qw is sane
120     is(
121         Catalyst::uri_for( $context, qw|! * ' ( ) ; : @ & = $ / ? % # [ ] ,|, )->as_string,
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     );
125
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 }
134
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 }