43af4f9e679c6ba6bd151c3dc7942ef0840a6797
[catagits/Catalyst-Runtime.git] / t / live_component_controller_action_action.t
1 #!perl
2
3 use strict;
4 use warnings;
5
6 use FindBin;
7 use lib "$FindBin::Bin/lib";
8
9 our $iters;
10
11 BEGIN { $iters = $ENV{CAT_BENCH_ITERS} || 1; }
12
13 use Test::More tests => 28 * $iters;
14 use Catalyst::Test 'TestApp';
15
16 if ( $ENV{CAT_BENCHMARK} ) {
17     require Benchmark;
18     Benchmark::timethis( $iters, \&run_tests );
19 }
20 else {
21     for ( 1 .. $iters ) {
22         run_tests();
23     }
24 }
25
26 sub run_tests {
27     {
28         ok( my $response = request('http://localhost/action_action_one'),
29             'Request' );
30         ok( $response->is_success, 'Response Successful 2xx' );
31         is( $response->content_type, 'text/plain', 'Response Content-Type' );
32         is( $response->header('X-Catalyst-Action'),
33             'action_action_one', 'Test Action' );
34         is(
35             $response->header('X-Test-Class'),
36             'TestApp::Controller::Action::Action',
37             'Test Class'
38         );
39         is( $response->header('X-Action'), 'works' );
40         like(
41             $response->content,
42             qr/^bless\( .* 'Catalyst::Request' \)$/s,
43             'Content is a serialized Catalyst::Request'
44         );
45     }
46
47     {
48         ok( my $response = request('http://localhost/action_action_two'),
49             'Request' );
50         ok( $response->is_success, 'Response Successful 2xx' );
51         is( $response->content_type, 'text/plain', 'Response Content-Type' );
52         is( $response->header('X-Catalyst-Action'),
53             'action_action_two', 'Test Action' );
54         is(
55             $response->header('X-Test-Class'),
56             'TestApp::Controller::Action::Action',
57             'Test Class'
58         );
59         is( $response->header('X-Action-After'), 'awesome' );
60         like(
61             $response->content,
62             qr/^bless\( .* 'Catalyst::Request' \)$/s,
63             'Content is a serialized Catalyst::Request'
64         );
65     }
66
67     {
68         ok(
69             my $response =
70               request('http://localhost/action_action_three/one/two'),
71             'Request'
72         );
73         ok( $response->is_success, 'Response Successful 2xx' );
74         is( $response->content_type, 'text/plain', 'Response Content-Type' );
75         is( $response->header('X-Catalyst-Action'),
76             'action_action_three', 'Test Action' );
77         is(
78             $response->header('X-Test-Class'),
79             'TestApp::Controller::Action::Action',
80             'Test Class'
81         );
82         is( $response->header('X-TestAppActionTestBefore'), 'one' );
83         like(
84             $response->content,
85             qr/^bless\( .* 'Catalyst::Request' \)$/s,
86             'Content is a serialized Catalyst::Request'
87         );
88     }
89
90     {
91         ok( my $response = request('http://localhost/action_action_four'),
92             'Request' );
93         ok( $response->is_success, 'Response Successful 2xx' );
94         is( $response->content_type, 'text/plain', 'Response Content-Type' );
95         is( $response->header('X-Catalyst-Action'),
96             'action_action_four', 'Test Action' );
97         is(
98             $response->header('X-Test-Class'),
99             'TestApp::Controller::Action::Action',
100             'Test Class'
101         );
102         is( $response->header('X-TestAppActionTestMyAction'), 'MyAction works' );
103         like(
104             $response->content,
105             qr/^bless\( .* 'Catalyst::Request' \)$/s,
106             'Content is a serialized Catalyst::Request'
107         );
108     }
109
110 }