about summary refs log tree commit homepage
path: root/t/imap_tracker.t
diff options
context:
space:
mode:
Diffstat (limited to 't/imap_tracker.t')
-rw-r--r--t/imap_tracker.t30
1 files changed, 29 insertions, 1 deletions
diff --git a/t/imap_tracker.t b/t/imap_tracker.t
index 8dc04ed7..01e1d0b1 100644
--- a/t/imap_tracker.t
+++ b/t/imap_tracker.t
@@ -9,8 +9,8 @@ my ($tmpdir, $for_destroy) = tmpdir();
 mkdir "$tmpdir/old" or die "mkdir $tmpdir/old: $!";
 my $old = "$tmpdir/old/imap.sqlite3";
 my $cur = "$tmpdir/data/public-inbox/imap.sqlite3";
+local $ENV{XDG_DATA_HOME} = "$tmpdir/data";
 {
-        local $ENV{XDG_DATA_HOME} = "$tmpdir/data";
         local $ENV{PI_DIR} = "$tmpdir/old";
 
         my $tracker = PublicInbox::IMAPTracker->new;
@@ -22,5 +22,33 @@ my $cur = "$tmpdir/data/public-inbox/imap.sqlite3";
         $tracker = PublicInbox::IMAPTracker->new;
         ok(!-f $cur, '->new does not create new file if old is present');
 }
+SKIP: {
+        my $nproc = $ENV{TEST_STRESS_NPROC};
+        skip 'TEST_STRESS_NPROC= not set', 1 unless $nproc;
+        my $nr = $ENV{TEST_STRESS_NR} // 10000;
+        diag "TEST_STRESS_NPROC=$nproc TEST_STRESS_NR=$nr";
+        require POSIX;
+        for my $n (1..$nproc) {
+                defined(my $pid = fork) or BAIL_OUT "fork: $!";
+                if ($pid == 0) {
+                        my $url = "imap://example.com/INBOX.$$";
+                        my $uidval = time;
+                        eval {
+                                my $itrk = PublicInbox::IMAPTracker->new($url);
+                                for my $uid (1..$nr) {
+                                        $itrk->update_last($uidval, $uid);
+                                        my ($uv, $u) = $itrk->get_last;
+                                }
+                        };
+                        warn "E: $n $$ - $@\n" if $@;
+                        POSIX::_exit($@ ? 1 : 0);
+                }
+        }
+        while (1) {
+                my $pid = waitpid(-1, 0);
+                last if $pid < 0;
+                is($?, 0, "$pid exited");
+        }
+}
 
 done_testing;