]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/httpd-corner.t
www: implement hybrid flat+thread conversation view
[public-inbox.git] / t / httpd-corner.t
index a6238e4871f09ed4658d4c317de9b05c3f5faf88..b9eaa6fbec46bd3ea377ad8b5ac0b810a74fa437 100644 (file)
@@ -5,9 +5,10 @@
 use strict;
 use warnings;
 use Test::More;
+use Time::HiRes qw(gettimeofday tv_interval);
 
 foreach my $mod (qw(Plack::Util Plack::Request Plack::Builder Danga::Socket
-                       HTTP::Parser::XS HTTP::Date HTTP::Status)) {
+                       HTTP::Date HTTP::Status)) {
        eval "require $mod";
        plan skip_all => "$mod missing for httpd-corner.t" if $@;
 }
@@ -55,10 +56,10 @@ my $spawn_httpd = sub {
                # pretend to be systemd
                dup2(fileno($sock), 3) or die "dup2 failed: $!\n";
                dup2(fileno($unix), 4) or die "dup2 failed: $!\n";
-               $sock = IO::Handle->new_from_fd(3, 'r');
-               $sock->fcntl(F_SETFD, 0);
-               $unix = IO::Handle->new_from_fd(4, 'r');
-               $unix->fcntl(F_SETFD, 0);
+               my $t = IO::Handle->new_from_fd(3, 'r');
+               $t->fcntl(F_SETFD, 0);
+               my $u = IO::Handle->new_from_fd(4, 'r');
+               $u->fcntl(F_SETFD, 0);
                $ENV{LISTEN_PID} = $$;
                $ENV{LISTEN_FDS} = 2;
                exec $httpd, @args, "--stdout=$out", "--stderr=$err", $psgi;
@@ -84,6 +85,39 @@ my $spawn_httpd = sub {
        is($body, "hello world\n", 'callback body matches expected');
 }
 
+{
+       my $conn = conn_for($sock, 'excessive header');
+       $SIG{PIPE} = 'IGNORE';
+       $conn->write("GET /callback HTTP/1.0\r\n");
+       foreach my $i (1..500000) {
+               last unless $conn->write("X-xxxxxJunk-$i: omg\r\n");
+       }
+       ok(!$conn->write("\r\n"), 'broken request');
+       ok($conn->read(my $buf, 8192), 'read response');
+       my ($head, $body) = split(/\r\n\r\n/, $buf);
+       like($head, qr/\b400\b/, 'got 400 response');
+}
+
+{
+       my $conn = conn_for($sock, 'excessive body Content-Length');
+       $SIG{PIPE} = 'IGNORE';
+       my $n = (10 * 1024 * 1024) + 1;
+       $conn->write("PUT /sha1 HTTP/1.0\r\nContent-Length: $n\r\n\r\n");
+       ok($conn->read(my $buf, 8192), 'read response');
+       my ($head, $body) = split(/\r\n\r\n/, $buf);
+       like($head, qr/\b413\b/, 'got 413 response');
+}
+
+{
+       my $conn = conn_for($sock, 'excessive body chunked');
+       $SIG{PIPE} = 'IGNORE';
+       my $n = (10 * 1024 * 1024) + 1;
+       $conn->write("PUT /sha1 HTTP/1.1\r\nTransfer-Encoding: chunked\r\n");
+       $conn->write("\r\n".sprintf("%x\r\n", $n));
+       ok($conn->read(my $buf, 8192), 'read response');
+       my ($head, $body) = split(/\r\n\r\n/, $buf);
+       like($head, qr/\b413\b/, 'got 413 response');
+}
 
 # Unix domain sockets
 {
@@ -241,6 +275,18 @@ SKIP: {
        }
 }
 
+{
+       my $conn = conn_for($sock, 'no TCP_CORK on empty body');
+       $conn->write("GET /empty HTTP/1.1\r\nHost:example.com\r\n\r\n");
+       my $buf = '';
+       my $t0 = [ gettimeofday ];
+       until ($buf =~ /\r\n\r\n/s) {
+               $conn->sysread($buf, 4096, length($buf));
+       }
+       my $elapsed = tv_interval($t0, [ gettimeofday ]);
+       ok($elapsed < 0.190, 'no 200ms TCP cork delay on empty body');
+}
+
 {
        my $conn = conn_for($sock, 'graceful termination during slow request');
        $conn->write("PUT /sha1 HTTP/1.0\r\n");