Skip to content

nichtich/Plack-Util-Load

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME

Plack::Util::Load - load PSGI application from class, file, or URL

STATUS

Build Status Coverage Status Kwalitee Score

SYNOPSIS

use Plack::Util::Load;

$app = load_app('app.psgi');
$app = load_app; # equivalent

$app = load_app(5000); 
$app = load_app(':5000');
$app = load_app('localhost:5000');
$app = load_app('http://localhost:5000/');

$app = load_app("http://example.org/");

$app = load_app('MyApp::PSGI');

DESCRIPTION

This module exports the function load_app to load a PSGI application from file, class name, URL, or port number on localhost. The function will return a code reference or die. A typical use case is the application of tests. To give an example, the following test runs on the PSGI application MyApp::PSGI by default. After deployment the same test can be executed with environment variable TEST_URL set to the port or URL where the app is installed:

use Test::More;
use Plack::Test;
my $app = load_app( $ENV{TEST_URL} || 'MyApp::PSGI', verbose => 1 );

test_psgi $app, sub {
    my $cb = shift;
    ...
};

done_testing;

OPTIONS

The additional options verbose can be passed to log HTTP requests and errors:

$app = load_app( 'http://example.org/', verbose => 1 ); 

The default value for this option can be set with $Plack::Util::Load::VERBOSE.

SEE ALSO

Plack::Util, Plack::App::Proxy

COPYRIGHT AND LICENSE

Copyright Jakob Voss, 2015-

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

About

load PSGI application from class, file, or URL

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages