]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/search.t
t/thread-cycle: no need for Xapian to run this test
[public-inbox.git] / t / search.t
index db94c0a351153d350ff07219148abb7922b4cf0c..eed9c9b61593a9e0e8694466b2c2e85f007fe399 100644 (file)
@@ -86,6 +86,7 @@ my $rw_commit = sub {
                        'Message-ID' => '<last@s>',
                        From => 'John Smith <js@example.com>',
                        To => 'list@example.com',
+                       Cc => 'foo@example.com',
                ],
                body => "goodbye forever :<\n");
 
@@ -122,19 +123,19 @@ sub filter_mids {
                is($res->{total}, 0, "path variant `$p' does not match");
        }
 
-       $res = $ro->query('subject:(Hello world)');
+       $res = $ro->query('s:(Hello world)');
        @res = filter_mids($res);
-       is_deeply(\@res, \@exp, 'got expected results for subject:() match');
+       is_deeply(\@res, \@exp, 'got expected results for s:() match');
 
-       $res = $ro->query('subject:"Hello world"');
+       $res = $ro->query('s:"Hello world"');
        @res = filter_mids($res);
-       is_deeply(\@res, \@exp, 'got expected results for subject:"" match');
+       is_deeply(\@res, \@exp, 'got expected results for s:"" match');
 
-       $res = $ro->query('subject:"Hello world"', {limit => 1});
+       $res = $ro->query('s:"Hello world"', {limit => 1});
        is(scalar @{$res->{msgs}}, 1, "limit works");
        my $first = $res->{msgs}->[0];
 
-       $res = $ro->query('subject:"Hello world"', {offset => 1});
+       $res = $ro->query('s:"Hello world"', {offset => 1});
        is(scalar @{$res->{msgs}}, 1, "offset works");
        my $second = $res->{msgs}->[0];
 
@@ -180,7 +181,7 @@ sub filter_mids {
        $rw_commit->();
        $ro->reopen;
 
-       # Subject:
+       # subject
        my $res = $ro->query('ghost');
        my @exp = sort qw(ghost-message@s ghost-reply@s);
        my @res = filter_mids($res);
@@ -292,7 +293,7 @@ sub filter_mids {
        $smsg->ensure_metadata;
        is($smsg->references, '', "no references created");
        my $msg = PublicInbox::SearchMsg->load_doc($smsg->{doc});
-       is($s, $msg->mini_mime->header('Subject'), 'long subject not rewritten');
+       is($s, $msg->subject, 'long subject not rewritten');
 }
 
 {
@@ -309,10 +310,7 @@ sub filter_mids {
        my $smsg = $rw->lookup_message('testmessage@example.com');
        my $msg = PublicInbox::SearchMsg->load_doc($smsg->{doc});
 
-       # mini_mime technically not valid (I think),
-       # but good enough for displaying HTML:
-       is($mime->header('Subject'), $msg->mini_mime->header('Subject'),
-               'UTF-8 subject preserved');
+       is($mime->header('Subject'), $msg->subject, 'UTF-8 subject preserved');
 }
 
 {
@@ -324,6 +322,111 @@ sub filter_mids {
        is(scalar @{$res->{msgs}}, 0, 'nothing before 19931001');
 }
 
+# names and addresses
+{
+       my $res = $ro->query('t:list@example.com');
+       is(scalar @{$res->{msgs}}, 6, 'searched To: successfully');
+       foreach my $smsg (@{$res->{msgs}}) {
+               like($smsg->to, qr/\blist\@example\.com\b/, 'to appears');
+       }
+
+       $res = $ro->query('tc:list@example.com');
+       is(scalar @{$res->{msgs}}, 6, 'searched To+Cc: successfully');
+       foreach my $smsg (@{$res->{msgs}}) {
+               my $tocc = join("\n", $smsg->to, $smsg->cc);
+               like($tocc, qr/\blist\@example\.com\b/, 'tocc appears');
+       }
+
+       foreach my $pfx ('tcf:', 'c:') {
+               $res = $ro->query($pfx . 'foo@example.com');
+               is(scalar @{$res->{msgs}}, 1,
+                       "searched $pfx successfully for Cc:");
+               foreach my $smsg (@{$res->{msgs}}) {
+                       like($smsg->cc, qr/\bfoo\@example\.com\b/,
+                               'cc appears');
+               }
+       }
+
+       foreach my $pfx ('', 'tcf:', 'f:') {
+               $res = $ro->query($pfx . 'Laggy');
+               is(scalar @{$res->{msgs}}, 1,
+                       "searched $pfx successfully for From:");
+               foreach my $smsg (@{$res->{msgs}}) {
+                       like($smsg->from, qr/Laggy Sender/,
+                               "From appears with $pfx");
+               }
+       }
+}
+
+{
+       $rw_commit->();
+       $ro->reopen;
+       my $res = $ro->query('b:hello');
+       is(scalar @{$res->{msgs}}, 0, 'no match on body search only');
+       $res = $ro->query('bs:smith');
+       is(scalar @{$res->{msgs}}, 0,
+               'no match on body+subject search for From');
+
+       $res = $ro->query('q:theatre');
+       is(scalar @{$res->{msgs}}, 1, 'only one quoted body');
+       like($res->{msgs}->[0]->from, qr/\AQuoter/, 'got quoted body');
+
+       $res = $ro->query('nq:theatre');
+       is(scalar @{$res->{msgs}}, 1, 'only one non-quoted body');
+       like($res->{msgs}->[0]->from, qr/\ANon-Quoter/, 'got non-quoted body');
+
+       foreach my $pfx (qw(b: bs:)) {
+               $res = $ro->query($pfx . 'theatre');
+               is(scalar @{$res->{msgs}}, 2, "searched both bodies for $pfx");
+               like($res->{msgs}->[0]->from, qr/\ANon-Quoter/,
+                       "non-quoter first for $pfx");
+       }
+}
+
+{
+       my $part1 = Email::MIME->create(
+                 attributes => {
+                     content_type => 'text/plain',
+                     disposition  => 'attachment',
+                     charset => 'US-ASCII',
+                    encoding => 'quoted-printable',
+                    filename => 'attached_fart.txt',
+                 },
+                 body_str => 'inside the attachment',
+       );
+       my $part2 = Email::MIME->create(
+                 attributes => {
+                     content_type => 'text/plain',
+                     disposition  => 'attachment',
+                     charset => 'US-ASCII',
+                    encoding => 'quoted-printable',
+                    filename => 'part_deux.txt',
+                 },
+                 body_str => 'inside another',
+       );
+       my $amsg = Email::MIME->create(
+               header_str => [
+                       Subject => 'see attachment',
+                       'Message-ID' => '<file@attached>',
+                       From => 'John Smith <js@example.com>',
+                       To => 'list@example.com',
+               ],
+               parts => [ $part1, $part2 ],
+       );
+       ok($rw->add_message($amsg), 'added attachment');
+       $rw_commit->();
+       $ro->reopen;
+       my $n = $ro->query('n:attached_fart.txt');
+       is(scalar @{$n->{msgs}}, 1, 'got result for n:');
+       my $res = $ro->query('part_deux.txt');
+       is(scalar @{$res->{msgs}}, 1, 'got result without n:');
+       is($n->{msgs}->[0]->mid, $res->{msgs}->[0]->mid,
+               'same result with and without');
+       my $txt = $ro->query('"inside another"');
+       is($txt->{msgs}->[0]->mid, $res->{msgs}->[0]->mid,
+               'search inside text attachments works');
+}
+
 done_testing();
 
 1;