about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-06-15 00:14:28 +0000
committerEric Wong <e@80x24.org>2016-06-15 00:15:12 +0000
commitc1abb946e53e4179666ebb290e31c2d9ddc40711 (patch)
treecd3fcfeefb12e7a0a5858a841826788d2a2e1a07 /t
parent61f05bf5869c3f471a16926b1a837ab0d95fb095 (diff)
downloadpublic-inbox-c1abb946e53e4179666ebb290e31c2d9ddc40711.tar.gz
This is transactional and hopefully safer in case we hit SIGSEGV
or SIGKILL during processing, as the tmp/ copy will remain on
the FS even if DESTROY/END handlers are not called.
Diffstat (limited to 't')
-rw-r--r--t/emergency.t53
1 files changed, 53 insertions, 0 deletions
diff --git a/t/emergency.t b/t/emergency.t
new file mode 100644
index 00000000..e480338d
--- /dev/null
+++ b/t/emergency.t
@@ -0,0 +1,53 @@
+# Copyright (C) 2016 all contributors <meta@public-inbox.org>
+# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+use strict;
+use warnings;
+use Test::More;
+use File::Temp qw/tempdir/;
+my $tmpdir = tempdir('emergency-XXXXXX', TMPDIR => 1, CLEANUP => 1);
+use_ok 'PublicInbox::Emergency';
+
+{
+        my $md = "$tmpdir/a";
+        my $em = PublicInbox::Emergency->new($md);
+        ok(-d $md, 'Maildir a auto-created');
+        my @tmp = <$md/tmp/*>;
+        is(scalar @tmp, 0, 'no temporary files exist, yet');
+        $em->prepare(\"BLAH");
+        @tmp = <$md/tmp/*>;
+        is(scalar @tmp, 1, 'globbed one temporary file');
+        open my $fh, '<', $tmp[0] or die "failed to open: $!";
+        is("BLAH", <$fh>, 'wrote contents to temporary location');
+        my @new = <$md/new/*>;
+        is(scalar @new, 0, 'no new files exist, yet');
+        $em = undef;
+        @tmp = <$md/tmp/*>;
+        is(scalar @tmp, 0, 'temporary file no longer exists');
+        @new = <$md/new/*>;
+        is(scalar @new, 1, 'globbed one new file');
+        open $fh, '<', $new[0] or die "failed to open: $!";
+        is("BLAH", <$fh>, 'wrote contents to new location');
+}
+{
+        my $md = "$tmpdir/b";
+        my $em = PublicInbox::Emergency->new($md);
+        ok(-d $md, 'Maildir b auto-created');
+        my @tmp = <$md/tmp/*>;
+        is(scalar @tmp, 0, 'no temporary files exist, yet');
+        $em->prepare(\"BLAH");
+        @tmp = <$md/tmp/*>;
+        is(scalar @tmp, 1, 'globbed one temporary file');
+        open my $fh, '<', $tmp[0] or die "failed to open: $!";
+        is("BLAH", <$fh>, 'wrote contents to temporary location');
+        my @new = <$md/new/*>;
+        is(scalar @new, 0, 'no new files exist, yet');
+        is(sysread($em->fh, my $buf, 9), 4, 'read file handle exposed');
+        is($buf, 'BLAH', 'got expected data');
+        $em->abort;
+        @tmp = <$md/tmp/*>;
+        is(scalar @tmp, 0, 'temporary file no longer exists');
+        @new = <$md/new/*>;
+        is(scalar @new , 0, 'new file no longer exists');
+}
+
+done_testing();