added test for ->view() with one view not returning a blessed instance
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_uri_for_action.t
CommitLineData
ad1783ae 1#!perl
2
3use strict;
4use warnings;
5
6use FindBin;
42da66a9 7use lib "$FindBin::Bin/../lib";
ad1783ae 8
9use Test::More;
10
6ab73369 11plan tests => 33;
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
6ab73369 57is($dispatcher->uri_for_action($regex_action, [ 'foo/bar', 123 ]),
58 "/action/regexp/foo%2Fbar/123",
59 "Regex action interpolates captures correctly and url encodes /");
60
8b13f357 61#
62# Index Action
63#
ad1783ae 64my $index_action = $dispatcher->get_action_by_path(
65 '/action/index/index'
66 );
67
68ok(!defined($dispatcher->uri_for_action($index_action, [ 'foo' ])),
69 "no URI returned for index action when snippets are given");
70
71is($dispatcher->uri_for_action($index_action),
72 "/action/index",
73 "index action returns correct path");
74
8b13f357 75#
76# Chained Action
77#
5882c86e 78my $chained_action = $dispatcher->get_action_by_path(
79 '/action/chained/endpoint',
792b40ac 80 );
81
5882c86e 82ok(!defined($dispatcher->uri_for_action($chained_action)),
83 "Chained action without captures returns undef");
792b40ac 84
5882c86e 85ok(!defined($dispatcher->uri_for_action($chained_action, [ 1, 2 ])),
86 "Chained action with too many captures returns undef");
792b40ac 87
5882c86e 88is($dispatcher->uri_for_action($chained_action, [ 1 ]),
89 "/chained/foo/1/end",
90 "Chained action with correct captures returns correct path");
792b40ac 91
8b13f357 92#
93# Tests with Context
94#
ad1783ae 95my $request = Catalyst::Request->new( {
96 base => URI->new('http://127.0.0.1/foo')
97 } );
98
99my $context = TestApp->new( {
100 request => $request,
101 namespace => 'yada',
102 } );
103
104is($context->uri_for($path_action),
105 "http://127.0.0.1/foo/action/relative/relative",
106 "uri_for correct for path action");
107
108is($context->uri_for($path_action, qw/one two/, { q => 1 }),
109 "http://127.0.0.1/foo/action/relative/relative/one/two?q=1",
110 "uri_for correct for path action with args and query");
111
6ab73369 112is($context->uri_for($path_action, qw|one/quux two|),
113 "http://127.0.0.1/foo/action/relative/relative/one%2Fquux/two",
114 "uri_for correctly url encoded for path action with args containing /");
115
ad1783ae 116ok(!defined($context->uri_for($path_action, [ 'blah' ])),
117 "no URI returned by uri_for for Path action with snippets");
118
119is($context->uri_for($regex_action, [ 'foo', 123 ], qw/bar baz/, { q => 1 }),
120 "http://127.0.0.1/foo/action/regexp/foo/123/bar/baz?q=1",
121 "uri_for correct for regex with captures, args and query");
792b40ac 122
5882c86e 123is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }),
124 "http://127.0.0.1/foo/chained/foo/1/end/2?q=1",
125 "uri_for correct for chained with captures, args and query");
8b13f357 126
127#
128# More Chained with Context Tests
129#
130{
833b385e 131 is( $context->uri_for_action( '/action/chained/endpoint2', [1,2], (3,4), { x => 5 } ),
8b13f357 132 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4?x=5',
833b385e 133 'uri_for_action correct for chained with multiple captures and args' );
8b13f357 134
833b385e 135 is( $context->uri_for_action( '/action/chained/three_end', [1,2,3], (4,5,6) ),
8b13f357 136 'http://127.0.0.1/foo/chained/one/1/two/2/3/three/4/5/6',
833b385e 137 'uri_for_action correct for chained with multiple capturing actions' );
8b13f357 138
833b385e 139 my $action_needs_two = '/action/chained/endpoint2';
8b13f357 140
833b385e 141 ok( ! defined( $context->uri_for_action($action_needs_two, [1], (2,3)) ),
142 'uri_for_action returns undef for not enough captures' );
8b13f357 143
833b385e 144 is( $context->uri_for_action($action_needs_two, [1,2], (2,3)),
8b13f357 145 'http://127.0.0.1/foo/chained/foo2/1/2/end2/2/3',
833b385e 146 'uri_for_action returns correct uri for correct captures' );
8b13f357 147
833b385e 148 ok( ! defined( $context->uri_for_action($action_needs_two, [1,2,3], (2,3)) ),
149 'uri_for_action returns undef for too many captures' );
8b13f357 150
833b385e 151 is( $context->uri_for_action($action_needs_two, [1,2], (3)),
8b13f357 152 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3',
833b385e 153 'uri_for_action returns uri with lesser args than specified on action' );
8b13f357 154
833b385e 155 is( $context->uri_for_action($action_needs_two, [1,2], (3,4,5)),
8b13f357 156 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/4/5',
833b385e 157 'uri_for_action returns uri with more args than specified on action' );
8b13f357 158
833b385e 159 is( $context->uri_for_action($action_needs_two, [1,''], (3,4)),
8b13f357 160 'http://127.0.0.1/foo/chained/foo2/1//end2/3/4',
833b385e 161 'uri_for_action returns uri with empty capture on undef capture' );
8b13f357 162
833b385e 163 is( $context->uri_for_action($action_needs_two, [1,2], ('',3)),
8b13f357 164 'http://127.0.0.1/foo/chained/foo2/1/2/end2//3',
833b385e 165 'uri_for_action returns uri with empty arg on undef argument' );
8b13f357 166
833b385e 167 is( $context->uri_for_action($action_needs_two, [1,2], (3,'')),
8b13f357 168 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/',
833b385e 169 'uri_for_action returns uri with empty arg on undef last argument' );
8b13f357 170
b3679813 171 is( $context->uri_for_action($action_needs_two, [ 'foo' , 'bar/baz' ], (3,4)),
6ab73369 172 'http://127.0.0.1/foo/chained/foo2/foo/bar%2Fbaz/end2/3/4',
173 'uri_for_action works correctly when CaptureArg contains /' );
174
175 is( $context->uri_for_action($action_needs_two, [ 'foo' , 'bar' ], ('3/baz',4)),
176 'http://127.0.0.1/foo/chained/foo2/foo/bar/end2/3%2Fbaz/4',
177 'uri_for_action works correctly when Args contains /' );
b3679813 178
833b385e 179 my $complex_chained = '/action/chained/empty_chain_f';
180 is( $context->uri_for_action( $complex_chained, [23], (13), {q => 3} ),
8b13f357 181 'http://127.0.0.1/foo/chained/empty/23/13?q=3',
833b385e 182 'uri_for_action returns correct uri for chain with many empty path parts' );
8b13f357 183
4ac0b9cb 184 eval { $context->uri_for_action( '/does/not/exist' ) };
185 like $@, qr{^Can't find action for path '/does/not/exist'},
186 'uri_for_action croaks on nonexistent path';
68dae239 187
4ac0b9cb 188}
8b13f357 189