use strict; use warnings; use Test::More; use Plack::Test; use Plack::Builder; use HTTP::Request::Common; use Plack::Middleware::Throttle::Backend::Hash; my $handler = builder { enable "Throttle::Daily", max => 2, backend => Plack::Middleware::Throttle::Backend::Hash->new(); sub { [ '200', [ 'Content-Type' => 'text/html' ], ['hello world'] ] }; }; test_psgi app => $handler, client => sub { my $cb = shift; { for ( 1 .. 2 ) { my $req = GET "http://localhost/"; my $res = $cb->($req); is $res->code, 200, 'http response is 200'; ok $res->header('X-RateLimit-Limit'), 'header ratelimit'; } my $req = GET "http://localhost/"; my $res = $cb->($req); is $res->code, 503, 'http response is 503'; ok $res->header('X-RateLimit-Reset'), 'header reset'; } }; done_testing;