1 # Copyright (C) 2019 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
7 use PublicInbox::InboxWritable;
8 use PublicInbox::TestCommon;
10 require_git(2.6); # replace is v2 only, for now...
11 require_mods(qw(DBD::SQLite));
12 local $ENV{HOME} = abs_path('t');
14 sub test_replace ($$$) {
15 my ($v, $level, $opt) = @_;
16 diag "v$v $level replace";
17 my $this = "pi-$v-$level-replace";
18 my ($tmpdir, $for_destroy) = tmpdir($this);
19 my $ibx = PublicInbox::Inbox->new({
20 inboxdir => "$tmpdir/testbox",
23 -primary_address => 'test@example.com',
27 my $orig = PublicInbox::MIME->new(<<'EOF');
28 From: Barbra Streisand <effect@example.com>
31 Message-ID: <replace@example.com>
32 Date: Fri, 02 Oct 1993 00:00:00 +0000
34 Top secret info about my house in Malibu...
36 my $im = PublicInbox::InboxWritable->new($ibx, {nproc=>1})->importer;
37 # fake a bunch of epochs
38 $im->{rotate_bytes} = $opt->{rotate_bytes} if $opt->{rotate_bytes};
41 $opt->{pre}->($im, 1, 2);
42 $orig->header_set('References', '<1@example.com>');
44 ok($im->add($orig), 'add message to be replaced');
46 $opt->{post}->($im, 3, { 4 => 'replace@example.com' });
49 my $thread_a = $ibx->over->get_thread('replace@example.com');
51 my %before = map {; delete($_->{blob}) => $_ } @{$ibx->recent};
52 my $reject = PublicInbox::MIME->new($orig->as_string);
53 foreach my $mid (['<replace@example.com>', '<extra@example.com>'],
54 [], ['<replaced@example.com>']) {
55 $reject->header_set('Message-ID', @$mid);
56 my $ok = eval { $im->replace($orig, $reject) };
57 like($@, qr/Message-ID.*may not be changed/,
58 '->replace died on Message-ID change');
59 ok(!$ok, 'no replacement happened');
62 # prepare the replacement
63 my $expect = "Move along, nothing to see here\n";
64 my $repl = PublicInbox::MIME->new($orig->as_string);
65 $repl->header_set('From', '<redactor@example.com>');
66 $repl->header_set('Subject', 'redacted');
67 $repl->header_set('Date', 'Sat, 02 Oct 2010 00:00:00 +0000');
68 $repl->body_str_set($expect);
71 local $SIG{__WARN__} = sub { push @warn, @_ };
72 ok(my $cmts = $im->replace($orig, $repl), 'replaced message');
73 my $changed_epochs = 0;
74 for my $tip (@$cmts) {
75 next if !defined $tip;
77 like($tip, qr/\A[a-f0-9]{40}\z/,
78 'replace returned current commit');
80 is($changed_epochs, 1, 'only one epoch changed');
83 my $m = PublicInbox::MIME->new($ibx->msg_by_mid('replace@example.com'));
84 is($m->body, $expect, 'replaced message');
85 is_deeply(\@warn, [], 'no warnings on noop');
87 my @cat = qw(cat-file --buffer --batch --batch-all-objects);
89 my @all = $git->qx(@cat);
90 is_deeply([grep(/confidential/, @all)], [], 'nothing confidential');
91 is_deeply([grep(/Streisand/, @all)], [], 'Streisand who?');
92 is_deeply([grep(/\bOct 1993\b/, @all)], [], 'nothing from Oct 1993');
93 my $t19931002 = qr/ 749520000 /;
94 is_deeply([grep(/$t19931002/, @all)], [], "nothing matches $t19931002");
96 for my $dir (glob("$ibx->{inboxdir}/git/*.git")) {
97 my ($bn) = ($dir =~ m!([^/]+)\z!);
98 is(system(qw(git --git-dir), $dir,
99 qw(fsck --strict --no-progress)),
100 0, "git fsck is clean in epoch $bn");
103 my $thread_b = $ibx->over->get_thread('replace@example.com');
104 is_deeply([sort map { $_->{mid} } @$thread_b],
105 [sort map { $_->{mid} } @$thread_a], 'threading preserved');
107 if (my $srch = $ibx->search) {
108 for my $q ('f:streisand', 's:confidential', 'malibu') {
109 my $msgs = $srch->query($q);
110 is_deeply($msgs, [], "no match for $q");
112 my @ok = ('f:redactor', 's:redacted', 'nothing to see');
114 push @ok, 'm:1@example.com', 'm:2@example.com',
115 's:message2', 's:message1';
118 push @ok, 'm:3@example.com', 'm:4@example.com',
119 's:message3', 's:message4';
122 my $msgs = $srch->query($q);
123 ok($msgs->[0], "got match for $q");
127 # check overview matches:
128 my %after = map {; delete($_->{blob}) => $_ } @{$ibx->recent};
129 my @before_blobs = keys %before;
130 foreach my $blob (@before_blobs) {
131 delete $before{$blob} if delete $after{$blob};
134 is(scalar keys %before, 1, 'one unique blob from before left');
135 is(scalar keys %after, 1, 'one unique blob from after left');
136 foreach my $blob (keys %before) {
137 is($git->check($blob), undef, 'old blob not found');
138 my $smsg = $before{$blob};
139 is($smsg->{subject}, 'confidential', 'before subject');
140 is($smsg->{mid}, 'replace@example.com', 'before MID');
142 foreach my $blob (keys %after) {
143 ok($git->check($blob), 'new blob found');
144 my $smsg = $after{$blob};
145 is($smsg->{subject}, 'redacted', 'after subject');
146 is($smsg->{mid}, 'replace@example.com', 'before MID');
149 is($im->replace($orig, $repl), undef, 'no-op replace returns undef');
150 is($im->purge($orig), undef, 'no-op purge returns undef');
151 is_deeply(\@warn, [], 'no warnings on noop');
155 my ($im, @range) = @_;
158 if (ref($i) eq 'HASH') {
159 ($i, $irt) = each %$i;
161 my $sec = sprintf('%0d', $i);
162 my $mime = PublicInbox::MIME->new(<<EOF);
163 From: foo\@example.com
164 To: test\@example.com
165 Message-ID: <$i\@example.com>
166 Date: Fri, 02, Jan 1970 00:00:$sec +0000
173 $mime->header_set('References', "<$irt>");
180 my $opt = { pre => *pad_msgs };
181 test_replace(2, 'basic', {});
182 test_replace(2, 'basic', $opt);
183 test_replace(2, 'basic', $opt = { %$opt, post => *pad_msgs });
184 test_replace(2, 'basic', $opt = { %$opt, rotate_bytes => 1 });
187 require PublicInbox::Search;
188 PublicInbox::Search::load_xapian() or skip 'Search::Xapian missing', 8;
189 for my $l (qw(medium)) {
190 test_replace(2, $l, {});
191 $opt = { pre => *pad_msgs };
192 test_replace(2, $l, $opt);
193 test_replace(2, $l, $opt = { %$opt, post => *pad_msgs });
194 test_replace(2, $l, $opt = { %$opt, rotate_bytes => 1 });