]> Sergey Matveev's repositories - public-inbox.git/blob - t/convert-compact.t
workaround Xapian OFD locks w/o close-on-exec
[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 for (1..2) {
44         eval { PublicInbox::SearchIdx->new($ibx, 1)->index_sync; };
45         is($@, '', 'no errors syncing');
46 }
47
48 is(((stat("$ibx->{mainrepo}/public-inbox"))[2]) & 07777, 0755,
49         'sharedRepository respected for v1');
50 is(((stat("$ibx->{mainrepo}/public-inbox/msgmap.sqlite3"))[2]) & 07777, 0644,
51         'sharedRepository respected for v1 msgmap');
52 my @xdir = glob("$ibx->{mainrepo}/public-inbox/xap*/*");
53 foreach (@xdir) {
54         my @st = stat($_);
55         is($st[2] & 07777, -f _ ? 0644 : 0755,
56                 'sharedRepository respected on file after convert');
57 }
58
59 local $ENV{PATH} = "blib/script:$ENV{PATH}";
60 local $ENV{PI_CONFIG} = '/dev/null';
61 open my $err, '>>', "$tmpdir/err.log" or die "open: err.log $!\n";
62 open my $out, '>>', "$tmpdir/out.log" or die "open: out.log $!\n";
63 my $rdr = { 1 => fileno($out), 2 => fileno($err) };
64
65 my $cmd = [ 'public-inbox-compact', $ibx->{mainrepo} ];
66 ok(PublicInbox::Import::run_die($cmd, undef, $rdr), 'v1 compact works');
67
68 @xdir = glob("$ibx->{mainrepo}/public-inbox/xap*");
69 is(scalar(@xdir), 1, 'got one xapian directory after compact');
70 is(((stat($xdir[0]))[2]) & 07777, 0755,
71         'sharedRepository respected on v1 compact');
72
73 $cmd = [ 'public-inbox-convert', $ibx->{mainrepo}, "$tmpdir/v2" ];
74 ok(PublicInbox::Import::run_die($cmd, undef, $rdr), 'convert works');
75 @xdir = glob("$tmpdir/v2/xap*/*");
76 foreach (@xdir) {
77         my @st = stat($_);
78         is($st[2] & 07777, -f _ ? 0644 : 0755,
79                 'sharedRepository respected after convert');
80 }
81
82 $cmd = [ 'public-inbox-compact', "$tmpdir/v2" ];
83 my $env = { NPROC => 2 };
84 ok(PublicInbox::Import::run_die($cmd, $env, $rdr), 'v2 compact works');
85 $ibx->{mainrepo} = "$tmpdir/v2";
86 $ibx->{version} = 2;
87
88 @xdir = glob("$tmpdir/v2/xap*/*");
89 foreach (@xdir) {
90         my @st = stat($_);
91         is($st[2] & 07777, -f _ ? 0644 : 0755,
92                 'sharedRepository respected after v2 compact');
93 }
94 is(((stat("$tmpdir/v2/msgmap.sqlite3"))[2]) & 07777, 0644,
95         'sharedRepository respected for v2 msgmap');
96
97 @xdir = (glob("$tmpdir/v2/git/*.git/objects/*/*"),
98          glob("$tmpdir/v2/git/*.git/objects/pack/*"));
99 foreach (@xdir) {
100         my @st = stat($_);
101         is($st[2] & 07777, -f _ ? 0444 : 0755,
102                 'sharedRepository respected after v2 compact');
103 }
104 my $msgs = $ibx->recent({limit => 1000});
105 is($msgs->[0]->{mid}, 'a-mid@b', 'message exists in history');
106 is(scalar @$msgs, 1, 'only one message in history');
107
108 done_testing();