Refreshing branch
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestApp / Controller / Action / Forward.pm
CommitLineData
ceae39c5 1package TestApp::Controller::Action::Forward;
2
3use strict;
4use base 'TestApp::Controller::Action';
5
6sub one : Local {
7 my ( $self, $c ) = @_;
8 $c->forward('two');
9}
10
11sub two : Private {
12 my ( $self, $c ) = @_;
13 $c->forward('three');
14}
15
16sub three : Local {
17 my ( $self, $c ) = @_;
18 $c->forward( $self, 'four' );
19}
20
21sub four : Private {
22 my ( $self, $c ) = @_;
23 $c->forward('/action/forward/five');
24}
25
26sub five : Local {
27 my ( $self, $c ) = @_;
28 $c->forward('View::Dump::Request');
29}
30
31sub jojo : Local {
32 my ( $self, $c ) = @_;
33 $c->forward('one');
34 $c->forward( $c->controller('Action::Forward'), 'three' );
35}
36
37sub inheritance : Local {
38 my ( $self, $c ) = @_;
39 $c->forward('/action/inheritance/a/b/default');
40 $c->forward('five');
41}
42
43sub global : Local {
44 my ( $self, $c ) = @_;
45 $c->forward('/global_action');
46}
47
48sub with_args : Local {
49 my ( $self, $c, $orig ) = @_;
50 $c->forward( 'args', [qq/new/] );
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}
59
60sub to_action_object : Local {
61 my ( $self, $c ) = @_;
62 $c->forward($self->action_for('embed'), [qw/mtfnpy/]);
63}
64
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}
70
71sub args_embed_relative : Local {
72 my ( $self, $c ) = @_;
73 $c->forward('embed/ok');
74}
75
76sub args_embed_absolute : Local {
77 my ( $self, $c ) = @_;
78 $c->forward('/action/forward/embed/ok');
79}
80
81sub embed : Local {
82 my ( $self, $c, $ok ) = @_;
83
84 $ok ||= 'not ok';
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/);
91}
92
93sub forward_to_uri_check : Local {
94 my ( $self, $c ) = @_;
95 $c->forward( 'Action::ForwardTo', 'uri_check' );
96}
97
981;