]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/lei-import-imap.t
No ext_urls
[public-inbox.git] / t / lei-import-imap.t
index 4a3bd6d8541a2a923016a3edcd88aa9e024938d0..3b6cb29926eee322355365631ff636c3d261eb3b 100644 (file)
@@ -13,6 +13,13 @@ my $host_port = tcp_host_port($sock);
 undef $sock;
 test_lei({ tmpdir => $tmpdir }, sub {
        my $url = "imap://$host_port/t.v2.0";
+       my $url_orig = $url;
+       lei_ok(qw(ls-mail-source), "imap://$host_port/");
+       like($lei_out, qr/^t\.v2\.0$/ms, 'shows mailbox');
+       lei_ok(qw(ls-mail-source), $url);
+       is($lei_out, "t.v2.0\n", 'shows only mailbox with filter');
+       lei_ok(qw(ls-mail-source -l), "imap://$host_port/");
+       is(ref(json_utf8->decode($lei_out)), 'ARRAY', 'ls-mail-source JSON');
 
        lei_ok(qw(q z:1..));
        my $out = json_utf8->decode($lei_out);
@@ -22,18 +29,40 @@ test_lei({ tmpdir => $tmpdir }, sub {
        is_deeply(json_utf8->decode($lei_out), {}, 'no inspect stats, yet');
 
        lei_ok('import', $url);
+       lei_ok('inspect', $url);
+       my $res = json_utf8->decode($lei_out);
+       is(scalar keys %$res, 1, 'got one key in inspect URL');
+       my $re = qr!\Aimap://;AUTH=ANONYMOUS\@\Q$host_port\E
+                       /t\.v2\.0;UIDVALIDITY=\d+!x;
+       like((keys %$res)[0], qr/$re\z/, 'got expanded key');
+
+       lei_ok 'ls-mail-sync';
+       like($lei_out, qr!$re\n\z!, 'ls-mail-sync');
+       chomp(my $u = $lei_out);
+       lei_ok('import', $u, \'UIDVALIDITY match in URL');
+       $url = $u;
+       $u =~ s/;UIDVALIDITY=(\d+)\s*/;UIDVALIDITY=9$1/s;
+       ok(!lei('import', $u), 'UIDVALIDITY mismatch in URL rejected');
+       like($lei_err, qr/UIDVALIDITY mismatch/, 'mismatch noted');
 
        lei_ok('inspect', $url);
        my $inspect = json_utf8->decode($lei_out);
        my @k = keys %$inspect;
        is(scalar(@k), 1, 'one URL resolved');
-       like($k[0], qr!\A\Q$url\E;UIDVALIDITY=\d+\z!, 'inspect URL matches');
+       is($k[0], $url, 'inspect URL matches');
        my $stats = $inspect->{$k[0]};
        is_deeply([ sort keys %$stats ],
                [ qw(uid.count uid.max uid.min) ], 'keys match');
        ok($stats->{'uid.min'} < $stats->{'uid.max'}, 'min < max');
        ok($stats->{'uid.count'} > 0, 'count > 0');
 
+       lei_ok('lcat', $url);
+       is(scalar(grep(/^# blob:/, split(/\n/ms, $lei_out))),
+               $stats->{'uid.count'}, 'lcat on URL dumps folder');
+       lei_ok qw(lcat -f json), $url;
+       $out = json_utf8->decode($lei_out);
+       is(scalar(@$out) - 1, $stats->{'uid.count'}, 'lcat JSON dumps folder');
+
        lei_ok(qw(q z:1..));
        $out = json_utf8->decode($lei_out);
        ok(scalar(@$out) > 1, 'got imported messages');
@@ -43,12 +72,47 @@ test_lei({ tmpdir => $tmpdir }, sub {
        is_deeply(\%r, { 'HASH' => scalar(@$out) }, 'all hashes');
        lei_ok([qw(tag +kw:seen), $url], undef, undef);
 
-       my $f = "$ENV{HOME}/.local/share/lei/store/net_last.sqlite3";
-       ok(-s $f, 'net tracked for redundant imports');
+       my $f = "$ENV{HOME}/.local/share/lei/store/mail_sync.sqlite3";
+       ok(-s $f, 'mail_sync tracked for redundant imports');
        lei_ok('inspect', "blob:$out->[5]->{blob}");
        my $x = json_utf8->decode($lei_out);
        is(ref($x->{'lei/store'}), 'ARRAY', 'lei/store in inspect');
-       is(ref($x->{sync}), 'HASH', 'sync in inspect');
-       is(ref($x->{sync}->{$k[0]}), 'ARRAY', 'UID arrays in inspect');
+       is(ref($x->{'mail-sync'}), 'HASH', 'sync in inspect');
+       is(ref($x->{'mail-sync'}->{$k[0]}), 'ARRAY', 'UID arrays in inspect')
+               or diag explain($x);
+
+       my $psgi_attach = 'cfa3622cbeffc9bd6b0fc66c4d60d420ba74f60d';
+       lei_ok('blob', $psgi_attach);
+       like($lei_out, qr!^Content-Type: multipart/mixed;!sm, 'got full blob');
+       lei_ok('blob', "$psgi_attach:2");
+       is($lei_out, "b64\xde\xad\xbe\xef\n", 'got attachment');
+
+       lei_ok 'forget-mail-sync', $url;
+       lei_ok 'ls-mail-sync';
+       unlike($lei_out, qr!\Q$host_port\E!, 'sync info gone after forget');
+       my $uid_url = "$url/;UID=".$stats->{'uid.max'};
+       lei_ok 'import', $uid_url;
+       lei_ok 'ls-mail-sync';
+       is($lei_out, "$url\n", 'ls-mail-sync added URL w/o UID');
+       lei_ok 'inspect', $uid_url;
+       $lei_out =~ /([a-f0-9]{40,})/ or
+               xbail 'inspect missed blob with UID URL';
+       my $blob = $1;
+       lei_ok 'lcat', $uid_url;
+       like $lei_out, qr/^Subject: /sm,
+               'lcat shows mail text with UID URL';
+       like $lei_out, qr/\bblob:$blob\b/, 'lcat showed blob';
+       my $orig = $lei_out;
+       lei_ok 'lcat', "blob:$blob";
+       is($lei_out, $orig, 'lcat understands blob:...');
+       lei_ok qw(lcat -f json), $uid_url;
+       $out = json_utf8->decode($lei_out);
+       is(scalar(@$out), 2, 'got JSON') or diag explain($out);
+       lei_ok qw(lcat), $url_orig;
+       is($lei_out, $orig, 'lcat w/o UID works');
+
+       ok(!lei(qw(export-kw), $url_orig), 'export-kw fails on read-only IMAP');
+       like($lei_err, qr/does not support/, 'error noted in failure');
 });
+
 done_testing;