user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
blob ba2d23c87e1cff3db195dee3780ca619192d4c86 1778 bytes (raw)
name: xt/lei-sigpipe.t 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
 
#!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 Test::More;
use PublicInbox::TestCommon;
use POSIX qw(WTERMSIG WIFSIGNALED SIGPIPE);
require_mods(qw(json DBD::SQLite Search::Xapian));
# XXX this needs an already configured lei instance with many messages

my $do_test = sub {
	my $env = shift // {};
	for my $out ([], [qw(-f mboxcl2)]) {
		pipe(my ($r, $w)) or BAIL_OUT $!;
		open my $err, '+>', undef or BAIL_OUT $!;
		my $opt = { run_mode => 0, 1 => $w, 2 => $err };
		my $cmd = [qw(lei q -q -t), @$out, 'bytes:1..'];
		my $tp = start_script($cmd, $env, $opt);
		close $w;
		sysread($r, my $buf, 1);
		close $r; # trigger SIGPIPE
		$tp->join;
		ok(WIFSIGNALED($?), "signaled @$out");
		is(WTERMSIG($?), SIGPIPE, "got SIGPIPE @$out");
		seek($err, 0, 0);
		my @err = grep(!m{mkdir /dev/null\b}, <$err>);
		is_deeply(\@err, [], "no errors @$out");
	}
};

my ($tmp, $for_destroy) = tmpdir();
my $pid;
my $opt = { run_mode => 0, 1 => \(my $out = '') };
if (run_script([qw(lei daemon-pid)], undef, $opt)) {
	chomp($pid = $out);
	mkdir "$tmp/d" or BAIL_OUT $!;
	local $ENV{TMPDIR} = "$tmp/d";
	$do_test->();
	$out = '';
	ok(run_script([qw(lei daemon-pid)], undef, $opt), 'daemon-pid again');
	chomp($out);
	is($out, $pid, 'daemon-pid unchanged');
	ok(kill(0, $pid), 'daemon still running');
	$out = '';
}
{
	mkdir "$tmp/1" or BAIL_OUT $!;
	local $ENV{TMPDIR} = "$tmp/1";
	$do_test->({XDG_RUNTIME_DIR => '/dev/null'});
	is(unlink(glob("$tmp/1/*")), 0, 'nothing left over w/ oneshot');
}

# the one-shot test should be slow enough that the daemon has cleaned
# up in the background:
is_deeply([glob("$tmp/d/*")], [], 'nothing left over with daemon');

done_testing;

debug log:

solving ba2d23c8 ...
found ba2d23c8 in https://80x24.org/public-inbox.git

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).