Create branch register_actions.
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Forward.pm
CommitLineData
dd4e6fd2 1package TestApp::Controller::Action::Forward;
2
3use strict;
4use base 'TestApp::Controller::Action';
5
a1dad9c1 6sub one : Local {
dd4e6fd2 7 my ( $self, $c ) = @_;
8 $c->forward('two');
9}
10
11sub two : Private {
12 my ( $self, $c ) = @_;
13 $c->forward('three');
14}
15
a1dad9c1 16sub three : Local {
dd4e6fd2 17 my ( $self, $c ) = @_;
86d993ab 18 $c->forward( $self, 'four' );
dd4e6fd2 19}
20
21sub four : Private {
22 my ( $self, $c ) = @_;
7eb331e7 23 $c->forward('/action/forward/five');
dd4e6fd2 24}
25
a1dad9c1 26sub five : Local {
dd4e6fd2 27 my ( $self, $c ) = @_;
d6e0d7e6 28 $c->forward('View::Dump::Request');
dd4e6fd2 29}
30
a1dad9c1 31sub jojo : Local {
dd4e6fd2 32 my ( $self, $c ) = @_;
33 $c->forward('one');
86d993ab 34 $c->forward( $c->controller('Action::Forward'), 'three' );
dd4e6fd2 35}
36
a1dad9c1 37sub inheritance : Local {
c462faf0 38 my ( $self, $c ) = @_;
5b387dfc 39 $c->forward('/action/inheritance/a/b/default');
c462faf0 40 $c->forward('five');
41}
42
a1dad9c1 43sub global : Local {
e5d7f18c 44 my ( $self, $c ) = @_;
fbcc39ad 45 $c->forward('/global_action');
e5d7f18c 46}
47
a1dad9c1 48sub with_args : Local {
49 my ( $self, $c, $orig ) = @_;
fbcc39ad 50 $c->forward( 'args', [qq/new/] );
a1dad9c1 51 $c->res->body( $c->req->args->[0] );
52}
53
54sub with_method_and_args : Local {
55 my ( $self, $c, $orig ) = @_;
56 $c->forward( qw/TestApp::Controller::Action::Forward args/, [qq/new/] );
57 $c->res->body( $c->req->args->[0] );
58}
ae29b412 59
463dbd0a 60sub to_action_object : Local {
61 my ( $self, $c ) = @_;
62 $c->forward($self->action_for('embed'), [qw/mtfnpy/]);
63}
64
a1dad9c1 65sub args : Local {
66 my ( $self, $c, $val ) = @_;
67 die "Expected argument 'new', got '$val'" unless $val eq 'new';
68 die "passed argument does not match args" unless $val eq $c->req->args->[0];
69}
e5d7f18c 70
ab96c27a 71sub args_embed_relative : Local {
72 my ( $self, $c ) = @_;
86d993ab 73 $c->forward('embed/ok');
ab96c27a 74}
75
76sub args_embed_absolute : Local {
77 my ( $self, $c ) = @_;
86d993ab 78 $c->forward('/action/forward/embed/ok');
ab96c27a 79}
80
81sub embed : Local {
82 my ( $self, $c, $ok ) = @_;
86d993ab 83
ab96c27a 84 $ok ||= 'not ok';
86d993ab 85 $c->res->body($ok);
86}
87
88sub class_forward_test_action : Local {
89 my ( $self, $c ) = @_;
90 $c->forward(qw/TestApp class_forward_test_method/);
ab96c27a 91}
92
4e69c1c8 93sub forward_to_uri_check : Local {
94 my ( $self, $c ) = @_;
95 $c->forward( 'Action::ForwardTo', 'uri_check' );
96}
97
dd4e6fd2 981;