Create branch register_actions.
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_uri_for_action.t
CommitLineData
ad1783ae 1#!perl
2
3use strict;
4use warnings;
5
6use FindBin;
ae29b412 7use lib "$FindBin::Bin/../lib";
ad1783ae 8
9use Test::More;
10
8b13f357 11plan tests => 28;
ad1783ae 12
13use_ok('TestApp');
14
15my $dispatcher = TestApp->dispatcher;
16
8b13f357 17#
18# Private Action
19#
ad1783ae 20my $private_action = $dispatcher->get_action_by_path(
21 '/class_forward_test_method'
22 );
23
24ok(!defined($dispatcher->uri_for_action($private_action)),
25 "Private action returns undef for URI");
26
8b13f357 27#
28# Path Action
29#
ad1783ae 30my $path_action = $dispatcher->get_action_by_path(
31 '/action/testrelative/relative'
32 );
33
34is($dispatcher->uri_for_action($path_action), "/action/relative/relative",
35 "Public path action returns correct URI");
36
37ok(!defined($dispatcher->uri_for_action($path_action, [ 'foo' ])),
38 "no URI returned for Path action when snippets are given");
39
8b13f357 40#
41# Regex Action
42#
ad1783ae 43my $regex_action = $dispatcher->get_action_by_path(
44 '/action/regexp/one'
45 );
46
47ok(!defined($dispatcher->uri_for_action($regex_action)),
48 "Regex action without captures returns undef");
49
792b40ac 50ok(!defined($dispatcher->uri_for_action($regex_action, [ 1, 2, 3 ])),
51 "Regex action with too many captures returns undef");
52
ad1783ae 53is($dispatcher->uri_for_action($regex_action, [ 'foo', 123 ]),
54 "/action/regexp/foo/123",
55 "Regex action interpolates captures correctly");
56
8b13f357 57#
58# Index Action
59#
ad1783ae 60my $index_action = $dispatcher->get_action_by_path(
61 '/action/index/index'
62 );
63
64ok(!defined($dispatcher->uri_for_action($index_action, [ 'foo' ])),
65 "no URI returned for index action when snippets are given");
66
67is($dispatcher->uri_for_action($index_action),
68 "/action/index",
69 "index action returns correct path");
70
8b13f357 71#
72# Chained Action
73#
5882c86e 74my $chained_action = $dispatcher->get_action_by_path(
75 '/action/chained/endpoint',
792b40ac 76 );
77
5882c86e 78ok(!defined($dispatcher->uri_for_action($chained_action)),
79 "Chained action without captures returns undef");
792b40ac 80
5882c86e 81ok(!defined($dispatcher->uri_for_action($chained_action, [ 1, 2 ])),
82 "Chained action with too many captures returns undef");
792b40ac 83
5882c86e 84is($dispatcher->uri_for_action($chained_action, [ 1 ]),
85 "/chained/foo/1/end",
86 "Chained action with correct captures returns correct path");
792b40ac 87
8b13f357 88#
89# Tests with Context
90#
ad1783ae 91my $request = Catalyst::Request->new( {
92 base => URI->new('http://127.0.0.1/foo')
93 } );
94
95my $context = TestApp->new( {
96 request => $request,
97 namespace => 'yada',
98 } );
99
100is($context->uri_for($path_action),
101 "http://127.0.0.1/foo/action/relative/relative",
102 "uri_for correct for path action");
103
104is($context->uri_for($path_action, qw/one two/, { q => 1 }),
105 "http://127.0.0.1/foo/action/relative/relative/one/two?q=1",
106 "uri_for correct for path action with args and query");
107
108ok(!defined($context->uri_for($path_action, [ 'blah' ])),
109 "no URI returned by uri_for for Path action with snippets");
110
111is($context->uri_for($regex_action, [ 'foo', 123 ], qw/bar baz/, { q => 1 }),
112 "http://127.0.0.1/foo/action/regexp/foo/123/bar/baz?q=1",
113 "uri_for correct for regex with captures, args and query");
792b40ac 114
5882c86e 115is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }),
116 "http://127.0.0.1/foo/chained/foo/1/end/2?q=1",
117 "uri_for correct for chained with captures, args and query");
8b13f357 118
119#
120# More Chained with Context Tests
121#
122{
ae29b412 123 sub __action { shift->get_action_by_path( @_ ) }
8b13f357 124
ae29b412 125 is( $context->uri_for( __action( $dispatcher, '/action/chained/endpoint2' ), [1,2], (3,4), { x => 5 } ),
8b13f357 126 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4?x=5',
127 'uri_for correct for chained with multiple captures and args' );
128
ae29b412 129 is( $context->uri_for( __action( $dispatcher, '/action/chained/three_end' ), [1,2,3], (4,5,6) ),
8b13f357 130 'http://127.0.0.1/foo/chained/one/1/two/2/3/three/4/5/6',
131 'uri_for correct for chained with multiple capturing actions' );
132
ae29b412 133 my $action_needs_two = __action( $dispatcher, '/action/chained/endpoint2' );
8b13f357 134
135 ok( ! defined( $context->uri_for($action_needs_two, [1], (2,3)) ),
136 'uri_for returns undef for not enough captures' );
137
138 is( $context->uri_for($action_needs_two, [1,2], (2,3)),
139 'http://127.0.0.1/foo/chained/foo2/1/2/end2/2/3',
140 'uri_for returns correct uri for correct captures' );
141
142 ok( ! defined( $context->uri_for($action_needs_two, [1,2,3], (2,3)) ),
143 'uri_for returns undef for too many captures' );
144
145 is( $context->uri_for($action_needs_two, [1,2], (3)),
146 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3',
147 'uri_for returns uri with lesser args than specified on action' );
148
149 is( $context->uri_for($action_needs_two, [1,2], (3,4,5)),
150 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4/5',
151 'uri_for returns uri with more args than specified on action' );
152
084f770a 153 is( $context->uri_for($action_needs_two, [1,''], (3,4)),
8b13f357 154 'http://127.0.0.1/foo/chained/foo2/1//end2/3/4',
155 'uri_for returns uri with empty capture on undef capture' );
156
084f770a 157 is( $context->uri_for($action_needs_two, [1,2], ('',3)),
8b13f357 158 'http://127.0.0.1/foo/chained/foo2/1/2/end2//3',
159 'uri_for returns uri with empty arg on undef argument' );
160
084f770a 161 is( $context->uri_for($action_needs_two, [1,2], (3,'')),
8b13f357 162 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/',
163 'uri_for returns uri with empty arg on undef last argument' );
164
ae29b412 165 my $complex_chained = __action( $dispatcher, '/action/chained/empty_chain_f' );
8b13f357 166 is( $context->uri_for( $complex_chained, [23], (13), {q => 3} ),
167 'http://127.0.0.1/foo/chained/empty/23/13?q=3',
168 'uri_for returns correct uri for chain with many empty path parts' );
169}
170
171