Swapped out CGI::Cookie for CGI::Simple::Cookie, dumped Test::MockObject from the...
[catagits/Catalyst-Runtime.git] / t / unit_core_uri_for.t
1 use strict;
2 use warnings;
3
4 use Test::More tests => 9;
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                 request => $request,
15                 namespace => 'yada',
16               } );
17
18 is(
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
24 is(
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
30 is(
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
37 is( Catalyst::uri_for( $context, '../quux' )->as_string,
38     'http://127.0.0.1/foo/quux', 'URI for relative dot path' );
39
40 is(
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
46 # test with utf-8
47 is(
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
53 $request->base( URI->new('http://localhost:3000/') );
54 $request->match( 'orderentry/contract' );
55 is(
56     Catalyst::uri_for( $context, '/Orderentry/saveContract' )->as_string,
57     'http://localhost:3000/Orderentry/saveContract',
58     'URI for absolute path'
59 );
60
61 {
62     $request->base( URI->new('http://127.0.0.1/') );
63
64     $context->namespace('');
65
66     is( Catalyst::uri_for( $context, '/bar/baz' )->as_string,
67         'http://127.0.0.1/bar/baz', 'URI with no base or match' );
68 }
69