about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-09-09 00:01:31 +0000
committerEric Wong <e@80x24.org>2016-09-09 00:02:27 +0000
commit0df58f99a71268c98bb21cab0a98ddd25a5b83b2 (patch)
treef88df5a32005f029e3ee83b7d848cf7922b3139b /t
parent0cf6196025d4e4880cd1ed859257ce21dd3cdcf6 (diff)
downloadpublic-inbox-0df58f99a71268c98bb21cab0a98ddd25a5b83b2.tar.gz
And while we're at it, ensure searching inside displayable
attachment bodies works.
Diffstat (limited to 't')
-rw-r--r--t/search.t44
1 files changed, 44 insertions, 0 deletions
diff --git a/t/search.t b/t/search.t
index bddb545a..cce3b9e2 100644
--- a/t/search.t
+++ b/t/search.t
@@ -386,6 +386,50 @@ sub filter_mids {
         }
 }
 
+{
+        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;