]> Sergey Matveev's repositories - public-inbox.git/blob - t/v2-add-remove-add.t
60a869eeb9d2462eeafdb21a431b96d27f5541ba
[public-inbox.git] / t / v2-add-remove-add.t
1 # Copyright (C) 2018-2020 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 PublicInbox::MIME;
7 use PublicInbox::TestCommon;
8 require_git(2.6);
9 require_mods(qw(DBD::SQLite Search::Xapian));
10 use_ok 'PublicInbox::V2Writable';
11 my ($inboxdir, $for_destroy) = tmpdir();
12 my $ibx = {
13         inboxdir => "$inboxdir/v2",
14         name => 'test-v2writable',
15         version => 2,
16         -primary_address => 'test@example.com',
17 };
18 $ibx = PublicInbox::Inbox->new($ibx);
19 my $mime = PublicInbox::MIME->new(<<'EOF');
20 From: a@example.com
21 To: test@example.com
22 Subject: this is a subject
23 Date: Fri, 02 Oct 1993 00:00:00 +0000
24 Message-ID: <a-mid@b>
25
26 hello world
27 EOF
28 my $im = PublicInbox::V2Writable->new($ibx, 1);
29 $im->{parallel} = 0;
30 ok($im->add($mime), 'message added');
31 ok($im->remove($mime), 'message removed');
32 ok($im->add($mime), 'message added again');
33 $im->done;
34 my $msgs = $ibx->recent({limit => 1000});
35 is($msgs->[0]->{mid}, 'a-mid@b', 'message exists in history');
36 is(scalar @$msgs, 1, 'only one message in history');
37
38 done_testing();