X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Farg_constraints.t;h=5ef97e53ed916118423f32a7e3c6b7d559ffa1dd;hp=2a005b72f1b11df1c49d6092daa8fdd87fc74a6d;hb=50b07d604b372d9487863120b9df9c813bbe7334;hpb=d9f0a350554cca79adefd4e97b4982d431f8c914 diff --git a/t/arg_constraints.t b/t/arg_constraints.t index 2a005b7..5ef97e5 100644 --- a/t/arg_constraints.t +++ b/t/arg_constraints.t @@ -43,6 +43,23 @@ BEGIN { } { + package MyApp::Role::Controller; + $INC{'MyApp/Role/Controller.pm'} = __FILE__; + + use Moose::Role; + use MooseX::MethodAttributes::Role; + use MyApp::Types qw/Int Str/; + + sub role_str :Path('role_test') Args(Str) { + my ($self, $c, $arg) = @_; + $c->res->body('role_str'.$arg); + } + + sub role_int :Path('role_test') Args(Int) { + my ($self, $c, $arg) = @_; + $c->res->body('role_int'.$arg); + } + package MyApp::Model::User; $INC{'MyApp/Model/User.pm'} = __FILE__; @@ -70,6 +87,8 @@ BEGIN { use MyApp::Types qw/Tuple Int Str StrMatch ArrayRef UserId User Heart/; extends 'Catalyst::Controller'; + with 'MyApp::Role::Controller'; + sub user :Local Args(UserId) { my ($self, $c, $int) = @_; @@ -179,6 +198,48 @@ BEGIN { MyApp::Controller::Root->config(namespace=>''); + package MyApp::Controller::Autoclean; + $INC{'MyApp/Controller/Autoclean.pm'} = __FILE__; + + use Moose; + use MooseX::MethodAttributes; + use namespace::autoclean; + + use MyApp::Types qw/Int/; + + extends 'Catalyst::Controller'; + + sub an_int :Local Args(Int) { + my ($self, $c, $int) = @_; + $c->res->body('an_int (autoclean)'); + } + + MyApp::Controller::Autoclean->config(namespace=>'autoclean'); + + package MyApp::Role; + $INC{'MyApp/Role.pm'} = __FILE__; + + use Moose::Role; + use MooseX::MethodAttributes::Role; + use MyApp::Types qw/Int/; + + sub an_int :Local Args(Int) { + my ($self, $c, $int) = @_; + $c->res->body('an_int (withrole)'); + } + + package MyApp::Controller::WithRole; + $INC{'MyApp/Controller/WithRole.pm'} = __FILE__; + + use Moose; + use MooseX::MethodAttributes; + + extends 'Catalyst::Controller'; + + with 'MyApp::Role'; + + MyApp::Controller::WithRole->config(namespace=>'withrole'); + package MyApp; use Catalyst; @@ -402,6 +463,16 @@ SKIP: { is $res->content, 'default', "request '/stringy_enum/a'"; } +{ + my $res = request '/autoclean/an_int/1'; + is $res->content, 'an_int (autoclean)'; +} + +{ + my $res = request '/withrole/an_int/1'; + is $res->content, 'an_int (withrole)'; +} + =over | /chain_base/*/*/*/*/*/* | /chain_base (1) @@ -476,4 +547,17 @@ SKIP: { } +# Test Roles + +{ + my $res = request '/role_test/1'; + is $res->content, 'role_int1'; +} + +{ + my $res = request '/role_test/a'; + is $res->content, 'role_stra'; +} + + done_testing;