blob: 4fba4d2389b97228bfb701161d22ca68bf4e168f (
plain)
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
|
use strict;
use warnings;
use Test::More;
use t::Util;
use Time::HiRes qw(time);
plan skip_all => 'curl not found'
unless prog_exists('curl');
my $all_data = do {
open my $fh, "<", "@{[DOC_ROOT]}/halfdome.jpg"
or die "failed to open file:@{[DOC_ROOT]}/halfdome.jpg:$!";
undef $/;
<$fh>;
};
my $server = spawn_h2o(<< "EOT");
throttle-response: ON
hosts:
default:
paths:
/:
file.dir: @{[ DOC_ROOT ]}
header.add: "X-Traffic: 100000"
EOT
run_with_curl($server, sub {
my ($proto, $port, $curl_cmd) = @_;
$curl_cmd .= " --silent --show-error";
my $url = "$proto://127.0.0.1:$port/halfdome.jpg";
subtest "throttle-to-low-speed" => sub {
my $start_time = time;
my $resp = `$curl_cmd $url`;
my $end_time = time;
is $resp, $all_data;
my $speed = length($resp) / ($end_time - $start_time);
cmp_ok($speed, '<=', 100000 * 1.1); # the implementation may cause response speed is a bit larger than the limitation, especially when file is not big enough.
};
});
done_testing();
|