role test case
[catagits/Catalyst-Runtime.git] / t / arg_constraints.t
CommitLineData
d91504e3 1use warnings;
2use strict;
b4037086 3use HTTP::Request::Common;
d2b583c3 4use utf8;
842180f7 5
6BEGIN {
7 use Test::More;
8748abc5 8 eval "use Type::Tiny 1.000005; 1" || do {
ea3943b8 9 plan skip_all => "Trouble loading Type::Tiny and friends => $@";
842180f7 10 };
ea3943b8 11}
6f0b85d2 12
ea3943b8 13BEGIN {
6f0b85d2 14 package MyApp::Types;
15 $INC{'MyApp/Types.pm'} = __FILE__;
16
17 use strict;
18 use warnings;
19
20 use Type::Utils -all;
21 use Types::Standard -types;
22 use Type::Library
23 -base,
d2b583c3 24 -declare => qw( UserId Heart User ContextLike );
6f0b85d2 25
26 extends "Types::Standard";
27
28 class_type User, { class => "MyApp::Model::User::user" };
29 duck_type ContextLike, [qw/model/];
30
31 declare UserId,
32 as Int,
33 where { $_ < 5 };
34
d2b583c3 35 declare Heart,
36 as Str,
37 where { $_ eq '♥' };
38
a7ab9aa9 39 # Tests using this are skipped pending deeper thought
6f0b85d2 40 coerce User,
41 from ContextLike,
42 via { $_->model('User')->find( $_->req->args->[0] ) };
842180f7 43}
d91504e3 44
45{
afa7a6c9 46 package MyApp::Role::Controller;
47 $INC{'MyApp/Role/Controller.pm'} = __FILE__;
48
49 use Moose::Role;
50 use MooseX::MethodAttributes::Role;
51 use MyApp::Types qw/Int Str/;
52
53 sub role_str :Path('role_test') Args(Str) {
54 my ($self, $c, $arg) = @_;
55 $c->res->body('role_str'.$arg);
56 }
57
58 sub role_int :Path('role_test') Args(Int) {
59 my ($self, $c, $arg) = @_;
60 $c->res->body('role_int'.$arg);
61 }
62
6f0b85d2 63 package MyApp::Model::User;
64 $INC{'MyApp/Model/User.pm'} = __FILE__;
65
66 use base 'Catalyst::Model';
67
68 our %users = (
69 1 => { name => 'john', age => 46 },
70 2 => { name => 'mary', age => 36 },
71 3 => { name => 'ian', age => 25 },
72 4 => { name => 'visha', age => 18 },
73 );
74
75 sub find {
76 my ($self, $id) = @_;
77 my $user = $users{$id} || return;
78 return bless $user, "MyApp::Model::User::user";
79 }
80
d91504e3 81 package MyApp::Controller::Root;
82 $INC{'MyApp/Controller/Root.pm'} = __FILE__;
83
84 use Moose;
85 use MooseX::MethodAttributes;
d9f0a350 86 use Types::Standard qw/slurpy/;
d2b583c3 87 use MyApp::Types qw/Tuple Int Str StrMatch ArrayRef UserId User Heart/;
d91504e3 88
89 extends 'Catalyst::Controller';
afa7a6c9 90 with 'MyApp::Role::Controller';
91
d91504e3 92
6f0b85d2 93 sub user :Local Args(UserId) {
94 my ($self, $c, $int) = @_;
95 my $user = $c->model("User")->find($int);
96 $c->res->body("name: $user->{name}, age: $user->{age}");
97 }
98
a7ab9aa9 99 # Tests using this are current skipped pending coercion rethink
6f0b85d2 100 sub user_object :Local Args(User) Coerce(1) {
101 my ($self, $c, $user) = @_;
102 $c->res->body("name: $user->{name}, age: $user->{age}");
103 }
104
75ce30d0 105 sub stringy_enum :Local Args('Int',Int) {
106 my ($self, $c) = @_;
107 $c->res->body('enum');
108 }
109
6d62355b 110 sub an_int :Local Args(Int) {
111 my ($self, $c, $int) = @_;
6d62355b 112 $c->res->body('an_int');
113 }
114
bf4f1643 115 sub two_ints :Local Args(Int,Int) {
116 my ($self, $c, $int) = @_;
117 $c->res->body('two_ints');
118 }
119
4a0218ca 120 sub many_ints :Local Args(ArrayRef[Int]) {
d9f0a350 121 my ($self, $c, @ints) = @_;
4a0218ca 122 $c->res->body('many_ints');
123 }
124
842180f7 125 sub tuple :Local Args(Tuple[Str,Int]) {
6f0b85d2 126 my ($self, $c, $str, $int) = @_;
842180f7 127 $c->res->body('tuple');
128 }
129
d9f0a350 130 sub slurpy_tuple :Local Args(Tuple[Str,Int, slurpy ArrayRef[Int]]) {
131 my ($self, $c, $str, $int) = @_;
132 $c->res->body('tuple');
133 }
134
6f0b85d2 135 sub match :Local Args(StrMatch[qr{\d\d-\d\d-\d\d}]) {
136 my ($self, $c, $int) = @_;
137 $c->res->body('match');
138 }
a82c96cf 139
e5604544 140 sub any_priority :Path('priority_test') Args(1) { $_[1]->res->body('any_priority') }
842180f7 141
b7791bd7 142 sub int_priority :Path('priority_test') Args(Int) { $_[1]->res->body('int_priority') }
e5604544 143
a82c96cf 144 sub chain_base :Chained(/) CaptureArgs(1) { }
145
90102012 146 sub any_priority_chain :GET Chained(chain_base) PathPart('') Args(1) { $_[1]->res->body('any_priority_chain') }
a82c96cf 147
148 sub int_priority_chain :Chained(chain_base) PathPart('') Args(Int) { $_[1]->res->body('int_priority_chain') }
149
480d94b5 150 sub link_any :Chained(chain_base) PathPart('') CaptureArgs(1) { }
151
152 sub any_priority_link_any :Chained(link_any) PathPart('') Args(1) { $_[1]->res->body('any_priority_link_any') }
153
154 sub int_priority_link_any :Chained(link_any) PathPart('') Args(Int) { $_[1]->res->body('int_priority_link_any') }
155
a82c96cf 156 sub link_int :Chained(chain_base) PathPart('') CaptureArgs(Int) { }
157
158 sub any_priority_link :Chained(link_int) PathPart('') Args(1) { $_[1]->res->body('any_priority_link') }
159
160 sub int_priority_link :Chained(link_int) PathPart('') Args(Int) { $_[1]->res->body('int_priority_link') }
161
677c155c 162 sub link_int_int :Chained(chain_base) PathPart('') CaptureArgs(Int,Int) { }
bf4f1643 163
164 sub any_priority_link2 :Chained(link_int_int) PathPart('') Args(1) { $_[1]->res->body('any_priority_link2') }
165
166 sub int_priority_link2 :Chained(link_int_int) PathPart('') Args(Int) { $_[1]->res->body('int_priority_link2') }
167
677c155c 168 sub link_tuple :Chained(chain_base) PathPart('') CaptureArgs(Tuple[Int,Int,Int]) { }
169
170 sub any_priority_link3 :Chained(link_tuple) PathPart('') Args(1) { $_[1]->res->body('any_priority_link3') }
171
172 sub int_priority_link3 :Chained(link_tuple) PathPart('') Args(Int) { $_[1]->res->body('int_priority_link3') }
173
b6847871 174 sub link2_int :Chained(link_tuple) PathPart('') CaptureArgs(UserId) { }
175
79b7db20 176 sub finally2 :GET Chained(link2_int) PathPart('') Args { $_[1]->res->body('finally2') }
90102012 177 sub finally :GET Chained(link2_int) PathPart('') Args(Int) { $_[1]->res->body('finally') }
a82c96cf 178
aef0cb5d 179 sub chain_base2 :Chained(/) CaptureArgs(1) { }
180
70949f28 181 sub chained_zero_again : Chained(chain_base2) PathPart('') Args(0) { $_[1]->res->body('chained_zero_again') }
182 sub chained_zero_post2 : Chained(chain_base2) PathPart('') Args(0) { $_[1]->res->body('chained_zero_post2') }
aef0cb5d 183 sub chained_zero2 : Chained(chain_base2) PathPart('') Args(0) { $_[1]->res->body('chained_zero2') }
184
70949f28 185 sub chained_zero_post3 : Chained(chain_base2) PathPart('') Args(1) { $_[1]->res->body('chained_zero_post3') }
aef0cb5d 186 sub chained_zero3 : Chained(chain_base2) PathPart('') Args(1) { $_[1]->res->body('chained_zero3') }
187
188
d2b583c3 189 sub heart :Local Args(Heart) { }
190
191 sub utf8_base :Chained(/) CaptureArgs(Heart) { }
192 sub utf8_end :Chained(utf8_base) PathPart('') Args(Heart) { }
193
6d62355b 194 sub default :Default {
195 my ($self, $c, $int) = @_;
196 $c->res->body('default');
d91504e3 197 }
198
199 MyApp::Controller::Root->config(namespace=>'');
200
201 package MyApp;
202 use Catalyst;
203
204 MyApp->setup;
205}
206
207use Catalyst::Test 'MyApp';
208
209{
6d62355b 210 my $res = request '/an_int/1';
211 is $res->content, 'an_int';
212}
213
214{
337a627a 215 my $res = request '/an_int/aa';
216 is $res->content, 'default';
217}
218
219{
4a0218ca 220 my $res = request '/many_ints/1';
221 is $res->content, 'many_ints';
222}
223
224{
225 my $res = request '/many_ints/1/2';
226 is $res->content, 'many_ints';
227}
228
229{
230 my $res = request '/many_ints/1/2/3';
231 is $res->content, 'many_ints';
232}
233
234{
e5604544 235 my $res = request '/priority_test/1';
236 is $res->content, 'int_priority';
237}
842180f7 238
e5604544 239{
240 my $res = request '/priority_test/a';
241 is $res->content, 'any_priority';
242}
243
842180f7 244{
6f0b85d2 245 my $res = request '/match/11-22-33';
246 is $res->content, 'match';
247}
81436df9 248
6f0b85d2 249{
250 my $res = request '/match/aaa';
251 is $res->content, 'default';
252}
253
254{
255 my $res = request '/user/2';
256 is $res->content, 'name: mary, age: 36';
257}
258
259{
260 my $res = request '/user/20';
261 is $res->content, 'default';
262}
263
a7ab9aa9 264
265SKIP: {
266 skip "coercion support needs more thought", 1;
6f0b85d2 267 my $res = request '/user_object/20';
268 is $res->content, 'default';
269}
270
a7ab9aa9 271SKIP: {
272 skip "coercion support needs more thought", 1;
6f0b85d2 273 my $res = request '/user_object/2';
274 is $res->content, 'name: mary, age: 36';
275}
276
a82c96cf 277{
278 my $res = request '/chain_base/capture/arg';
279 is $res->content, 'any_priority_chain';
280}
281
282{
283 my $res = request '/chain_base/cap1/100/arg';
284 is $res->content, 'any_priority_link';
285}
286
287{
288 my $res = request '/chain_base/cap1/101/102';
289 is $res->content, 'int_priority_link';
290}
291
292{
293 my $res = request '/chain_base/capture/100';
294 is $res->content, 'int_priority_chain', 'got expected';
295}
296
480d94b5 297{
298 my $res = request '/chain_base/cap1/a/arg';
299 is $res->content, 'any_priority_link_any';
300}
301
302{
303 my $res = request '/chain_base/cap1/a/102';
304 is $res->content, 'int_priority_link_any';
305}
306
bf4f1643 307{
308 my $res = request '/two_ints/1/2';
309 is $res->content, 'two_ints';
310}
311
312{
313 my $res = request '/two_ints/aa/111';
314 is $res->content, 'default';
315}
316
317{
318 my $res = request '/tuple/aaa/aaa';
319 is $res->content, 'default';
320}
321
322{
323 my $res = request '/tuple/aaa/111';
324 is $res->content, 'tuple';
325}
326
327{
d9f0a350 328 my $res = request '/tuple/aaa/111/111/111';
329 is $res->content, 'default';
330}
331
332{
333 my $res = request '/slurpy_tuple/aaa/111/111/111';
334 is $res->content, 'tuple';
335}
336
337
338{
bf4f1643 339 my $res = request '/many_ints/1/2/a';
340 is $res->content, 'default';
341}
342
343{
344 my $res = request '/chain_base/100/100/100/100';
345 is $res->content, 'int_priority_link2';
346}
347
348{
349 my $res = request '/chain_base/100/ss/100/100';
350 is $res->content, 'default';
351}
352
677c155c 353{
354 my $res = request '/chain_base/100/100/100/100/100';
355 is $res->content, 'int_priority_link3';
356}
357
358{
359 my $res = request '/chain_base/100/ss/100/100/100';
360 is $res->content, 'default';
361}
362
79b7db20 363{
364 my $res = request '/chain_base/1/2/3/3/3/6';
365 is $res->content, 'finally';
366}
367
368{
369 my $res = request '/chain_base/1/2/3/3/3/a';
370 is $res->content, 'finally2';
371}
bf4f1643 372
79b7db20 373{
374 my $res = request '/chain_base/1/2/3/3/3/6/7/8/9';
375 is $res->content, 'finally2';
376}
377
b4037086 378
379{
aef0cb5d 380 my $res = request PUT '/chain_base2/capture/1';
70949f28 381 is $res->content, 'chained_zero3', "request PUT '/chain_base2/capture/1'";
aef0cb5d 382}
383
384{
385 my $res = request '/chain_base2/capture/1';
70949f28 386 is $res->content, 'chained_zero3', "request '/chain_base2/capture/1'";
aef0cb5d 387}
388
389{
390 my $res = request POST '/chain_base2/capture/1';
70949f28 391 is $res->content, 'chained_zero3', "request POST '/chain_base2/capture/1'";
aef0cb5d 392}
393
394{
395 my $res = request PUT '/chain_base2/capture';
70949f28 396 is $res->content, 'chained_zero2', "request PUT '/chain_base2/capture'";
b4037086 397}
398
399{
aef0cb5d 400 my $res = request '/chain_base2/capture';
70949f28 401 is $res->content, 'chained_zero2', "request '/chain_base2/capture'";
b4037086 402}
403
404{
aef0cb5d 405 my $res = request POST '/chain_base2/capture';
70949f28 406 is $res->content, 'chained_zero2', "request POST '/chain_base2/capture'";
b4037086 407}
408
75ce30d0 409{
410 my $res = request '/stringy_enum/1/2';
411 is $res->content, 'enum', "request '/stringy_enum/a'";
412}
413
414{
415 my $res = request '/stringy_enum/b/2';
416 is $res->content, 'default', "request '/stringy_enum/a'";
417}
418
419{
420 my $res = request '/stringy_enum/1/a';
421 is $res->content, 'default', "request '/stringy_enum/a'";
422}
423
b4037086 424=over
425
426| /chain_base/*/*/*/*/*/* | /chain_base (1)
427| | -> /link_tuple (Tuple[Int,Int,Int])
428| | -> /link2_int (UserId)
429| | => GET /finally (Int)
430
b6847871 431=cut
432
433{
434 # URI testing
435 my ($res, $c) = ctx_request '/';
b6847871 436
86a399db 437 {
438 ok my $url = eval { $c->uri_for($c->controller('Root')->action_for('user'), 2) };
439 is $url, 'http://localhost/user/2';
440 }
c1192f1e 441
86a399db 442 {
443 ok my $url = eval { $c->uri_for($c->controller('Root')->action_for('user'), [2]) };
444 is $url, 'http://localhost/user/2';
445 }
c1192f1e 446
86a399db 447 {
448 ok my $url = ! eval { $c->uri_for($c->controller('Root')->action_for('user'), [20]) };
449 }
450
451 {
452 ok my $url = eval { $c->uri_for($c->controller('Root')->action_for('finally'), [1,2,3,4,4],6) };
453 is $url, 'http://localhost/chain_base/1/2/3/4/4/6';
454 }
455
456 {
457 ok my $url = eval { $c->uri_for($c->controller('Root')->action_for('finally'), [1,2,3,4,4,6]) };
458 is $url, 'http://localhost/chain_base/1/2/3/4/4/6';
459 }
460
461 {
462 ok my $url = ! eval { $c->uri_for($c->controller('Root')->action_for('finally'), [1,2,3,4,5,6]) };
463 }
464
465 {
466 ok my $url = eval { $c->uri_for($c->controller('Root')->action_for('finally'), ['a',2,3,4,4,6]) };
467 is $url, 'http://localhost/chain_base/a/2/3/4/4/6';
468 }
469
470 {
471 ok my $url = ! eval { $c->uri_for($c->controller('Root')->action_for('finally'), ['a','1',3,4,4,'a']) };
472 }
473
474 {
475 ok my $url = ! eval { $c->uri_for($c->controller('Root')->action_for('finally'), ['a','a',3,4,4,'6']) };
476 }
c1192f1e 477
d2b583c3 478 {
479 ok my $url = eval { $c->uri_for($c->controller('Root')->action_for('heart'), ['♥']) };
480 is $url, 'http://localhost/heart/%E2%99%A5';
481 }
cbe13760 482
d2b583c3 483 {
484 ok my $url = ! eval { $c->uri_for($c->controller('Root')->action_for('heart'), ['1']) };
485 }
86a399db 486
d2b583c3 487 {
488 ok my $url = eval { $c->uri_for($c->controller('Root')->action_for('utf8_end'), ['♥','♥']) };
489 is $url, 'http://localhost/utf8_base/%E2%99%A5/%E2%99%A5';
490 }
cbe13760 491
d2b583c3 492 {
493 ok my $url = ! eval { $c->uri_for($c->controller('Root')->action_for('utf8_end'), ['2','1']) };
494 }
cbe13760 495
d2b583c3 496}
86a399db 497
afa7a6c9 498# Test Roles
499
500{
501 my $res = request '/role_test/1';
502 is $res->content, 'role_int1';
503}
504
505{
506 my $res = request '/role_test/a';
507 is $res->content, 'role_stra';
508}
509
510
d2b583c3 511done_testing;