]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/psgi_search.t
mboxgz: ensure gzipped mboxes always have filenames
[public-inbox.git] / t / psgi_search.t
index 0c430aeafd8bce6fcec2cfeaf2e2c302496de800..4ff25eb2e9b6d0e617d1edf9e70b4816aabdf15b 100644 (file)
@@ -7,17 +7,13 @@ use Email::MIME;
 use PublicInbox::Config;
 use PublicInbox::Inbox;
 use PublicInbox::InboxWritable;
-use PublicInbox::WWW;
 use bytes (); # only for bytes::length
-require './t/common.perl';
+use PublicInbox::TestCommon;
 my @mods = qw(DBD::SQLite Search::Xapian HTTP::Request::Common Plack::Test
                URI::Escape Plack::Builder);
-foreach my $mod (@mods) {
-       eval "require $mod";
-       plan skip_all => "$mod missing for psgi_search.t" if $@;
-}
-
-use_ok $_ foreach (@mods, qw(PublicInbox::SearchIdx));
+require_mods(@mods);
+use_ok($_) for (qw(HTTP::Request::Common Plack::Test));
+use_ok 'PublicInbox::WWW';
 my ($tmpdir, $for_destroy) = tmpdir();
 
 my $ibx = PublicInbox::Inbox->new({
@@ -31,16 +27,32 @@ my $im = $ibx->importer(0);
 my $digits = '10010260936330';
 my $ua = 'Pine.LNX.4.10';
 my $mid = "$ua.$digits.2460-100000\@penguin.transmeta.com";
-my $data = <<"EOF";
+my $mime = PublicInbox::MIME->new(<<EOF);
 Subject: test
 Message-ID: <$mid>
 From: Ævar Arnfjörð Bjarmason <avarab\@example>
 To: git\@vger.kernel.org
 
 EOF
+$im->add($mime);
+
+$mime = PublicInbox::MIME->new(<<'EOF');
+Subject:
+Message-ID: <blank-subject@example.com>
+From: blank subject <blank-subject@example.com>
+To: git@vger.kernel.org
 
-my $mime = Email::MIME->new(\$data);
+EOF
 $im->add($mime);
+
+$mime = PublicInbox::MIME->new(<<'EOF');
+Message-ID: <no-subject-at-all@example.com>
+From: no subject at all <no-subject-at-all@example.com>
+To: git@vger.kernel.org
+
+EOF
+$im->add($mime);
+
 $im->done;
 PublicInbox::SearchIdx->new($ibx, 1)->index_sync;
 
@@ -82,6 +94,25 @@ test_psgi(sub { $www->call(@_) }, sub {
                like($res->content, $mid_re, 'found mid in response');
                chop($digits);
        }
+
+       $res = $cb->(GET('/test/'));
+       $html = $res->content;
+       like($html, qr/\bhref="no-subject-at-all[^>]+>\(no subject\)</,
+               'subject-less message linked from "/$INBOX/"');
+       like($html, qr/\bhref="blank-subject[^>]+>\(no subject\)</,
+               'blank subject message linked from "/$INBOX/"');
+
+       $res = $cb->(GET('/test/?q=tc:git'));
+       like($html, qr/\bhref="no-subject-at-all[^>]+>\(no subject\)</,
+               'subject-less message linked from "/$INBOX/?q=..."');
+       like($html, qr/\bhref="blank-subject[^>]+>\(no subject\)</,
+               'blank subject message linked from "/$INBOX/?q=..."');
+       $res = $cb->(GET('/test/no-subject-at-all@example.com/raw'));
+       like($res->header('Content-Disposition'),
+               qr/filename=no-subject\.txt/);
+       $res = $cb->(GET('/test/no-subject-at-all@example.com/t.mbox.gz'));
+       like($res->header('Content-Disposition'),
+               qr/filename=no-subject\.mbox\.gz/);
 });
 
 done_testing();