X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flive_engine_response_errors.t;fp=t%2Flive_engine_response_errors.t;h=de7f92bc7caf27e692a08e907b9153eb48d0afb1;hb=33970ffa4d636ddb9af263fa6648929d7fef0c9c;hp=0000000000000000000000000000000000000000;hpb=f59def827fbf8431cb6439d1365f0c176a9aa32f;p=catagits%2FCatalyst-Runtime.git diff --git a/t/live_engine_response_errors.t b/t/live_engine_response_errors.t new file mode 100644 index 0000000..de7f92b --- /dev/null +++ b/t/live_engine_response_errors.t @@ -0,0 +1,60 @@ +#!perl + +use strict; +use warnings; + +use FindBin; +use lib "$FindBin::Bin/lib"; + +use Test::More tests => 18; +use Catalyst::Test 'TestApp'; + +close STDERR; # i'm naughty :) + +{ + ok( my $response = request('http://localhost/engine/response/errors/one'), + 'Request' ); + ok( $response->is_error, 'Response Server Error 5xx' ); + is( $response->code, 500, 'Response Code' ); + is( $response->content_type, 'text/html', 'Response Content-Type' ); + is( $response->header('X-Catalyst-Action'), + 'engine/response/errors/one', 'Test Action' ); + like( + $response->header('X-Catalyst-Error'), + qr/^Caught exception/, + 'Catalyst Error' + ); +} + +{ + ok( my $response = request('http://localhost/engine/response/errors/two'), + 'Request' ); + ok( $response->is_error, 'Response Server Error 5xx' ); + is( $response->code, 500, 'Response Code' ); + is( $response->content_type, 'text/html', 'Response Content-Type' ); + is( $response->header('X-Catalyst-Action'), + 'engine/response/errors/two', 'Test Action' ); + like( + $response->header('X-Catalyst-Error'), + qr/^Couldn't forward to/, + 'Catalyst Error' + ); +} + +{ + ok( my $response = request('http://localhost/engine/response/errors/three'), + 'Request' ); + ok( $response->is_error, 'Response Server Error 5xx' ); + is( $response->code, 500, 'Response Code' ); + is( $response->content_type, 'text/html', 'Response Content-Type' ); + is( + $response->header('X-Catalyst-Action'), + 'engine/response/errors/three', + 'Test Action' + ); + like( + $response->header('X-Catalyst-Error'), + qr/"I'm going to die!"$/, + 'Catalyst Error' + ); +}