about summary refs log tree commit homepage
path: root/t/lei-sigpipe.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-04-20 09:01:00 +0000
committerEric Wong <e@80x24.org>2021-04-20 09:15:17 +0000
commit420fa1eac8cf0c73b6b0512c32206dc0b904dd45 (patch)
tree63b1fbcb2e566a5a887d189eaa337400526c4b07 /t/lei-sigpipe.t
parent48a3de066689174f65d5e12ebaff8f03f97942fb (diff)
downloadpublic-inbox-420fa1eac8cf0c73b6b0512c32206dc0b904dd45.tar.gz
lei-sigpipe: update and move test from xt => t
We have "lei import" and better test infrastructure for lei,
now, so we can more easily test SIGPIPE without relying on
an already-configured instance.
Diffstat (limited to 't/lei-sigpipe.t')
-rw-r--r--t/lei-sigpipe.t43
1 files changed, 43 insertions, 0 deletions
diff --git a/t/lei-sigpipe.t b/t/lei-sigpipe.t
new file mode 100644
index 00000000..f84d6d22
--- /dev/null
+++ b/t/lei-sigpipe.t
@@ -0,0 +1,43 @@
+#!perl -w
+# Copyright (C) 2021 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;
+use POSIX qw(WTERMSIG WIFSIGNALED SIGPIPE);
+test_lei(sub {
+        my $f = "$ENV{HOME}/big.eml";
+        my $imported;
+        for my $out ([], [qw(-f mboxcl2)]) {
+                pipe(my ($r, $w)) or BAIL_OUT $!;
+                my $size = 65536;
+                if ($^O eq 'linux' && fcntl($w, 1031, 4096)) {
+                        $size = 4096;
+                }
+                unless (-f $f) {
+                        open my $fh, '>', $f or xbail "open $f: $!";
+                        print $fh <<'EOM' or xbail;
+From: big@example.com
+Message-ID: <big@example.com>
+EOM
+                        print $fh 'Subject:';
+                        print $fh (' '.('x' x 72)."\n") x (($size / 73) + 1);
+                        print $fh "\nbody\n";
+                        close $fh or xbail "close: $!";
+                }
+
+                lei_ok(qw(import), $f) if $imported++ == 0;
+                open my $errfh, '>>', "$ENV{HOME}/stderr.log" or xbail $!;
+                my $opt = { run_mode => 0, 2 => $errfh, 1 => $w };
+                my $cmd = [qw(lei q -q -t), @$out, 'z:1..'];
+                my $tp = start_script($cmd, undef, $opt);
+                close $w;
+                is(sysread($r, my $buf, 1), 1, 'read one byte');
+                close $r; # trigger SIGPIPE
+                $tp->join;
+                ok(WIFSIGNALED($?), "signaled @$out");
+                is(WTERMSIG($?), SIGPIPE, "got SIGPIPE @$out");
+        }
+});
+
+done_testing;