From: Marcus Ramberg Date: Wed, 3 Sep 2008 08:59:03 +0000 (+0000) Subject: Add new test features X-Git-Tag: 5.8000_03~67^2~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=e8d0f69a4f830417edd8c13c6474d0856336c2d4 Add new test features --- diff --git a/lib/Catalyst/Test.pm b/lib/Catalyst/Test.pm index 9e0db01..ba10ffc 100644 --- a/lib/Catalyst/Test.pm +++ b/lib/Catalyst/Test.pm @@ -1,5 +1,7 @@ package Catalyst::Test; +use Test::More; + use strict; use warnings; @@ -7,6 +9,10 @@ use Catalyst::Exception; use Catalyst::Utils; use Class::Inspector; +use parent qw/Exporter/; +our @EXPORT=qw/&content_like &action_ok &action_redirect &action_notfound &contenttype_is/; + + =head1 NAME Catalyst::Test - Test Catalyst Applications @@ -44,8 +50,8 @@ Catalyst::Test - Test Catalyst Applications package main; - use Test::More tests => 1; use Catalyst::Test 'TestApp'; + use Test::More tests => 1; ok( get('/foo') =~ /bar/ ); @@ -54,7 +60,8 @@ Catalyst::Test - Test Catalyst Applications This module allows you to make requests to a Catalyst application either without a server, by simulating the environment of an HTTP request using L or remotely if you define the CATALYST_SERVER -environment variable. +environment variable. This module also adds a few catalyst +specific testing methods as displayed in the method section. The and functions take either a URI or an L object. @@ -112,6 +119,7 @@ sub import { my $caller = caller(0); *{"$caller\::request"} = $request; *{"$caller\::get"} = $get; + __PACKAGE__->export_to_level(1); } =head2 local_request @@ -195,6 +203,72 @@ sub remote_request { return $agent->request($request); } +=head2 action_ok + +Fetches the given url and check that the request was successful + +=head2 action_redirect + +Fetches the given url and check that the request was a redirect + +=head2 action_notfound + +Fetches the given url and check that the request was not found + +=head2 content_like + +Fetches the given url and matches the content against it. + +=head2 contenttype_is + +Check for given mime type + +=cut + +sub content_like { + my $caller=caller(0); + no strict 'refs'; + my $get=*{"$caller\::get"}; + my $action=shift; + return Test::More->builder->like(get($action),@_); +} + +sub action_ok { + my $caller=caller(0); + no strict 'refs'; + my $request=*{"$caller\::request"}; + my $action=shift; + return Test::More->builder->ok(&$request($action)->is_success, @_); +} + +sub action_redirect { + my $caller=caller(0); + no strict 'refs'; + my $request=*{"$caller\::request"}; + my $action=shift; + return Test::More->builder->ok(&$request($action)->is_redirect,@_); + +} + +sub action_notfound { + my $caller=caller(0); + no strict 'refs'; + my $request=*{"$caller\::request"}; + my $action=shift; + return Test::More->builder->is_eq(&$request($action)->code,404,@_); + +} + + +sub contenttype_is { + my $caller=caller(0); + no strict 'refs'; + my $request=*{"$caller\::request"}; + my $action=shift; + my $res=&$request($action); + return Test::More->builder->is_eq(scalar($res->content_type),@_); +} + =head1 SEE ALSO L, L,