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
|
use strict;
use warnings;
# Test that vars are really reset between each request
use Test::More;
use HTTP::Tiny::NoProxy;
plan skip_all => "skip test with Test::TCP in win32" if $^O eq 'MSWin32';
plan skip_all => "Test::TCP is needed for this test"
unless Dancer::ModuleLoader->load("Test::TCP" => "1.30");
plan tests => 10;
Test::TCP::test_tcp(
client => sub {
my $port = shift;
my $ua = HTTP::Tiny::NoProxy->new;
for (1..10) {
my $res = $ua->get("http://127.0.0.1:$port/getvarfoo");
is $res->{content}, 1;
}
},
server => sub {
my $port = shift;
use Dancer ":tests";
# vars should be reset before the handler is called
var foo => 42;
set startup_info => 0, port => $port, server => '127.0.0.1';
get "/getvarfoo" => sub {
return ++vars->{foo};
};
Dancer->dance;
},
);
|