public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob 74a6c8aae37d40f2b2c969a5d7cd87c8ae4977e4 2822 bytes (raw)
$ git show HEAD:t/lei_mail_sync.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
 
#!perl -w
# Copyright (C) all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
use strict;
use v5.10.1;
use PublicInbox::TestCommon;
require_mods(qw(DBD::SQLite));
require_ok 'PublicInbox::LeiMailSync';
my ($dir, $for_destroy) = tmpdir();
my $lms = PublicInbox::LeiMailSync->new("$dir/t.sqlite3");

$lms->lms_write_prepare;
my $ro = PublicInbox::LeiMailSync->new("$dir/t.sqlite3");
is_deeply([$ro->folders], [], 'no folders, yet');

my $imap = 'imaps://bob@[::1]/INBOX;UIDVALIDITY=9';
$lms->lms_write_prepare;
my $deadbeef = "\xde\xad\xbe\xef";
is($lms->set_src($deadbeef, $imap, 1), 1, 'set IMAP once');
ok($lms->set_src($deadbeef, $imap, 1) == 0, 'set IMAP idempotently');
is_deeply([$ro->folders], [$imap], 'IMAP folder added');
note explain([$ro->folders($imap)]);
note explain([$imap, [$ro->folders]]);
is_deeply([$ro->folders($imap)], [$imap], 'IMAP folder with full GLOB');
is_deeply([$ro->folders('imaps://bob@[::1]/INBOX')], [$imap],
		'IMAP folder with partial GLOB');

is_deeply($ro->locations_for($deadbeef),
	{ $imap => [ 1 ] }, 'locations_for w/ imap');

my $maildir = 'maildir:/home/user/md';
my $fname = 'foo:2,S';
$lms->lms_write_prepare;
ok($lms->set_src($deadbeef, $maildir, \$fname), 'set Maildir once');
ok($lms->set_src($deadbeef, $maildir, \$fname) == 0, 'set Maildir again');
is_deeply($ro->locations_for($deadbeef),
	{ $imap => [ 1 ], $maildir => [ $fname ] },
	'locations_for w/ maildir + imap');

if ('mess things up pretend old bug') {
	$lms->lms_write_prepare;
	diag "messing things up";
	$lms->{dbh}->do('UPDATE folders SET loc = ? WHERE loc = ?', undef,
			"$maildir/", $maildir);
	ok(delete $lms->{fmap}, 'clear folder map');

	$lms->lms_write_prepare;
	ok($lms->set_src($deadbeef, $maildir, \$fname), 'set Maildir once');
};

is_deeply([sort($ro->folders)], [$imap, $maildir], 'both folders shown');
my @res;
$ro->each_src($maildir, sub {
	my ($oidbin, $id) = @_;
	push @res, [ unpack('H*', $oidbin), $id ];
});
is_deeply(\@res, [ ['deadbeef', \$fname] ], 'each_src works on Maildir');

@res = ();
$ro->each_src($imap, sub {
	my ($oidbin, $id) = @_;
	push @res, [ unpack('H*', $oidbin), $id ];
});
is_deeply(\@res, [ ['deadbeef', 1] ], 'each_src works on IMAP');

is_deeply($ro->location_stats($maildir), { 'name.count' => 1 },
	'Maildir location stats');
is_deeply($ro->location_stats($imap),
	{ 'uid.count' => 1, 'uid.max' => 1, 'uid.min' => 1 },
	'IMAP location stats');
$lms->lms_write_prepare;
is($lms->clear_src($imap, 1), 1, 'clear_src on IMAP');
is($lms->clear_src($maildir, \$fname), 1, 'clear_src on Maildir');
ok($lms->clear_src($imap, 1) == 0, 'clear_src again on IMAP');
ok($lms->clear_src($maildir, \$fname) == 0, 'clear_src again on Maildir');
is_deeply($ro->location_stats($maildir), {}, 'nothing left');

done_testing;

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