1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
#!/usr/bin/perl
use strict;
use warnings;
use FindBin;
use Test::More;
BEGIN {
{
local $@;
eval "use Plack 0.9910; use FCGI::Client 0.06; use MooseX::NonMoose 0.07; use IO::String; use Plack::App::FCGIDispatcher;";
plan skip_all => "Plack 0.9910, FCGI::Client 0.06, MooseX::NonMoose 0.07 and Plack::App::FCGIDispatcher are required for this test" if $@;
}
}
use Plack::Handler::FCGI::Engine;
use Test::TCP;
use Plack::Test::Suite;
use t::lib::FCGIUtils;
my $http_port;
my $fcgi_port;
test_fcgi_standalone(
sub {
($http_port, $fcgi_port) = @_;
Plack::Test::Suite->run_server_tests(\&run_server, $fcgi_port, $http_port);
done_testing();
}
);
sub run_server {
my($port, $app) = @_;
$| = 0; # Test::Builder autoflushes this. reset!
my $server = Plack::Handler::FCGI::Engine->new(
host => '127.0.0.1',
port => $port,
pidfile => '/tmp/101_plack_server_fcgi_engine_client.pid',
keep_stderr => 1,
);
$server->run($app);
}
|