]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/init.t
No ext_urls
[public-inbox.git] / t / init.t
index 16581955435888ae3e5f7f80e7b1bf6e62a1568d..46258e45df4c733d7f52c164331ac3158d64c623 100644 (file)
--- a/t/init.t
+++ b/t/init.t
@@ -1,12 +1,11 @@
-# Copyright (C) 2014-2020 all contributors <meta@public-inbox.org>
+#!perl -w
+# Copyright (C) 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 v5.10.1;
 use PublicInbox::Config;
 use PublicInbox::TestCommon;
 use PublicInbox::Admin;
-use File::Basename;
 my ($tmpdir, $for_destroy) = tmpdir();
 sub quiet_fail {
        my ($cmd, $msg) = @_;
@@ -48,6 +47,40 @@ sub quiet_fail {
        is($? >> 8, 255, 'got expected exit code on lock failure');
        ok(unlink("$cfgfile.lock"),
                '-init did not unlink lock on failure');
+
+       my @init_args = ('i', "$tmpdir/i",
+                  qw(http://example.com/i i@example.com));
+       $cmd = [ qw(-init -c .bogus=val), @init_args ];
+       quiet_fail($cmd, 'invalid -c KEY=VALUE fails');
+       $cmd = [ qw(-init -c .bogus=val), @init_args ];
+       quiet_fail($cmd, '-c KEY-only fails');
+       $cmd = [ qw(-init -c address=clist@example.com), @init_args ];
+       quiet_fail($cmd, '-c address=CONFLICTING-VALUE fails');
+
+       $cmd = [ qw(-init -c no=problem -c no=problemo), @init_args ];
+       ok(run_script($cmd), '-c KEY=VALUE runs');
+       my $env = { GIT_CONFIG => "$ENV{PI_DIR}/config" };
+       chomp(my @v = xqx([qw(git config --get-all publicinbox.i.no)], $env));
+       is_deeply(\@v, [ qw(problem problemo) ]) or xbail(\@v);
+
+       ok(run_script($cmd), '-c KEY=VALUE runs idempotently');
+       chomp(my @v2 = xqx([qw(git config --get-all publicinbox.i.no)], $env));
+       is_deeply(\@v, \@v2, 'nothing repeated') or xbail(\@v2);
+
+       ok(run_script([@$cmd, '-c', 'no=more']), '-c KEY=VALUE addendum');
+       chomp(@v = xqx([qw(git config --get-all publicinbox.i.no)], $env));
+       is_deeply(\@v, [ qw(problem problemo more) ]) or xbail(\@v);
+
+
+       ok(run_script([@$cmd, '-c', 'no=problem']), '-c KEY=VALUE repeated');
+       chomp(@v = xqx([qw(git config --get-all publicinbox.i.no)], $env));
+       is_deeply(\@v, [ qw(problem problemo more) ]) or xbail(\@v);
+
+       ok(run_script([@$cmd, '-c', 'address=j@example.com']),
+               '-c KEY=VALUE address');
+       chomp(@v = xqx([qw(git config --get-all publicinbox.i.address)], $env));
+       is_deeply(\@v, [ qw(i@example.com j@example.com) ],
+               'extra address added via -c KEY=VALUE');
 }
 {
        my $env = { PI_DIR => "$tmpdir/.public-inbox/" };
@@ -59,13 +92,35 @@ sub quiet_fail {
        like($err, qr/`\\n' not allowed in `/s, 'reported \\n');
        is_deeply([glob("$tmpdir/.public-inbox/pi-init-*")], [],
                'no junk files left behind');
+
+       # "git init" does this, too
+       $cmd = [ '-init', 'deep-non-existent', "$tmpdir/a/b/c/d",
+                  qw(http://example.com/abcd abcd@example.com) ];
+       $err = '';
+       my $umask = umask(022) // xbail "umask: $!";
+       ok(run_script($cmd, $env, $rdr), 'initializes non-existent hierarchy');
+       umask($umask) // xbail "umask: $!";
+       ok(-d "$tmpdir/a/b/c/d", 'directory created');
+       my $desc = "$tmpdir/a/b/c/d/description";
+       is(PublicInbox::Git::try_cat($desc),
+               "public inbox for abcd\@example.com\n", 'description set');
+       my $mode = (stat($desc))[2];
+       is(sprintf('0%03o', $mode & 0777), '0644',
+               'description respects umask');
+
+       open my $fh, '>', "$tmpdir/d" or BAIL_OUT "open: $!";
+       close $fh;
+       $cmd = [ '-init', 'd-f-conflict', "$tmpdir/d/f/conflict",
+                  qw(http://example.com/conflict onflict@example.com) ];
+       ok(!run_script($cmd, $env, $rdr), 'fails on D/F conflict');
 }
 
 SKIP: {
-       require_mods(qw(DBD::SQLite Search::Xapian::WritableDatabase), 2);
-       require_git(2.6, 1) or skip "git 2.6+ required", 2;
+       require_mods(qw(DBD::SQLite Search::Xapian), 2);
+       require_git(2.6, 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) ];
@@ -94,6 +149,20 @@ SKIP: {
                my $ibx = PublicInbox::Inbox->new({ inboxdir => $dir });
                is(PublicInbox::Admin::detect_indexlevel($ibx), $lvl,
                        'detected expected level w/o config');
+               ok(!$ibx->{-skip_docdata}, 'docdata written by default');
+       }
+       for my $v (1, 2) {
+               my $name = "v$v-skip-docdata";
+               my $dir = "$tmpdir/$name";
+               $cmd = [ '-init', $name, "-V$v", '--skip-docdata',
+                       $dir, "http://example.com/$name",
+                       "$name\@example.com" ];
+               ok(run_script($cmd), "-init -V$v --skip-docdata");
+               my $ibx = PublicInbox::Inbox->new({ inboxdir => $dir });
+               is(PublicInbox::Admin::detect_indexlevel($ibx), 'full',
+                       "detected default indexlevel -V$v");
+               ok($ibx->{-skip_docdata}, "docdata skip set -V$v");
+               ok($ibx->search->has_threadid, 'has_threadid flag set on new inbox');
        }
 
        # loop for idempotency
@@ -115,7 +184,7 @@ SKIP: {
                        'publicinboxmda.spamcheck', 'none') == 0 or
                        BAIL_OUT "git config $?";
        my $addr = 'skip3@example.com';
-       $cmd = [ qw(-init -V2 -Lbasic -N12 skip3), "$tmpdir/skip3",
+       $cmd = [ qw(-init -V2 -Lbasic --skip-artnum=12 skip3), "$tmpdir/skip3",
                   qw(http://example.com/skip3), $addr ];
        ok(run_script($cmd), '--skip-artnum -V2');
        my $env = { ORIGINAL_RECIPIENT => $addr };
@@ -123,17 +192,21 @@ 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');
 
        $addr = 'skip4@example.com';
        $env = { ORIGINAL_RECIPIENT => $addr };
-       $cmd = [ qw(-init -V1 -N12 -Lmedium skip4), "$tmpdir/skip4",
+       $cmd = [ qw(-init -V1 --skip-artnum 12 -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');
-       $mm = PublicInbox::Msgmap->new("$tmpdir/skip4");
+       diag "err=$err" if $err;
+       $mm = PublicInbox::Msgmap->new_file(
+                       "$tmpdir/skip4/public-inbox/msgmap.sqlite3");
        $n = $mm->num_for($mid);
        is($n, 13, 'V1 NNTP article numbers skipped via --skip-artnum');
 }