about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-03-20 08:18:21 +0000
committerEric Wong <e@yhbt.net>2020-03-22 09:00:23 +0000
commitc7acdfe78bda5bf36660a699e882e0e3c431a351 (patch)
treeb014171ac2b5bd4a37864d54edeed045bd79de58 /t
parentb5bc3576af3d0ef0fa884ed32a674c7a703a19b2 (diff)
downloadpublic-inbox-c7acdfe78bda5bf36660a699e882e0e3c431a351.tar.gz
This lets us store author and committer times for deferred
indexing messages with ambiguous Message-IDs.  This allows
us to reproducibly reindex messages with the git commit
and author times when a rare message lacks Received and/or
Date headers while having ambiguous Message-IDs.
Diffstat (limited to 't')
-rw-r--r--t/multi-mid.t27
1 files changed, 24 insertions, 3 deletions
diff --git a/t/multi-mid.t b/t/multi-mid.t
index df865efb..87240c2c 100644
--- a/t/multi-mid.t
+++ b/t/multi-mid.t
@@ -1,5 +1,6 @@
 # Copyright (C) 2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+use strict;
 use Test::More;
 use PublicInbox::MIME;
 use PublicInbox::TestCommon;
@@ -7,6 +8,7 @@ use PublicInbox::InboxWritable;
 require_git(2.6);
 require_mods(qw(DBD::SQLite));
 require PublicInbox::SearchIdx;
+my $delay = $ENV{TEST_DELAY_CONVERT};
 
 my $addr = 'test@example.com';
 my $bad = PublicInbox::MIME->new(<<EOF);
@@ -14,14 +16,12 @@ Message-ID: <a\@example.com>
 Message-ID: <b\@example.com>
 From: a\@example.com
 To: $addr
-Date: Fri, 02 Oct 1993 00:00:00 +0000
 Subject: bad
 
 EOF
 
 my $good = PublicInbox::MIME->new(<<EOF);
 Message-ID: <b\@example.com>
-Date: Fri, 02 Oct 1993 00:00:00 +0000
 From: b\@example.com
 To: $addr
 Subject: good
@@ -37,13 +37,18 @@ for my $order ([$bad, $good], [$good, $bad]) {
                 indexlevel => 'basic',
                 -primary_address => $addr,
         }, my $creat_opt = {});
+        my @old;
         if ('setup v1 inbox') {
                 my $im = $ibx->importer(0);
-                ok($im->add($_), 'added '.$_->header('Subject')) for @$order;
+                for (@$order) {
+                        ok($im->add($_), 'added '.$_->header('Subject'));
+                        sleep($delay) if $delay;
+                }
                 $im->done;
                 my $s = PublicInbox::SearchIdx->new($ibx, 1);
                 $s->index_sync;
                 $before = [ $ibx->mm->minmax ];
+                @old = ($ibx->over->get_art(1), $ibx->over->get_art(2));
                 $ibx->cleanup;
         }
         my $rdr = { 1 => \(my $out = ''), 2 => \(my $err = '') };
@@ -56,6 +61,22 @@ for my $order ([$bad, $good], [$good, $bad]) {
         $ibx->{inboxdir} = "$tmpdir/v2";
         is_deeply([$ibx->mm->minmax], $before,
                 'min, max article numbers unchanged');
+
+        my @v2 = ($ibx->over->get_art(1), $ibx->over->get_art(2));
+        is_deeply(\@v2, \@old, 'v2 conversion times match');
+
+        system(qw(git clone -sq --mirror), "$tmpdir/v2/git/0.git",
+                "$tmpdir/v2-clone/git/0.git") == 0 or die "clone: $?";
+        $cmd = [ '-init', '-V2', 'v2c', "$tmpdir/v2-clone",
+                'http://example.com/v2c', 'v2c@example.com' ];
+        ok(run_script($cmd, $env), 'init clone');
+        $cmd = [ '-index', "$tmpdir/v2-clone" ];
+        sleep($delay) if $delay;
+        ok(run_script($cmd, $env), 'index the clone');
+        $ibx->cleanup;
+        $ibx->{inboxdir} = "$tmpdir/v2-clone";
+        my @v2c = ($ibx->over->get_art(1), $ibx->over->get_art(2));
+        is_deeply(\@v2c, \@old, 'v2 clone times match');
 }
 
 done_testing();