Updating branch to current revision
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestApp.pm
CommitLineData
e28a6876 1package TestApp;
2
3use strict;
4use Catalyst qw/
5 Test::MangleDollarUnderScore
6 Test::Errors
7 Test::Headers
8 Test::Plugin
9 Test::Inline
10 +TestApp::Plugin::FullyQualified
11 +TestApp::Plugin::AddDispatchTypes
12 +TestApp::Role
13/;
14use Catalyst::Utils;
15
16use Moose;
17use namespace::autoclean;
18
19our $VERSION = '0.01';
20
21TestApp->config( name => 'TestApp', root => '/some/dir' );
22
23if (eval { Class::MOP::load_class('CatalystX::LeakChecker'); 1 }) {
24 with 'CatalystX::LeakChecker';
25
26 has leaks => (
27 is => 'ro',
28 default => sub { [] },
29 );
30}
31
32sub found_leaks {
33 my ($ctx, @leaks) = @_;
34 push @{ $ctx->leaks }, @leaks;
35}
36
37sub count_leaks {
38 my ($ctx) = @_;
39 return scalar @{ $ctx->leaks };
40}
41
42TestApp->setup;
43
44sub execute {
45 my $c = shift;
46 my $class = ref( $c->component( $_[0] ) ) || $_[0];
47 my $action = $_[1]->reverse;
48
49 my $method;
50
51 if ( $action =~ /->(\w+)$/ ) {
52 $method = $1;
53 }
54 elsif ( $action =~ /\/(\w+)$/ ) {
55 $method = $1;
56 }
57 elsif ( $action =~ /^(\w+)$/ ) {
58 $method = $action;
59 }
60
61 if ( $class && $method && $method !~ /^_/ ) {
62 my $executed = sprintf( "%s->%s", $class, $method );
63 my @executed = $c->response->headers->header('X-Catalyst-Executed');
64 push @executed, $executed;
65 $c->response->headers->header(
66 'X-Catalyst-Executed' => join ', ',
67 @executed
68 );
69 }
70 no warnings 'recursion';
71 return $c->SUPER::execute(@_);
72}
73
74# Replace the very large HTML error page with
75# useful info if something crashes during a test
76sub finalize_error {
77 my $c = shift;
78
79 $c->next::method(@_);
80
81 $c->res->status(500);
82 $c->res->body( 'FATAL ERROR: ' . join( ', ', @{ $c->error } ) );
83}
84
85{
86 no warnings 'redefine';
87 sub Catalyst::Log::error { }
88}
89
90# Make sure we can load Inline plugins.
91
92package Catalyst::Plugin::Test::Inline;
93
94use strict;
95
96use base qw/Class::Data::Inheritable/;
97
981;