public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob 31a8fd74cf29caf77708f2a3e8882fc8f0a3200a 2450 bytes (raw)
$ git show v1.4.0:t/multi-mid.t	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
 
# Copyright (C) 2020 all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
use strict;
use Test::More;
use PublicInbox::MIME;
use PublicInbox::TestCommon;
use PublicInbox::InboxWritable;
require_git(2.6);
require_mods(qw(DBD::SQLite));
require PublicInbox::SearchIdx;
my $delay = $ENV{TEST_DELAY_CONVERT};

my $addr = 'test@example.com';
my $bad = PublicInbox::MIME->new(<<EOF);
Message-ID: <a\@example.com>
Message-ID: <b\@example.com>
From: a\@example.com
To: $addr
Subject: bad

EOF

my $good = PublicInbox::MIME->new(<<EOF);
Message-ID: <b\@example.com>
From: b\@example.com
To: $addr
Subject: good

EOF

for my $order ([$bad, $good], [$good, $bad]) {
	my $before;
	my ($tmpdir, $for_destroy) = tmpdir();
	my $ibx = PublicInbox::InboxWritable->new({
		inboxdir => "$tmpdir/v1",
		name => 'test-v1',
		indexlevel => 'basic',
		-primary_address => $addr,
	}, my $creat_opt = {});
	my @old;
	if ('setup v1 inbox') {
		my $im = $ibx->importer(0);
		for (@$order) {
			ok($im->add($_), 'added '.$_->header('Subject'));
			sleep($delay) if $delay;
		}
		$im->done;
		my $s = PublicInbox::SearchIdx->new($ibx, 1);
		$s->index_sync;
		$before = [ $ibx->mm->minmax ];
		@old = ($ibx->over->get_art(1), $ibx->over->get_art(2));
		$ibx->cleanup;
	}
	my $rdr = { 1 => \(my $out = ''), 2 => \(my $err = '') };
	my $cmd = [ '-convert', $ibx->{inboxdir}, "$tmpdir/v2" ];
	my $env = { PI_DIR => "$tmpdir/.public-inbox" };
	ok(run_script($cmd, $env, $rdr), 'convert to v2');
	$err =~ s!\AW: $tmpdir/v1 not configured[^\n]+\n!!s;
	is($err, '', 'no errors or warnings from -convert');
	$ibx->{version} = 2;
	$ibx->{inboxdir} = "$tmpdir/v2";
	is_deeply([$ibx->mm->minmax], $before,
		'min, max article numbers unchanged');

	my @v2 = ($ibx->over->get_art(1), $ibx->over->get_art(2));
	is_deeply(\@v2, \@old, 'v2 conversion times match');

	system(qw(git clone -sq --mirror), "$tmpdir/v2/git/0.git",
		"$tmpdir/v2-clone/git/0.git") == 0 or die "clone: $?";
	$cmd = [ '-init', '-Lbasic', '-V2', 'v2c', "$tmpdir/v2-clone",
		'http://example.com/v2c', 'v2c@example.com' ];
	ok(run_script($cmd, $env), 'init clone');
	$cmd = [ '-index', "$tmpdir/v2-clone" ];
	sleep($delay) if $delay;
	ok(run_script($cmd, $env), 'index the clone');
	$ibx->cleanup;
	$ibx->{inboxdir} = "$tmpdir/v2-clone";
	my @v2c = ($ibx->over->get_art(1), $ibx->over->get_art(2));
	is_deeply(\@v2c, \@old, 'v2 clone times match');
}

done_testing();

git clone https://public-inbox.org/public-inbox.git
git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git