first cut at :ChildOf
[catagits/Catalyst-Runtime.git] / t / unit_core_uri_for_action.t
CommitLineData
ad1783ae 1#!perl
2
3use strict;
4use warnings;
5
6use FindBin;
7use lib "$FindBin::Bin/lib";
8
9use Test::More;
10
11plan tests => 12;
12
13use_ok('TestApp');
14
15my $dispatcher = TestApp->dispatcher;
16
17my $private_action = $dispatcher->get_action_by_path(
18 '/class_forward_test_method'
19 );
20
21ok(!defined($dispatcher->uri_for_action($private_action)),
22 "Private action returns undef for URI");
23
24my $path_action = $dispatcher->get_action_by_path(
25 '/action/testrelative/relative'
26 );
27
28is($dispatcher->uri_for_action($path_action), "/action/relative/relative",
29 "Public path action returns correct URI");
30
31ok(!defined($dispatcher->uri_for_action($path_action, [ 'foo' ])),
32 "no URI returned for Path action when snippets are given");
33
34my $regex_action = $dispatcher->get_action_by_path(
35 '/action/regexp/one'
36 );
37
38ok(!defined($dispatcher->uri_for_action($regex_action)),
39 "Regex action without captures returns undef");
40
41is($dispatcher->uri_for_action($regex_action, [ 'foo', 123 ]),
42 "/action/regexp/foo/123",
43 "Regex action interpolates captures correctly");
44
45my $index_action = $dispatcher->get_action_by_path(
46 '/action/index/index'
47 );
48
49ok(!defined($dispatcher->uri_for_action($index_action, [ 'foo' ])),
50 "no URI returned for index action when snippets are given");
51
52is($dispatcher->uri_for_action($index_action),
53 "/action/index",
54 "index action returns correct path");
55
56my $request = Catalyst::Request->new( {
57 base => URI->new('http://127.0.0.1/foo')
58 } );
59
60my $context = TestApp->new( {
61 request => $request,
62 namespace => 'yada',
63 } );
64
65is($context->uri_for($path_action),
66 "http://127.0.0.1/foo/action/relative/relative",
67 "uri_for correct for path action");
68
69is($context->uri_for($path_action, qw/one two/, { q => 1 }),
70 "http://127.0.0.1/foo/action/relative/relative/one/two?q=1",
71 "uri_for correct for path action with args and query");
72
73ok(!defined($context->uri_for($path_action, [ 'blah' ])),
74 "no URI returned by uri_for for Path action with snippets");
75
76is($context->uri_for($regex_action, [ 'foo', 123 ], qw/bar baz/, { q => 1 }),
77 "http://127.0.0.1/foo/action/regexp/foo/123/bar/baz?q=1",
78 "uri_for correct for regex with captures, args and query");