HTTP-Engine
view release on metacpan or search on metacpan
t/020_interface/standalone-restart.t view on Meta::CPAN
use strict;
use warnings;
use t::Utils;
use Test::TCP;
use LWP::UserAgent;
use Test::More;
plan skip_all => 'Interface::Standalone will be removed';
plan tests => 1;
test_tcp(
client => sub {
my $port = shift;
my $ua = LWP::UserAgent->new(keep_alive => 1);
my $res = $ua->request(HTTP::Request->new('RESTART', "http://localhost:$port/"));
is $res->code, 500;
},
server => sub {
my $port = shift;
$SIG{ALRM} = sub { die "timeout" };
alarm 10;
HTTP::Engine->new(
interface => {
module => 'Standalone',
args => {
port => $port,
},
request_handler => sub { },
},
)->run;
},
);
( run in 0.477 second using v1.01-cache-2.11-cpan-71847e10f99 )