]> Sergey Matveev's repositories - public-inbox.git/commitdiff
t/init: fix test when ~/.public-inbox/ does not exist
authorEric Wong <e@80x24.org>
Wed, 29 Jul 2020 08:43:08 +0000 (08:43 +0000)
committerEric Wong <e@yhbt.net>
Wed, 29 Jul 2020 20:59:52 +0000 (20:59 +0000)
We'll just set the documented PI_EMERGENCY env to
a writable location.

t/init.t

index 16581955435888ae3e5f7f80e7b1bf6e62a1568d..6211bb58fba8b12a43cc786255e629c28c51d95d 100644 (file)
--- a/t/init.t
+++ b/t/init.t
@@ -66,6 +66,7 @@ SKIP: {
        require_git(2.6, 1) or skip "git 2.6+ required", 2;
        use_ok 'PublicInbox::Msgmap';
        local $ENV{PI_DIR} = "$tmpdir/.public-inbox/";
+       local $ENV{PI_EMERGENCY} = "$tmpdir/.public-inbox/emergency";
        my $cfgfile = "$ENV{PI_DIR}/config";
        my $cmd = [ '-init', '-V2', 'v2list', "$tmpdir/v2list",
                   qw(http://example.com/v2list v2list@example.com) ];
@@ -123,6 +124,7 @@ SKIP: {
        my $msg = "Message-ID: <$mid>\n\n";
        my $rdr = { 0 => \$msg, 2 => \(my $err = '')  };
        ok(run_script([qw(-mda --no-precheck)], $env, $rdr), 'deliver V1');
+       diag "err=$err" if $err;
        my $mm = PublicInbox::Msgmap->new_file("$tmpdir/skip3/msgmap.sqlite3");
        my $n = $mm->num_for($mid);
        is($n, 13, 'V2 NNTP article numbers skipped via --skip-artnum');
@@ -132,7 +134,9 @@ SKIP: {
        $cmd = [ qw(-init -V1 -N12 -Lmedium skip4), "$tmpdir/skip4",
                   qw(http://example.com/skip4), $addr ];
        ok(run_script($cmd), '--skip-artnum -V1');
+       $err = '';
        ok(run_script([qw(-mda --no-precheck)], $env, $rdr), 'deliver V1');
+       diag "err=$err" if $err;
        $mm = PublicInbox::Msgmap->new("$tmpdir/skip4");
        $n = $mm->num_for($mid);
        is($n, 13, 'V1 NNTP article numbers skipped via --skip-artnum');