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