fix undef values in params sent to uri_with() and uri_for()
[catagits/Catalyst-Runtime.git] / t / unit_core_uri_for.t
CommitLineData
fbcc39ad 1use strict;
2use warnings;
3
d0f0fcf6 4use Test::More tests => 11;
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
5789a3d8 46# test with utf-8
47is(
48 Catalyst::uri_for( $context, 'quux', { param1 => "\x{2620}" } )->as_string,
49 'http://127.0.0.1/foo/yada/quux?param1=%E2%98%A0',
50 'URI for undef action with query params in unicode'
51);
52
fbb513f7 53# test with object
54is(
55 Catalyst::uri_for( $context, 'quux', { param1 => $request->base } )->as_string,
56 'http://127.0.0.1/foo/yada/quux?param1=http%3A%2F%2F127.0.0.1%2Ffoo',
57 'URI for undef action with query param as object'
58);
59
fa32ac82 60$request->base( URI->new('http://localhost:3000/') );
61$request->match( 'orderentry/contract' );
fdba7a9d 62is(
63 Catalyst::uri_for( $context, '/Orderentry/saveContract' )->as_string,
64 'http://localhost:3000/Orderentry/saveContract',
65 'URI for absolute path'
66);
bdcb95ef 67
68{
fa32ac82 69 $request->base( URI->new('http://127.0.0.1/') );
bdcb95ef 70
fa32ac82 71 $context->namespace('');
bdcb95ef 72
73 is( Catalyst::uri_for( $context, '/bar/baz' )->as_string,
74 'http://127.0.0.1/bar/baz', 'URI with no base or match' );
75}
5789a3d8 76
d0f0fcf6 77# test with undef -- no warnings should be thrown
78{
79 my $warnings = 0;
80 local $SIG{__WARN__} = sub { $warnings++ };
81
82 Catalyst::uri_for( $context, '/bar/baz', { foo => undef } )->as_string,
83 is( $warnings, 0, "no warnings emitted" );
84}
85