Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / unit_core_uri_for.t
diff --git a/t/unit_core_uri_for.t b/t/unit_core_uri_for.t
new file mode 100644 (file)
index 0000000..4b02021
--- /dev/null
@@ -0,0 +1,49 @@
+use strict;
+use warnings;
+
+use Test::More tests => 6;
+use Test::MockObject;
+use URI;
+
+my $request = Test::MockObject->new;
+$request->mock( 'base', sub { URI->new('http://127.0.0.1/foo') } );
+
+my $context = Test::MockObject->new;
+$context->mock( 'request',   sub { $request } );
+$context->mock( 'namespace', sub { 'yada' } );
+
+use_ok('Catalyst');
+
+is(
+    Catalyst::uri_for( $context, '/bar/baz' )->as_string,
+    'http://127.0.0.1/foo/bar/baz',
+    'URI for absolute path'
+);
+
+is(
+    Catalyst::uri_for( $context, 'bar/baz' )->as_string,
+    'http://127.0.0.1/foo/yada/bar/baz',
+    'URI for relative path'
+);
+
+is( Catalyst::uri_for( $context, '../quux' )->as_string,
+    'http://127.0.0.1/foo/quux', 'URI for relative dot path' );
+
+$request->mock( 'base',  sub { URI->new('http://localhost:3000/') } );
+$request->mock( 'match', sub { 'orderentry/contract' } );
+is(
+    Catalyst::uri_for( $context, '/Orderentry/saveContract' )->as_string,
+    'http://localhost:3000/Orderentry/saveContract',
+    'URI for absolute path'
+);
+
+{
+    $request->mock( 'base', sub { URI->new('http://127.0.0.1/') } );
+
+    my $context = Test::MockObject->new;
+    $context->mock( 'request',   sub { $request } );
+    $context->mock( 'namespace', sub { '' } );
+
+    is( Catalyst::uri_for( $context, '/bar/baz' )->as_string,
+        'http://127.0.0.1/bar/baz', 'URI with no base or match' );
+}