public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob 1e7eddd571d8388aa5f59d6e5457a000a4301d4d 3269 bytes (raw)
$ git show HEAD:t/lei-import-maildir.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
 
#!perl -w
# Copyright (C) 2020-2021 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;
use Cwd qw(abs_path);
test_lei(sub {
	my $md = "$ENV{HOME}/md";
	for ($md, "$md/new", "$md/cur", "$md/tmp") {
		mkdir($_) or BAIL_OUT("mkdir $_: $!");
	}
	symlink(abs_path('t/data/0001.patch'), "$md/cur/x:2,S") or
		BAIL_OUT "symlink $md $!";
	lei_ok(qw(import), "$md/", \'import Maildir');
	my $imp_err = $lei_err;

	my %i;
	lei_ok('inspect', $md); $i{no_type} = $lei_out;
	lei_ok('inspect', "$md/"); $i{no_type_tslash} = $lei_out;
	lei_ok('inspect', "maildir:$md"), $i{with_type} = $lei_out;
	lei_ok('inspect', "maildir:$md/"), $i{with_type_tslash} = $lei_out;
	lei_ok('inspect', "MAILDIR:$md"), $i{ALLCAPS} = $lei_out;
	lei_ok(['inspect', $md], undef, { -C => $ENV{HOME}, %$lei_opt });
	$i{rel_no_type} = $lei_out;
	lei_ok(['inspect', "maildir:$md"], undef,
		{ -C => $ENV{HOME}, %$lei_opt });
	$i{rel_with_type} = $lei_out;
	my %v = map { $_ => 1 } values %i;
	is(scalar(keys %v), 1, 'inspect handles relative and absolute paths');
	my $inspect = json_utf8->decode([ keys %v ]->[0]);
	is_deeply($inspect, {"maildir:$md" => { 'name.count' => 1 }},
		'inspect maildir: path had expected output') or xbail($inspect);

	lei_ok(qw(q s:boolean));
	my $res = json_utf8->decode($lei_out);
	like($res->[0]->{'s'}, qr/use boolean/, 'got expected result')
			or diag explain($imp_err, $res);
	is_deeply($res->[0]->{kw}, ['seen'], 'keyword set');
	is($res->[1], undef, 'only got one result');

	lei_ok('inspect', "blob:$res->[0]->{blob}");
	$inspect = json_utf8->decode($lei_out);
	is(ref(delete $inspect->{"lei/store"}), 'ARRAY', 'lei/store IDs');
	is_deeply($inspect, { 'mail-sync' => { "maildir:$md" => [ 'x:2,S' ] } },
		'maildir sync info as expected');

	lei_ok qw(ls-mail-sync);
	is($lei_out, "maildir:$md\n", 'ls-mail-sync as expected');

	lei_ok(qw(import), $md, \'import Maildir again');
	$imp_err = $lei_err;
	lei_ok(qw(q -d none s:boolean), \'lei q w/o dedupe');
	my $r2 = json_utf8->decode($lei_out);
	is_deeply($r2, $res, 'idempotent import')
			or diag explain($imp_err, $res);
	rename("$md/cur/x:2,S", "$md/cur/x:2,RS") or BAIL_OUT "rename: $!";
	lei_ok('import', "maildir:$md", \'import Maildir after +answered');
	lei_ok(qw(q -d none s:boolean), \'lei q after +answered');
	$res = json_utf8->decode($lei_out);
	like($res->[0]->{'s'}, qr/use boolean/, 'got expected result');
	is_deeply($res->[0]->{kw}, ['answered', 'seen'], 'keywords set');
	is($res->[1], undef, 'only got one result');

	symlink(abs_path('t/utf8.eml'), "$md/cur/u:2,ST") or
		BAIL_OUT "symlink $md $!";
	lei_ok('import', "maildir:$md", \'import Maildir w/ trashed message');
	$imp_err = $lei_err;
	lei_ok(qw(q -d none m:testmessage@example.com));
	$res = json_utf8->decode($lei_out);
	is_deeply($res, [ undef ], 'trashed message not imported')
			or diag explain($imp_err, $res);

	lei_ok qw(rm t/data/0001.patch);
	lei_ok(qw(q s:boolean));
	is($lei_out, "[null]\n", 'removed message gone from results');
	my $g0 = "$ENV{HOME}/.local/share/lei/store/local/0.git";
	my $x = xqx(['git', "--git-dir=$g0", qw(cat-file blob HEAD:d)]);
	is($?, 0, "git cat-file shows file is `d'");
});
done_testing;

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