first post on australorp
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / HTTPMethods.pm
CommitLineData
760d121e 1package TestApp::Controller::HTTPMethods;
2
3use Moose;
4use MooseX::MethodAttributes;
5
6extends 'Catalyst::Controller';
7
8sub default : Path Args {
9 my ($self, $ctx) = @_;
10 $ctx->response->body('default');
11}
12
13sub get : Path('foo') Method('GET') {
14 my ($self, $ctx) = @_;
15 $ctx->response->body('get');
16}
17
18sub post : Path('foo') Method('POST') {
19 my ($self, $ctx) = @_;
20 $ctx->response->body('post');
21}
22
23sub get_or_post : Path('bar') Method('GET') Method('POST') {
24 my ($self, $ctx) = @_;
25 $ctx->response->body('get or post');
26}
27
28sub any_method : Path('baz') {
29 my ($self, $ctx) = @_;
30 $ctx->response->body('any');
31}
32
33sub base :Chained('/') PathPrefix CaptureArgs(0) { }
34
f3a49d84 35sub chained_get :Chained('base') Args(0) GET {
760d121e 36 pop->res->body('chained_get');
f3a49d84 37}
760d121e 38
f3a49d84 39sub chained_post :Chained('base') Args(0) POST {
760d121e 40 pop->res->body('chained_post');
f3a49d84 41}
760d121e 42
f3a49d84 43sub chained_put :Chained('base') Args(0) PUT {
760d121e 44 pop->res->body('chained_put');
f3a49d84 45}
760d121e 46
f3a49d84 47sub chained_delete :Chained('base') Args(0) DELETE {
760d121e 48 pop->res->body('chained_delete');
f3a49d84 49}
760d121e 50
f3a49d84 51sub get_or_put :Chained('base') PathPart('get_put_post_delete') CaptureArgs(0) GET PUT { }
760d121e 52
f3a49d84 53sub get2 :Chained('get_or_put') PathPart('') Args(0) GET {
54 pop->res->body('get2');
55}
760d121e 56
f3a49d84 57sub put2 :Chained('get_or_put') PathPart('') Args(0) PUT {
58 pop->res->body('put2');
59}
760d121e 60
f3a49d84 61sub post_or_delete :Chained('base') PathPart('get_put_post_delete') CaptureArgs(0) POST DELETE { }
760d121e 62
f3a49d84 63sub post2 :Chained('post_or_delete') PathPart('') Args(0) POST {
64 pop->res->body('post2');
65}
760d121e 66
f3a49d84 67sub delete2 :Chained('post_or_delete') PathPart('') Args(0) DELETE {
68 pop->res->body('delete2');
69}
760d121e 70
f3a49d84 71sub check_default :Chained('base') CaptureArgs(0) { }
760d121e 72
f3a49d84 73sub default_get :Chained('check_default') PathPart('') Args(0) GET {
74 pop->res->body('get3');
75}
760d121e 76
f3a49d84 77sub default_post :Chained('check_default') PathPart('') Args(0) POST {
78 pop->res->body('post3');
79}
760d121e 80
f3a49d84 81sub chain_default :Chained('check_default') PathPart('') Args(0) {
82 pop->res->body('chain_default');
83}
760d121e 84
85__PACKAGE__->meta->make_immutable;