2 # Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
3 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
7 use PublicInbox::TestCommon;
8 use PublicInbox::Config;
9 use PublicInbox::Admin;
10 use PublicInbox::Import;
11 use File::Path qw(remove_tree);
13 require_mods(qw(DBD::SQLite Search::Xapian));
14 use_ok 'PublicInbox::Over';
16 my ($tmpdir, $for_destroy) = tmpdir();
17 local $ENV{PI_CONFIG} = "$tmpdir/cfg";
18 my $v1dir = "$tmpdir/v1";
19 my $addr = 'x@example.com';
20 my $default_branch = PublicInbox::Import::default_branch;
21 run_script(['-init', '--indexlevel=medium', 'v1', $v1dir,
22 'http://example.com/x', $addr])
30 From: timeless <t\@example.com>
31 To: x <x\@example.com>
32 Subject: can I haz the time?
33 Message-ID: <19700101000000-1234\@example.com>
38 commit $default_branch
40 author timeless <t\@example.com> 749520000 +0100
41 committer x <x\@example.com> 1285977600 -0100
44 M 100644 :1 53/256f6177504c2878d3a302ef5090dacf5e752c
47 pipe(my($r, $w)) or die;
48 length($data) <= 512 or die "data too large to fit in POSIX pipe";
49 print $w $data or die;
51 my $cmd = ['git', "--git-dir=$v1dir", 'fast-import', '--quiet'];
52 xsys_e($cmd, undef, { 0 => $r });
55 run_script(['-index', '--skip-docdata', $v1dir]) or die 'v1 index failed';
59 my $cfg = PublicInbox::Config->new;
60 my $ibx = $cfg->lookup($addr);
61 my $lvl = PublicInbox::Admin::detect_indexlevel($ibx);
62 is($lvl, 'medium', 'indexlevel detected');
63 is($ibx->{-skip_docdata}, 1, '--skip-docdata flag set on -index');
64 $smsg = $ibx->over->get_art(1);
65 is($smsg->{ds}, 749520000, 'datestamp from git author time');
66 is($smsg->{ts}, 1285977600, 'timestamp from git committer time');
67 my $mset = $ibx->search->mset("m:$smsg->{mid}");
68 is($mset->size, 1, 'got one result for m:');
69 my $res = $ibx->search->mset_to_smsg($ibx, $mset);
70 is($res->[0]->{ds}, $smsg->{ds}, 'Xapian stored datestamp');
71 $mset = $ibx->search->mset('d:19931002..19931002');
72 $res = $ibx->search->mset_to_smsg($ibx, $mset);
73 is(scalar @$res, 1, 'got one result for d:');
74 is($res->[0]->{ds}, $smsg->{ds}, 'Xapian search on datestamp');
77 require_git(2.6, 1) or skip('git 2.6+ required for v2', 10);
78 my $v2dir = "$tmpdir/v2";
79 run_script(['-convert', $v1dir, $v2dir]) or die 'v2 conversion failed';
82 my $ibx = PublicInbox::Inbox->new({inboxdir => $v2dir,
84 my $lvl = PublicInbox::Admin::detect_indexlevel($ibx);
85 is($lvl, 'medium', 'indexlevel detected after convert');
86 is($ibx->{-skip_docdata}, 1,
87 '--skip-docdata preserved after convert');
88 my $v2smsg = $ibx->over->get_art(1);
89 is($v2smsg->{ds}, $smsg->{ds},
90 'v2 datestamp from git author time');
91 is($v2smsg->{ts}, $smsg->{ts},
92 'v2 timestamp from git committer time');
93 my $mset = $ibx->search->mset("m:$smsg->{mid}");
94 my $res = $ibx->search->mset_to_smsg($ibx, $mset);
95 is($res->[0]->{ds}, $smsg->{ds}, 'Xapian stored datestamp');
96 $mset = $ibx->search->mset('d:19931002..19931002');
97 $res = $ibx->search->mset_to_smsg($ibx, $mset);
98 is(scalar @$res, 1, 'got one result for d:');
99 is($res->[0]->{ds}, $smsg->{ds}, 'Xapian search on datestamp');
104 # test non-parallelized conversion
105 run_script(['-convert', '-j0', $v1dir, $v2dir]) or
106 die 'v2 conversion failed';