]> Sergey Matveev's repositories - public-inbox.git/blob - t/convert-compact.t
convert+compact: fix when running without ~/.public-inbox/config
[public-inbox.git] / t / convert-compact.t
1 # Copyright (C) 2018 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 use strict;
4 use warnings;
5 use Test::More;
6 use File::Temp qw/tempdir/;
7 use PublicInbox::MIME;
8 my @mods = qw(DBD::SQLite Search::Xapian);
9 foreach my $mod (@mods) {
10         eval "require $mod";
11         plan skip_all => "$mod missing for convert-compact.t" if $@;
12 }
13 use_ok 'PublicInbox::V2Writable';
14 use PublicInbox::Import;
15 my $tmpdir = tempdir('convert-compact-XXXXXX', TMPDIR => 1, CLEANUP => 1);
16 my $ibx = {
17         mainrepo => "$tmpdir/v1",
18         name => 'test-v1',
19         -primary_address => 'test@example.com',
20 };
21
22 ok(PublicInbox::Import::run_die([qw(git init --bare -q), $ibx->{mainrepo}]),
23         'initialized v1 repo');
24 ok(umask(077), 'set restrictive umask');
25 ok(PublicInbox::Import::run_die([qw(git) , "--git-dir=$ibx->{mainrepo}",
26         qw(config core.sharedRepository 0644)]), 'set sharedRepository');
27 $ibx = PublicInbox::Inbox->new($ibx);
28 my $im = PublicInbox::Import->new($ibx->git, undef, undef, $ibx);
29 my $mime = PublicInbox::MIME->create(
30         header => [
31                 From => 'a@example.com',
32                 To => 'test@example.com',
33                 Subject => 'this is a subject',
34                 'Message-ID' => '<a-mid@b>',
35                 Date => 'Fri, 02 Oct 1993 00:00:00 +0000',
36         ],
37         body => "hello world\n",
38 );
39 ok($im->add($mime), 'added one message');
40 ok($im->remove($mime), 'remove message');
41 ok($im->add($mime), 'added message again');
42 $im->done;
43 PublicInbox::SearchIdx->new($ibx, 1)->index_sync;
44
45 is(((stat("$ibx->{mainrepo}/public-inbox"))[2]) & 07777, 0755,
46         'sharedRepository respected for v1');
47 is(((stat("$ibx->{mainrepo}/public-inbox/msgmap.sqlite3"))[2]) & 07777, 0644,
48         'sharedRepository respected for v1 msgmap');
49 my @xdir = glob("$ibx->{mainrepo}/public-inbox/xap*/*");
50 foreach (@xdir) {
51         my @st = stat($_);
52         is($st[2] & 07777, -f _ ? 0644 : 0755,
53                 'sharedRepository respected on file after convert');
54 }
55
56 local $ENV{PATH} = "blib/script:$ENV{PATH}";
57 local $ENV{PI_CONFIG} = '/dev/null';
58 open my $err, '>>', "$tmpdir/err.log" or die "open: err.log $!\n";
59 open my $out, '>>', "$tmpdir/out.log" or die "open: out.log $!\n";
60 my $rdr = { 1 => fileno($out), 2 => fileno($err) };
61
62 my $cmd = [ 'public-inbox-compact', $ibx->{mainrepo} ];
63 ok(PublicInbox::Import::run_die($cmd, undef, $rdr), 'v1 compact works');
64
65 @xdir = glob("$ibx->{mainrepo}/public-inbox/xap*");
66 is(scalar(@xdir), 1, 'got one xapian directory after compact');
67 is(((stat($xdir[0]))[2]) & 07777, 0755,
68         'sharedRepository respected on v1 compact');
69
70 $cmd = [ 'public-inbox-convert', $ibx->{mainrepo}, "$tmpdir/v2" ];
71 ok(PublicInbox::Import::run_die($cmd, undef, $rdr), 'convert works');
72 @xdir = glob("$tmpdir/v2/xap*/*");
73 foreach (@xdir) {
74         my @st = stat($_);
75         is($st[2] & 07777, -f _ ? 0644 : 0755,
76                 'sharedRepository respected after convert');
77 }
78
79 $cmd = [ 'public-inbox-compact', "$tmpdir/v2" ];
80 my $env = { NPROC => 2 };
81 ok(PublicInbox::Import::run_die($cmd, $env, $rdr), 'v2 compact works');
82 $ibx->{mainrepo} = "$tmpdir/v2";
83 $ibx->{version} = 2;
84
85 @xdir = glob("$tmpdir/v2/xap*/*");
86 foreach (@xdir) {
87         my @st = stat($_);
88         is($st[2] & 07777, -f _ ? 0644 : 0755,
89                 'sharedRepository respected after v2 compact');
90 }
91 is(((stat("$tmpdir/v2/msgmap.sqlite3"))[2]) & 07777, 0644,
92         'sharedRepository respected for v2 msgmap');
93
94 @xdir = (glob("$tmpdir/v2/git/*.git/objects/*/*"),
95          glob("$tmpdir/v2/git/*.git/objects/pack/*"));
96 foreach (@xdir) {
97         my @st = stat($_);
98         is($st[2] & 07777, -f _ ? 0444 : 0755,
99                 'sharedRepository respected after v2 compact');
100 }
101 my $msgs = $ibx->recent({limit => 1000});
102 is($msgs->[0]->{mid}, 'a-mid@b', 'message exists in history');
103 is(scalar @$msgs, 1, 'only one message in history');
104
105 done_testing();