about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-09-16 20:56:39 -0500
committerEric Wong <e@80x24.org>2021-09-17 04:41:03 +0000
commit1323196d1df67db5cb47a171a60236049c1e5ce5 (patch)
treee81ed65e5659a1e8d052a19acca8274f565b0a68 /t
parent40e1f1612777251169fe9fb0d81bc5d062dd72c8 (diff)
downloadpublic-inbox-1323196d1df67db5cb47a171a60236049c1e5ce5.tar.gz
Merely pruning mail synchronization information was
insufficient for Maildir: renames are common in Maildir
and we need to detect them after-the-fact when lei-daemon
isn't running.

Running this command could make "lei index" far more
useful...

v2: close R/O mail_sync.sqlite3 dbh before fork
  Keeping the DB file handle open across fork can cause bad things
  to happen even if we don't use it since sqlite3 itself still knows
  about it (but doesn't know Perl code doesn't know about it).
Diffstat (limited to 't')
-rw-r--r--t/lei-export-kw.t1
-rw-r--r--t/lei-refresh-mail-sync.t67
2 files changed, 67 insertions, 1 deletions
diff --git a/t/lei-export-kw.t b/t/lei-export-kw.t
index 9531949a..1fe940bb 100644
--- a/t/lei-export-kw.t
+++ b/t/lei-export-kw.t
@@ -6,7 +6,6 @@ use File::Copy qw(cp);
 use File::Path qw(make_path);
 require_mods(qw(lei -imapd Mail::IMAPClient));
 my ($tmpdir, $for_destroy) = tmpdir;
-my ($ro_home, $cfg_path) = setup_public_inboxes;
 my $expect = eml_load('t/data/0001.patch');
 test_lei({ tmpdir => $tmpdir }, sub {
         my $home = $ENV{HOME};
diff --git a/t/lei-refresh-mail-sync.t b/t/lei-refresh-mail-sync.t
new file mode 100644
index 00000000..ff558277
--- /dev/null
+++ b/t/lei-refresh-mail-sync.t
@@ -0,0 +1,67 @@
+#!perl -w
+# Copyright (C) all contributors <meta@public-inbox.org>
+# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+use strict; use v5.10.1; use PublicInbox::TestCommon;
+require_mods(qw(lei));
+
+my $stop_daemon = sub { # needed since we don't have inotify
+        lei_ok qw(daemon-pid);
+        chomp(my $pid = $lei_out);
+        $pid > 0 or xbail "bad pid: $pid";
+        kill('TERM', $pid) or xbail "kill: $!";
+        for (0..10) {
+                tick;
+                kill(0, $pid) or last;
+        }
+        kill(0, $pid) and xbail "daemon still running (PID:$pid)";
+};
+
+test_lei({ daemon_only => 1 }, sub {
+        my $d = "$ENV{HOME}/d";
+        my ($ro_home, $cfg_path) = setup_public_inboxes;
+        lei_ok qw(daemon-pid);
+        lei_ok qw(add-external), "$ro_home/t2";
+        lei_ok qw(q mid:testmessage@example.com -o), "Maildir:$d";
+        my (@o) = glob("$d/*/*");
+        scalar(@o) == 1 or xbail('multiple results', \@o);
+        my ($bn0) = ($o[0] =~ m!/([^/]+)\z!);
+
+        my $oid = '9bf1002c49eb075df47247b74d69bcd555e23422';
+        lei_ok 'inspect', "blob:$oid";
+        my $before = json_utf8->decode($lei_out);
+        my $exp0 = { 'mail-sync' => { "maildir:$d" => [ $bn0 ] } };
+        is_deeply($before, $exp0, 'inspect shows expected');
+
+        $stop_daemon->();
+        my $dst = $o[0];
+        $dst =~ s/:2,.*\z// and $dst =~ s!/cur/!/new/! and
+                rename($o[0], $dst) or xbail "rename($o[0] => $dst): $!";
+
+        lei_ok 'inspect', "blob:$oid";
+        is_deeply(json_utf8->decode($lei_out),
+                $before, 'inspect unchanged immediately after restart');
+        lei_ok 'refresh-mail-sync', '--all';
+        lei_ok 'inspect', "blob:$oid";
+        my ($bn1) = ($dst =~ m!/([^/]+)\z!);
+        my $exp1 = { 'mail-sync' => { "maildir:$d" => [ $bn1 ] } };
+        is_deeply(json_utf8->decode($lei_out), $exp1,
+                'refresh-mail-sync updated location');
+
+        $stop_daemon->();
+        rename($dst, "$d/unwatched") or xbail "rename $dst out-of-the-way $!";
+
+        lei_ok 'refresh-mail-sync', $d;
+        lei_ok 'inspect', "blob:$oid";
+        is($lei_out, '{}', 'no known locations after "removal"');
+        lei_ok 'refresh-mail-sync', "Maildir:$d";
+
+        $stop_daemon->();
+        rename("$d/unwatched", $dst) or xbail "rename $dst back";
+
+        lei_ok 'refresh-mail-sync', "Maildir:$d";
+        lei_ok 'inspect', "blob:$oid";
+        is_deeply(json_utf8->decode($lei_out), $exp1,
+                'replaced file noted again');
+});
+
+done_testing;