]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/httpd-corner.t
qspawn: reinstate filter support, add gzip filter
[public-inbox.git] / t / httpd-corner.t
index c99e5ec76157d0611ad82344425ed17db50a6905..e50aa43682babfd66d006237eababf3c3863b054 100644 (file)
@@ -22,6 +22,7 @@ my $err = "$tmpdir/stderr.log";
 my $out = "$tmpdir/stdout.log";
 my $psgi = "./t/httpd-corner.psgi";
 my $sock = tcp_server() or die;
+my @zmods = qw(PublicInbox::GzipFilter IO::Uncompress::Gunzip);
 
 # make sure stdin is not a pipe for lsof test to check for leaking pipes
 open(STDIN, '<', '/dev/null') or die 'no /dev/null: $!';
@@ -324,6 +325,14 @@ SKIP: {
        close $fh or die "curl errored out \$?=$?";
        is($n, 30 * 1024 * 1024, 'got expected output from curl');
        is($non_zero, 0, 'read all zeros');
+
+       require_mods(@zmods, 1);
+       open $fh, '-|', qw(curl -sS), "$base/psgi-return-gzip" or die;
+       binmode $fh;
+       my $buf = do { local $/; <$fh> };
+       close $fh or die "curl errored out \$?=$?";
+       IO::Uncompress::Gunzip::gunzip(\$buf => \(my $out));
+       is($out, "hello world\n");
 }
 
 {
@@ -596,6 +605,22 @@ SKIP: {
        is_deeply([], [keys %child], 'no extra pipes with -W0');
 };
 
+# ensure compatibility with other PSGI servers
+SKIP: {
+       require_mods(@zmods, qw(Plack::Test HTTP::Request::Common), 3);
+       use_ok 'HTTP::Request::Common';
+       use_ok 'Plack::Test';
+       my $app = require $psgi;
+       test_psgi($app, sub {
+               my ($cb) = @_;
+               my $req = GET('http://example.com/psgi-return-gzip');
+               my $res = $cb->($req);
+               my $buf = $res->content;
+               IO::Uncompress::Gunzip::gunzip(\$buf => \(my $out));
+               is($out, "hello world\n");
+       });
+}
+
 done_testing();
 
 sub capture {