summaryrefslogtreecommitdiffstats
path: root/web/server/h2o/libh2o/t/80reverse-proxy-missing-content-length-for-post.t
blob: 4afd9f8c729d5bc55557350798e931e5967fad9c (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
use strict;
use warnings;
use Net::EmptyPort qw(check_port empty_port);
use Test::More;
use t::Util;

plan skip_all => 'curl not found'
    unless prog_exists('curl');
plan skip_all => 'curl does not support HTTP/2'
    unless curl_supports_http2();

my $upstream_port = empty_port();
$| = 1;
my $socket = new IO::Socket::INET (
    LocalHost => '127.0.0.1',
    LocalPort => $upstream_port,
    Proto => 'tcp',
    Listen => 1,
    Reuse => 1
);
die "cannot create socket $!\n" unless $socket;

check_port($upstream_port) or die "can't connect to server socket";
# accept and close check_port's connection
my $client_socket = $socket->accept();
close($client_socket);

my $server = spawn_h2o(<< "EOT");
hosts:
  default:
    paths:
      "/":
        proxy.reverse.url: http://127.0.0.1:$upstream_port
EOT

sub doit {
    my $cmd = shift;
    my $should_see_cl = shift;
    my $cl_value = shift;
    system($cmd);

    my $req;
    $client_socket = $socket->accept();
    $client_socket->recv($req, 1 * 1024);
    $client_socket->send("HTTP/1.1 200 Ok\r\nConnection:close\r\n\r\nBody\r\n");
    close($client_socket);

    my $cl_actual_value = -1;
    my $cl_headers = 0;
    foreach (split(/\r\n/, $req)) {
        if (/^content-length:(.*)$/i) {
            $cl_headers++;
            $cl_actual_value = $1;
        }
    }
    if ($should_see_cl) {
        ok($cl_headers == 1, "Saw one, and only one content-length: header");
        ok($cl_actual_value == $cl_value, "content-length: header has the expected value");
    } else {
        ok($cl_headers == 0, "Saw no content-length: header");
    }
}
my $file_size = 512;
my $file = create_data_file($file_size);

# curl doesn't add a CL header when using -X POST
doit("curl -so /dev/null --http2 -X POST http://127.0.0.1:$server->{'port'}/ &", 1, 0);
# curl adds a content-length:0 header when using --data ''
doit("curl -so /dev/null --http2 --data '' http://127.0.0.1:$server->{'port'}/ &", 1, 0);

# check that an existing CL header is preserved
doit("curl -so /dev/null --http2 --data 'a=b' http://127.0.0.1:$server->{'port'}/ &", 1, 3);
doit("curl -so /dev/null --http2 --header 'transfer-encoding: chunked' --data-binary \@$file -X POST http://127.0.0.1:$server->{'port'}/ &", 1, $file_size);

$socket->close();
done_testing();