From: Marcus Ramberg Date: Mon, 8 Sep 2008 20:43:51 +0000 (+0000) Subject: merge in new test actions. X-Git-Tag: 5.8000_03~67 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=35e7b9bb9765d56baee39972d1311a06fd049ef9;hp=9b73c5e7de3ab235f6967658e4096e9057572771 merge in new test actions. --- diff --git a/Changes b/Changes index 205b601..d898cec 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ # This file documents the revision history for Perl extension Catalyst. -5.8000 +5.8000_01 - Port to Moose - Added test for action stringify - Added test for component instances getting $self->{value} from config. @@ -10,6 +10,8 @@ - Fix some Win32 test failures - Add pt translation of error message (wreis) - Make :Chained('../action') work (Florian Ragwitz) + - Add test actions + - Chained doc improvements (rev 8326-8328) 5.7099_03 2008-07-20 10:10:00 - Fix regressions for regexp fallback in model(), view() and controller() diff --git a/lib/Catalyst/Test.pm b/lib/Catalyst/Test.pm index 9e0db01..7c3022a 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, diff --git a/t/catalyst-test.t b/t/catalyst-test.t new file mode 100644 index 0000000..6f1bacc --- /dev/null +++ b/t/catalyst-test.t @@ -0,0 +1,11 @@ +use FindBin; +use lib "$FindBin::Bin/lib"; +use Catalyst::Test 'TestApp'; + +use Test::More tests => 5; + +content_like('/',qr/root/,'content check'); +action_ok('/','Action ok ok','normal action ok'); +action_redirect('/engine/response/redirect/one','redirect check'); +action_notfound('/engine/response/status/s404','notfound check'); +contenttype_is('/action/local/one','text/plain','Contenttype check'); \ No newline at end of file