Merged 5.49_01 (r1339) from refactored branch to trunk
[catagits/Catalyst-Runtime.git] / t / live / component / controller / action / default.t
CommitLineData
dd4e6fd2 1#!perl
2
3use strict;
4use warnings;
5
6use FindBin;
9770ad56 7use lib "$FindBin::Bin/../../../lib";
dd4e6fd2 8
6f2a2de7 9use Test::More tests=>9 ;
dd4e6fd2 10use Catalyst::Test 'TestApp';
11
12
13{
14 my @expected = qw[
dd4e6fd2 15 TestApp::Controller::Action::Default->begin
16 TestApp::Controller::Action::Default->default
17 TestApp::View::Dump::Request->process
18 ];
19
20 my $expected = join( ", ", @expected );
21
22 ok( my $response = request('http://localhost/action/default'), 'Request' );
23 ok( $response->is_success, 'Response Successful 2xx' );
24 is( $response->content_type, 'text/plain', 'Response Content-Type' );
25 is( $response->header('X-Catalyst-Action'), 'default', 'Test Action' );
26 is( $response->header('X-Test-Class'), 'TestApp::Controller::Action::Default', 'Test Class' );
27 is( $response->header('X-Catalyst-Executed'), $expected, 'Executed actions' );
28 like( $response->content, qr/^bless\( .* 'Catalyst::Request' \)$/s, 'Content is a serialized Catalyst::Request' );
6f2a2de7 29
30 ok( $response = request('http://localhost/foo/bar/action'), 'Request' );
31 is( $response->code, 404, 'Invalid URI returned 404' );
dd4e6fd2 32}