# Copyright (C) 2017-2020 all contributors # License: AGPL-3.0+ use strict; use warnings; use Test::More; use Email::MIME; use PublicInbox::Config; use PublicInbox::Inbox; use PublicInbox::InboxWritable; use bytes (); # only for bytes::length use PublicInbox::TestCommon; my @mods = qw(DBD::SQLite Search::Xapian HTTP::Request::Common Plack::Test URI::Escape Plack::Builder); 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({ inboxdir => $tmpdir, address => 'git@vger.kernel.org', name => 'test', }); $ibx = PublicInbox::InboxWritable->new($ibx); $ibx->init_inbox(1); my $im = $ibx->importer(0); my $digits = '10010260936330'; my $ua = 'Pine.LNX.4.10'; my $mid = "$ua.$digits.2460-100000\@penguin.transmeta.com"; my $mime = PublicInbox::MIME->new(< From: Ævar Arnfjörð Bjarmason To: git\@vger.kernel.org EOF $im->add($mime); $mime = PublicInbox::MIME->new(<<'EOF'); Subject: Message-ID: From: blank subject To: git@vger.kernel.org EOF $im->add($mime); $mime = PublicInbox::MIME->new(<<'EOF'); Message-ID: From: no subject at all To: git@vger.kernel.org EOF $im->add($mime); $im->done; PublicInbox::SearchIdx->new($ibx, 1)->index_sync; my $cfgpfx = "publicinbox.test"; my $config = PublicInbox::Config->new(\<new($config); test_psgi(sub { $www->call(@_) }, sub { my ($cb) = @_; my $res; $res = $cb->(GET('/test/?q=%C3%86var')); my $html = $res->content; like($html, qr/Ævar - /, 'HTML escaped in title'); my @res = ($html =~ m/\?q=(.+var)\b/g); ok(scalar(@res), 'saw query strings'); my %uniq = map { $_ => 1 } @res; is(1, scalar keys %uniq, 'all query values identical in HTML'); is('%C3%86var', (keys %uniq)[0], 'matches original query'); ok(index($html, 'by Ævar Arnfjörð Bjarmason') >= 0, "displayed Ævar's name properly in HTML"); my $warn = []; local $SIG{__WARN__} = sub { push @$warn, @_ }; $res = $cb->(GET('/test/?q=s:test&l=5e')); is($res->code, 200, 'successful search result'); is_deeply([], $warn, 'no warnings from non-numeric comparison'); $res = $cb->(POST('/test/?q=s:bogus&x=m')); is($res->code, 404, 'failed search result gives 404'); is_deeply([], $warn, 'no warnings'); my $mid_re = qr/\Q$mid\E/o; while (length($digits) > 8) { $res = $cb->(GET("/test/$ua.$digits/")); is($res->code, 300, 'partial match found while truncated'); like($res->content, qr/\b1 partial match found\b/); 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(); 1;