-
-
23 Nov 2013 07:55:52 UTC
- Distribution: Plack
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (98)
- Testers (2370 / 55 / 0)
- Kwalitee
Bus factor: 1- License: perl_5
- Perl: v5.8.1
- Activity
24 month- Tools
- Download (230.81KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 94 contributors- Tatsuhiko Miyagawa
-
Aaron Trevena
-
Alex J. G. Burzyński
-
Alexandr Ciornii
-
Andrew Rodland
-
Andy Wardley
-
Aristotle Pagaltzis
-
Ask Bjørn Hansen
-
Ben Morrow
-
Bernhard Graf
-
Chia-liang Kao
-
Christian Walde
-
Cosimo Streppone
-
Daisuke Maki
-
Daisuke Murase
-
Dave Rolsky
-
David E. Wheeler
-
David Steinbrunner
-
Eduardo Arino de la Rubia
-
Florian Ragwitz
-
Graham Knop
-
Grant McLean
-
HIROSE Masaaki
-
Hans Dieter Pearcey
-
Henry Baragar
-
Hiroshi Sakai
-
Jakob Voss
-
Jay Hannah
-
Jesse Luehrs
-
Jiro Nishiguchi
-
Johannes Plunien
-
John Beppu
-
John Napiorkowski
-
Jonathan Swartz
-
Justin Davis
-
Kang-min Liu
-
Karen Etheridge
-
Kazuho Oku
-
Keedi Kim
-
Lee Aylward
-
Leo Lapworth
-
Marian Schubert
-
Mark Fowler
-
Mark Stosberg
-
Masahiro Chiba
-
Masahiro Nagano
-
Michael G. Schwern
-
Nick Wellnhofer
-
Nobuo Danjou
-
Olaf Alders
-
Oliver Gorwits
-
Oliver Paukstadt
-
Olivier Mengué
-
Panu Ervamaa
-
Paul Driver
-
Pedro Melo
-
Peter Flanigan
-
Peter Makholm
-
Piotr Roszatycki
-
Rafael Kitover
-
Randy Stauner
-
Ray Miller
-
Ricky Morse
-
Rob Hoelz
-
Ryo Miyake
-
Scott S. McCoy
-
Shawn M Moore
-
Stephen Clouse
-
Stevan Little
-
Stuart A Johnston
-
Takeshi OKURA
-
Tokuhiro Matsuno
-
Tom Heady
-
Tomas Doran
-
Wallace Reis
-
Yann Kerherve
-
Yury Zavarin
-
Yuval Kogman
-
chansen
-
cho45
-
chromatic
-
fREW Schmidt
-
fayland
-
franck cuny
-
hiratara
-
kakuno
-
mala
-
osfameron
-
punytan
-
vti
-
xaicron
-
yappo
-
Ævar Arnfjörð Bjarmason
-
唐鳳
NAME
Plack::Test - Test PSGI applications with various backends
SYNOPSIS
use Plack::Test; use HTTP::Request::Common; # Simple OO interface my $app = sub { return [ 200, [], [ "Hello "] ] }; my $test = Plack::Test->create($app); my $res = $test->request(GET "/"); is $res->content, "Hello"; # traditional - named params test_psgi app => sub { my $env = shift; return [ 200, [ 'Content-Type' => 'text/plain' ], [ "Hello World" ] ], }, client => sub { my $cb = shift; my $req = HTTP::Request->new(GET => "http://localhost/hello"); my $res = $cb->($req); like $res->content, qr/Hello World/; }; # positional params (app, client) my $app = sub { return [ 200, [], [ "Hello "] ] }; test_psgi $app, sub { my $cb = shift; my $res = $cb->(GET "/"); is $res->content, "Hello"; };
DESCRIPTION
Plack::Test is a unified interface to test PSGI applications using HTTP::Request and HTTP::Response objects. It also allows you to run PSGI applications in various ways. The default backend is
Plack::Test::MockHTTP
, but you may also use any Plack::Handler implementation to run live HTTP requests against a web server.METHODS
- create
-
$test = Plack::Test->create($app, %options);
creates an instance of Plack::Test implementation class.
$app
has to be a valid PSGI application code reference. - request
-
$res = $test->request($request);
takes an HTTP::Request object, runs it through the PSGI application to test and returns an HTTP::Response object.
FUNCTIONS
Plack::Test also provides a functional interface that takes two callbacks, each of which represents PSGI application and HTTP client code that tests the application.
- test_psgi
-
test_psgi $app, $client; test_psgi app => $app, client => $client;
Runs the client test code
$client
against a PSGI application$app
. The client callback gets one argument$cb
, a callback that accepts anHTTP::Request
object and returns anHTTP::Response
object.Use HTTP::Request::Common to import shortcuts for creating requests for
GET
,POST
,DELETE
, andPUT
operations.For your convenience, the
HTTP::Request
given to the callback automatically uses the HTTP protocol and the localhost (127.0.0.1 by default), so the following code just works:use HTTP::Request::Common; test_psgi $app, sub { my $cb = shift; my $res = $cb->(GET "/hello"); };
Note that however, it is not a good idea to pass an arbitrary (i.e. user-input) string to
GET
or evenHTTP::Request->new
by assuming that it always represents a path, because:my $req = GET "//foo/bar";
would represent a request for a URL that has no scheme, has a hostname foo and a path /bar, instead of a path //foo/bar which you might actually want.
OPTIONS
Specify the Plack::Test backend using the environment variable
PLACK_TEST_IMPL
or$Plack::Test::Impl
package variable.The available values for the backend are:
- MockHTTP
-
(Default) Creates a PSGI env hash out of HTTP::Request object, runs the PSGI application in-process and returns HTTP::Response.
- Server
-
Runs one of Plack::Handler backends (
Standalone
by default) and sends live HTTP requests to test. - ExternalServer
-
Runs tests against an external server specified in the
PLACK_TEST_EXTERNALSERVER_URI
environment variable instead of spawning the application in a server locally.
For instance, test your application with the
HTTP::Server::ServerSimple
server backend with:> env PLACK_TEST_IMPL=Server PLACK_SERVER=HTTP::Server::ServerSimple \ prove -l t/test.t
AUTHOR
Tatsuhiko Miyagawa
Module Install Instructions
To install Plack, copy and paste the appropriate command in to your terminal.
cpanm Plack
perl -MCPAN -e shell install Plack
For more information on module installation, please visit the detailed CPAN module installation guide.