public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob 82480ebc7e4413fe256995d6019a97d933127179 1022 bytes (raw)
$ git show HEAD:t/tail_notify.t	# shows this blob on the CLI

 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
 
#!perl -w
# Copyright (C) all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
use v5.12;
use PublicInbox::TestCommon;
use POSIX qw(_exit);
my ($tmpdir, $for_destroy) = tmpdir();
use_ok 'PublicInbox::TailNotify';
my $f = "$tmpdir/log";
open my $fh, '>>', $f or xbail $!;
my $tn = PublicInbox::TailNotify->new($f);
my @x = $tn->getlines(1);
is_deeply(\@x, [], 'nothing, yet');
my $pid = fork // xbail "fork: $!";
if ($pid == 0) {
	tick;
	syswrite $fh, "hi\n" // xbail "syswrite: $!";
	_exit(0);
}
@x = $tn->getlines;
is_deeply(\@x, [ "hi\n" ], 'got line');
waitpid($pid, 0) // xbail "waitpid: $!";
is($?, 0, 'writer done');

$pid = fork // xbail "fork: $!";
if ($pid == 0) {
	tick;
	unlink $f // xbail "unlink($f): $!";
	open $fh, '>>', $f or xbail $!;
	syswrite $fh, "bye\n" // xbail "syswrite: $!";
	_exit(0);
}
@x = $tn->getlines;
is_deeply(\@x, [ "bye\n" ], 'got line after reopen');
waitpid($pid, 0) // xbail "waitpid: $!";
is($?, 0, 'writer done');

done_testing;

git clone https://public-inbox.org/public-inbox.git
git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git