public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob 91f935263b77b0ad8f039258661599ab39d2d781 1129 bytes (raw)
$ git show HEAD:t/io.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
 
#!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;
my $tmpdir = tmpdir;
use_ok 'PublicInbox::IO';
use PublicInbox::Spawn qw(which run_qx);

# test failures:
SKIP: {
my $strace = strace_inject;
my $env = { PERL5LIB => join(':', @INC) };
my $opt = { 1 => \my $out, 2 => \my $err };
my $dst = "$tmpdir/dst";
my $tr = "$tmpdir/tr";
my $cmd = [ $strace, "-o$tr", "-P$dst",
		'-e', 'inject=writev,write:error=EIO',
		$^X, qw(-w -MPublicInbox::IO=write_file -e),
		q[write_file '>', $ARGV[0], 'hello world'], $dst ];
xsys($cmd, $env, $opt);
isnt($?, 0, 'write failed');
like($err, qr/\bclose\b/, 'close error noted');
is(-s $dst, 0, 'file created and empty after EIO');
} # /SKIP

PublicInbox::IO::write_file '>:unix', "$tmpdir/f", "HI\n";
is(-s "$tmpdir/f", 3, 'write_file works w/ IO layer');
PublicInbox::IO::write_file '>>', "$tmpdir/f", "HI\n";
is(-s "$tmpdir/f", 6, 'write_file can append');

is PublicInbox::IO::try_cat("$tmpdir/non-existent"), '',
	"try_cat on non-existent file returns `'";

done_testing;

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