]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/psgi_v2.t
t/psgi_v2: ignore warnings on missing P::M::ReverseProxy
[public-inbox.git] / t / psgi_v2.t
index 9c19b0413dd1f0c20b61e58ea21c751006b88c9f..c13f5e71b18419300594c481720a2381b3d0dbf3 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use Test::More;
 use PublicInbox::TestCommon;
 require_git(2.6);
-use PublicInbox::MIME;
+use PublicInbox::Eml;
 use PublicInbox::Config;
 use PublicInbox::MID qw(mids);
 require_mods(qw(DBD::SQLite Search::Xapian HTTP::Request::Common Plack::Test
@@ -14,6 +14,40 @@ use_ok($_) for (qw(HTTP::Request::Common Plack::Test));
 use_ok 'PublicInbox::WWW';
 use_ok 'PublicInbox::V2Writable';
 my ($inboxdir, $for_destroy) = tmpdir();
+my $cfgpath = "$inboxdir/$$.config";
+SKIP: {
+       require_mods(qw(Plack::Test::ExternalServer), 1);
+       open my $fh, '>', $cfgpath or BAIL_OUT $!;
+       print $fh <<EOF or BAIL_OUT $!;
+[publicinbox "v2test"]
+       inboxdir = $inboxdir
+       address = test\@example.com
+EOF
+       close $fh or BAIL_OUT $!;
+}
+
+my $run_httpd = sub {
+       my ($client, $skip) = @_;
+       SKIP: {
+               require_mods(qw(Plack::Test::ExternalServer), $skip);
+               my $env = { PI_CONFIG => $cfgpath };
+               my $sock = tcp_server() or die;
+               my ($out, $err) = map { "$inboxdir/std$_.log" } qw(out err);
+               my $cmd = [ qw(-httpd -W0), "--stdout=$out", "--stderr=$err" ];
+               my $td = start_script($cmd, $env, { 3 => $sock });
+               my ($h, $p) = ($sock->sockhost, $sock->sockport);
+               local $ENV{PLACK_TEST_EXTERNALSERVER_URI} = "http://$h:$p";
+               Plack::Test::ExternalServer::test_psgi(client => $client);
+               $td->join('TERM');
+               open my $fh, '<', $err or BAIL_OUT $!;
+               my $e = do { local $/; <$fh> };
+               if ($e =~ s/^Plack::Middleware::ReverseProxy missing,\n//gms) {
+                       $e =~ s/^URL generation for redirects .*\n//gms;
+               }
+               is($e, '', 'no errors');
+       }
+};
+
 my $ibx = {
        inboxdir => $inboxdir,
        name => 'test-v2writable',
@@ -26,7 +60,7 @@ my $new_mid;
 my $im = PublicInbox::V2Writable->new($ibx, 1);
 $im->{parallel} = 0;
 
-my $mime = PublicInbox::MIME->new(<<'EOF');
+my $mime = PublicInbox::Eml->new(<<'EOF');
 From oldbug-pre-a0c07cba0e5d8b6a Fri Oct  2 00:00:00 1993
 From: a@example.com
 To: test@example.com
@@ -60,7 +94,7 @@ EOF
 my $config = PublicInbox::Config->new(\$cfg);
 my $www = PublicInbox::WWW->new($config);
 my ($res, $raw, @from_);
-test_psgi(sub { $www->call(@_) }, sub {
+my $client0 = sub {
        my ($cb) = @_;
        $res = $cb->(GET('/v2test/description'));
        like($res->content, qr!\$INBOX_DIR/description missing!,
@@ -90,7 +124,9 @@ test_psgi(sub { $www->call(@_) }, sub {
        @bodies = ($res->content =~ /^(hello [^<]+)$/mg);
        is_deeply(\@bodies, [ "hello world!\n", "hello world\n" ],
                'new.html ordering is chronological');
-});
+};
+test_psgi(sub { $www->call(@_) }, $client0);
+$run_httpd->($client0, 9);
 
 $mime->header_set('Message-Id', 'a-mid@b');
 $mime->body_set("hello ghosts\n");
@@ -103,7 +139,7 @@ $mids = mids($mime->header_obj);
 my $third = $mids->[-1];
 $im->done;
 
-test_psgi(sub { $www->call(@_) }, sub {
+my $client1 = sub {
        my ($cb) = @_;
        $res = $cb->(GET("/v2test/$third/raw"));
        $raw = $res->content;
@@ -122,12 +158,19 @@ test_psgi(sub { $www->call(@_) }, sub {
 
        SKIP: {
                eval { require IO::Uncompress::Gunzip };
-               skip 'IO::Uncompress::Gunzip missing', 4 if $@;
+               skip 'IO::Uncompress::Gunzip missing', 6 if $@;
+               my ($in, $out, $status);
+               my $req = GET('/v2test/a-mid@b/raw');
+               $req->header('Accept-Encoding' => 'gzip');
+               $res = $cb->($req);
+               is($res->header('Content-Encoding'), 'gzip', 'gzip encoding');
+               $in = $res->content;
+               IO::Uncompress::Gunzip::gunzip(\$in => \$out);
+               is($out, $raw, 'gzip response matches');
 
                $res = $cb->(GET('/v2test/a-mid@b/t.mbox.gz'));
-               my $out;
-               my $in = $res->content;
-               my $status = IO::Uncompress::Gunzip::gunzip(\$in => \$out);
+               $in = $res->content;
+               $status = IO::Uncompress::Gunzip::gunzip(\$in => \$out);
                unlike($out, qr/^From oldbug/sm, 'buggy "From_" line omitted');
                like($out, qr/^hello world$/m, 'got first in t.mbox.gz');
                like($out, qr/^hello world!$/m, 'got second in t.mbox.gz');
@@ -187,7 +230,12 @@ test_psgi(sub { $www->call(@_) }, sub {
                like($raw, qr!>\Q$mid\E</a>!s, "Message-ID $mid shown");
        }
        like($raw, qr/\b3\+ messages\b/, 'thread overview shown');
+};
+
+test_psgi(sub { $www->call(@_) }, $client1);
+$run_httpd->($client1, 38);
 
+{
        my $exp = [ qw(<a-mid@b> <reuse@mid>) ];
        $mime->header_set('Message-Id', @$exp);
        $mime->header_set('Subject', '4th dupe');
@@ -196,10 +244,12 @@ test_psgi(sub { $www->call(@_) }, sub {
        $im->done;
        my @h = $mime->header('Message-ID');
        is_deeply($exp, \@h, 'reused existing Message-ID');
-
        $config->each_inbox(sub { $_[0]->search->reopen });
+}
 
-       $res = $cb->(GET('/v2test/new.atom'));
+my $client2 = sub {
+       my ($cb) = @_;
+       my $res = $cb->(GET('/v2test/new.atom'));
        my @ids = ($res->content =~ m!<id>urn:uuid:([^<]+)</id>!sg);
        my %ids;
        $ids{$_}++ for @ids;
@@ -208,7 +258,7 @@ test_psgi(sub { $www->call(@_) }, sub {
        $res = $cb->(GET('/v2test/reuse@mid/T/'));
        $raw = $res->content;
        like($raw, qr/\b4\+ messages\b/, 'thread overview shown with /T/');
-       @over = ($raw =~ m/^\d{4}-\d+-\d+\s+\d+:\d+ (.+)$/gm);
+       my @over = ($raw =~ m/^\d{4}-\d+-\d+\s+\d+:\d+ (.+)$/gm);
        is_deeply(\@over, [ '<a', '` <a', '` <a', '` <a' ],
                'duplicate messages share the same root');
 
@@ -222,15 +272,23 @@ test_psgi(sub { $www->call(@_) }, sub {
        is($res->code, 200, 'got info refs for dumb clones w/ .git suffix');
        $res = $cb->(GET('/v2test/info/refs'));
        is($res->code, 404, 'v2 git URL w/o shard fails');
+};
 
+test_psgi(sub { $www->call(@_) }, $client2);
+$run_httpd->($client2, 8);
+{
        # ensure conflicted attachments can be resolved
        foreach my $body (qw(old new)) {
-               $mime = mime_load "t/psgi_v2-$body.eml";
+               $mime = eml_load "t/psgi_v2-$body.eml";
                ok($im->add($mime), "added attachment $body");
        }
        $im->done;
        $config->each_inbox(sub { $_[0]->search->reopen });
-       $res = $cb->(GET('/v2test/a@dup/'));
+}
+
+my $client3 = sub {
+       my ($cb) = @_;
+       my $res = $cb->(GET('/v2test/a@dup/'));
        my @links = ($res->content =~ m!"\.\./([^/]+/2-attach\.txt)\"!g);
        is(scalar(@links), 2, 'both attachment links exist');
        isnt($links[0], $links[1], 'attachment links are different');
@@ -242,7 +300,12 @@ test_psgi(sub { $www->call(@_) }, sub {
        }
        $res = $cb->(GET('/v2test/?t=1970'.'01'.'01'.'000000'));
        is($res->code, 404, '404 for out-of-range t= param');
-});
+       @warn = ();
+       $res = $cb->(GET('/v2test/?t=1970'.'01'.'01'));
+       is_deeply(\@warn, [], 'no warnings on YYYYMMDD only');
+};
+test_psgi(sub { $www->call(@_) }, $client3);
+$run_httpd->($client3, 4);
 
 done_testing();