viewvcs: handle exceptions in on_destroy cb
[public-inbox.git] / t / inbox_idle.t
blob94f3845c416c4deb8030bd5f6f58602afcb33f88
1 #!perl -w
2 # Copyright (C) all contributors <meta@public-inbox.org>
3 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 use v5.12;
5 use PublicInbox::TestCommon;
6 require_git 2.6;
7 require_mods(qw(DBD::SQLite));
8 require PublicInbox::SearchIdx;
9 use_ok 'PublicInbox::InboxIdle';
10 my ($tmpdir, $for_destroy) = tmpdir();
12 # for non-inotify|kqueue systems w/ low-res FS timestamps
13 # This only makes the test work, but either high-res FS timestamps
14 # or inotify or kqueue support needs to be added to your system.
15 my $poll_delay = 1;
17 for my $V (1, 2) {
18         my $inboxdir = "$tmpdir/$V";
19         my $ibx = create_inbox "idle$V", tmpdir => $inboxdir, version => $V,
20                                 indexlevel => 'basic', -no_gc => 1, sub {
21                 my ($im, $ibx) = @_; # capture
22                 $im->done;
23                 $ibx->init_inbox(0);
24                 $_[0] = undef;
25                 return if $V != 1;
26                 my $sidx = PublicInbox::SearchIdx->new($ibx, 1);
27                 $sidx->idx_acquire;
28                 $sidx->set_metadata_once;
29                 $sidx->idx_release; # allow watching on lockfile
30         };
31         my $obj = InboxIdleTestObj->new;
32         my $pi_cfg = cfg_new $tmpdir, <<EOF;
33 [publicinbox "inbox-idle"]
34         inboxdir = $inboxdir
35         indexlevel = basic
36         address = $ibx->{-primary_address}
37 EOF
38         my $ident = 'whatever';
39         $pi_cfg->each_inbox(sub { shift->subscribe_unlock($ident, $obj) });
40         my $ii = PublicInbox::InboxIdle->new($pi_cfg);
41         ok($ii, 'InboxIdle created');
42         SKIP: {
43                 $ii->{sock} or skip
44 'inotify or kqueue missing, expect real-world breakage on low-res FSes', 1;
45                 ok(fileno($ii->{sock}) >= 0, 'fileno() gave valid FD');
46                 $poll_delay = 0;
47         }
48         my $im = $ibx->importer(0);
49         ok($im->add(eml_load('t/utf8.eml')), "$V added");
50         tick $poll_delay if $poll_delay;
51         $im->done;
52         $ii->event_step;
53         is(scalar @{$obj->{called}}, 1, 'called on unlock') or
54                 diag explain($obj);
55         $pi_cfg->each_inbox(sub { shift->unsubscribe_unlock($ident) });
56         ok($im->add(eml_load('t/data/0001.patch')), "$V added #2");
57         tick $poll_delay if $poll_delay;
58         $im->done;
59         $ii->event_step;
60         is(scalar @{$obj->{called}}, 1, 'not called when unsubbed');
61         $ii->close;
64 done_testing;
66 package InboxIdleTestObj;
67 use strict;
69 sub new { bless {}, shift }
71 sub on_inbox_unlock {
72         my ($self, $ibx) = @_;
73         push @{$self->{called}}, $ibx;