]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/v2mda.t
www: drop --subject from "git send-email" instructions
[public-inbox.git] / t / v2mda.t
index abbdc8e468a83632a9068652a9455b3f8f889651..8f2f335d96b8d834cfe5ffd38df13dfc6599595a 100644 (file)
--- a/t/v2mda.t
+++ b/t/v2mda.t
@@ -1,7 +1,8 @@
-# Copyright (C) 2018-2020 all contributors <meta@public-inbox.org>
+#!perl -w
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+use v5.10.1;
 use strict;
-use warnings;
 use Test::More;
 use Fcntl qw(SEEK_SET);
 use Cwd;
@@ -46,10 +47,6 @@ local $ENV{ORIGINAL_RECIPIENT} = 'test@example.com';
 ok(run_script(['-mda'], undef, $rdr), 'mda delivered a message');
 
 $ibx = PublicInbox::Inbox->new($ibx);
-
-if ($V == 1) {
-       ok(run_script([ '-index', "$tmpdir/inbox" ]), 'v1 indexed');
-}
 my $msgs = $ibx->over->recent;
 is(scalar(@$msgs), 1, 'only got one message');
 my $eml = $ibx->smsg_eml($msgs->[0]);
@@ -92,6 +89,11 @@ is($eml->as_string, $mime->as_string, 'injected message');
        $pre = $ibx->search->mset_to_smsg($ibx, $pre);
        $post = $ibx->search->mset_to_smsg($ibx, $post);
        is($post->[0]->{blob}, $pre->[0]->{blob}, 'same message in both cases');
+
+       # git patch-id --stable <t/data/0001.patch | awk '{print $1}'
+       my $patchid = '91ee6b761fc7f47cad9f2b09b10489f313eb5b71';
+       my $mset = $ibx->search->mset("patchid:$patchid");
+       is($mset->size, 1, 'patchid search works');
 }
 
 done_testing();