]> Sergey Matveev's repositories - public-inbox.git/blob - xt/net_writer-imap.t
uri_imap: handle '/' as an IMAP hierarchy separator
[public-inbox.git] / xt / net_writer-imap.t
1 #!perl -w
2 # Copyright (C) 2021 all contributors <meta@public-inbox.org>
3 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 use strict; use v5.10.1; use PublicInbox::TestCommon;
5 use Sys::Hostname qw(hostname);
6 use POSIX qw(strftime);
7 use PublicInbox::OnDestroy;
8 use PublicInbox::URIimap;
9 use PublicInbox::Config;
10 use PublicInbox::DS;
11 use PublicInbox::InboxIdle;
12 use Fcntl qw(O_EXCL O_WRONLY O_CREAT);
13 my $imap_url = $ENV{TEST_IMAP_WRITE_URL} or
14         plan skip_all => 'TEST_IMAP_WRITE_URL unset';
15 my $uri = PublicInbox::URIimap->new($imap_url);
16 defined($uri->path) and
17         plan skip_all => "$imap_url should not be a mailbox (just host:port)";
18 require_mods('Mail::IMAPClient');
19 require_ok 'PublicInbox::NetWriter';
20 my $host = (split(/\./, hostname))[0];
21 my ($base) = ($0 =~ m!\b([^/]+)\.[^\.]+\z!);
22 my $SEP = $ENV{IMAP_SEPARATOR} || '.';
23 my $folder = "INBOX$SEP$base-$host-".strftime('%Y%m%d%H%M%S', gmtime(time)).
24                 "-$$-".sprintf('%x', int(rand(0xffffffff)));
25 my $nwr = PublicInbox::NetWriter->new;
26 chop($imap_url) if substr($imap_url, -1) eq '/';
27 my $folder_url = "$imap_url/$folder";
28 my $folder_uri = PublicInbox::URIimap->new($folder_url);
29 is($folder_uri->mailbox, $folder, 'folder correct') or
30                 BAIL_OUT "BUG: bad $$uri";
31 $nwr->add_url($$folder_uri);
32 is($nwr->errors, undef, 'no errors');
33 $nwr->{pi_cfg} = bless {}, 'PublicInbox::Config';
34
35 my $set_cred_helper = sub {
36         my ($f, $cred_set) = @_;
37         sysopen(my $fh, $f, O_CREAT|O_EXCL|O_WRONLY) or BAIL_OUT "open $f: $!";
38         print $fh <<EOF or BAIL_OUT "print $f: $!";
39 [credential]
40         helper = $cred_set
41 EOF
42         close $fh or BAIL_OUT "close $f: $!";
43 };
44
45 # allow testers with git-credential-store configured to reuse
46 # stored credentials inside test_lei(sub {...}) when $ENV{HOME}
47 # is overridden and localized.
48 my ($cred_set, @cred_link, $tmpdir, $for_destroy);
49 chomp(my $cred_helper = `git config credential.helper 2>/dev/null`);
50 if ($cred_helper eq 'store') {
51         my $config = $ENV{XDG_CONFIG_HOME} // "$ENV{HOME}/.config";
52         for my $f ("$ENV{HOME}/.git-credentials", "$config/git/credentials") {
53                 next unless -f $f;
54                 @cred_link = ($f, '/.git-credentials');
55                 last;
56         }
57         $cred_set = qq("$cred_helper");
58 } elsif ($cred_helper =~ /\Acache(?:[ \t]|\z)/) {
59         my $cache = $ENV{XDG_CACHE_HOME} // "$ENV{HOME}/.cache";
60         for my $d ("$ENV{HOME}/.git-credential-cache",
61                         "$cache/git/credential") {
62                 next unless -d $d;
63                 @cred_link = ($d, '/.git-credential-cache');
64                 $cred_set = qq("$cred_helper");
65                 last;
66         }
67 } elsif (!$cred_helper) { # make the test less painful if no creds configured
68         ($tmpdir, $for_destroy) = tmpdir;
69         my $d = "$tmpdir/.git-credential-cache";
70         mkdir($d, 0700) or BAIL_OUT $!;
71         $cred_set = "cache --timeout=60";
72         @cred_link = ($d, '/.git-credential-cache');
73 } else {
74         diag "credential.helper=$cred_helper will not be used for this test";
75 }
76
77 my $mics = do {
78         local $ENV{HOME} = $tmpdir // $ENV{HOME};
79         if ($tmpdir && $cred_set) {
80                 $set_cred_helper->("$ENV{HOME}/.gitconfig", $cred_set)
81         }
82         $nwr->imap_common_init;
83 };
84 my $mic = (values %$mics)[0];
85 my $cleanup = PublicInbox::OnDestroy->new($$, sub {
86         my $mic = $nwr->mic_get($uri);
87         $mic->delete($folder) or fail "delete $folder <$folder_uri>: $@";
88         if ($tmpdir && -f "$tmpdir/.gitconfig") {
89                 local $ENV{HOME} = $tmpdir;
90                 system(qw(git credential-cache exit));
91         }
92 });
93 my $imap_append = $nwr->can('imap_append');
94 my $smsg = bless { kw => [ 'seen' ] }, 'PublicInbox::Smsg';
95 $imap_append->($mic, $folder, undef, $smsg, eml_load('t/plack-qp.eml'));
96 $nwr->{quiet} = 1;
97 my $imap_slurp_all = sub {
98         my ($url, $uid, $kw, $eml, $res) = @_;
99         push @$res, [ $kw, $eml ];
100 };
101 $nwr->imap_each($folder_uri, $imap_slurp_all, my $res = []);
102 is(scalar(@$res), 1, 'got appended message');
103 my $plack_qp_eml = eml_load('t/plack-qp.eml');
104 is_deeply($res, [ [ [ 'seen' ], $plack_qp_eml ] ],
105         'uploaded message read back');
106 $res = $mic = $mics = undef;
107
108 test_lei(sub {
109         my ($ro_home, $cfg_path) = setup_public_inboxes;
110         my $cfg = PublicInbox::Config->new($cfg_path);
111         $cfg->each_inbox(sub {
112                 my ($ibx) = @_;
113                 lei_ok qw(add-external -q), $ibx->{inboxdir} or BAIL_OUT;
114         });
115
116         # cred_link[0] may be on a different (hopefully encrypted) FS,
117         # we only symlink to it here, so we don't copy any sensitive data
118         # into the temporary directory
119         if (@cred_link && !symlink($cred_link[0], $ENV{HOME}.$cred_link[1])) {
120                 diag "symlink @cred_link: $! (non-fatal)";
121                 $cred_set = undef;
122         }
123         $set_cred_helper->("$ENV{HOME}/.gitconfig", $cred_set) if $cred_set;
124
125         lei_ok qw(q f:qp@example.com -o), $folder_url;
126         $nwr->imap_each($folder_uri, $imap_slurp_all, my $res = []);
127         is(scalar(@$res), 1, 'got one deduped result') or diag explain($res);
128         is_deeply($res->[0]->[1], $plack_qp_eml,
129                         'lei q wrote expected result');
130
131         lei_ok qw(q f:matz -a -o), $folder_url;
132         $nwr->imap_each($folder_uri, $imap_slurp_all, my $aug = []);
133         is(scalar(@$aug), 2, '2 results after augment') or diag explain($aug);
134         my $exp = $res->[0]->[1]->as_string;
135         is(scalar(grep { $_->[1]->as_string eq $exp } @$aug), 1,
136                         'original remains after augment');
137         $exp = eml_load('t/iso-2202-jp.eml')->as_string;
138         is(scalar(grep { $_->[1]->as_string eq $exp } @$aug), 1,
139                         'new result shown after augment');
140
141         lei_ok qw(q s:thisbetternotgiveanyresult -o), $folder_url;
142         $nwr->imap_each($folder_uri, $imap_slurp_all, my $empty = []);
143         is(scalar(@$empty), 0, 'no results w/o augment');
144
145         my $f = 't/utf8.eml'; # <testmessage@example.com>
146         $exp = eml_load($f);
147         lei_ok qw(convert -F eml -o), $folder_url, $f;
148         my (@uid, @res);
149         $nwr->imap_each($folder_uri, sub {
150                 my ($u, $uid, $kw, $eml) = @_;
151                 push @uid, $uid;
152                 push @res, [ $kw, $eml ];
153         });
154         is_deeply(\@res, [ [ [], $exp ] ], 'converted to IMAP destination');
155         is(scalar(@uid), 1, 'got one UID back');
156         lei_ok qw(q -o /dev/stdout m:testmessage@example.com --no-external);
157         is_deeply(json_utf8->decode($lei_out), [undef],
158                 'no results before import');
159
160         lei_ok qw(import -F eml), $f, \'import local copy w/o keywords';
161
162         lei_ok 'import', $folder_url; # populate mail_sync.sqlite3
163         lei_ok qw(tag +kw:seen +kw:answered +kw:flagged), $f;
164         lei_ok 'ls-mail-sync';
165         my @ls = split(/\n/, $lei_out);
166         is(scalar(@ls), 1, 'only one folder in ls-mail-sync') or xbail(\@ls);
167         for my $l (@ls) {
168                 like($l, qr/;UIDVALIDITY=\d+\z/, 'UIDVALIDITY');
169         }
170         lei_ok 'export-kw', $folder_url;
171         $mic = $nwr->mic_for_folder($folder_uri);
172         my $flags = $mic->flags($uid[0]);
173         is_deeply([sort @$flags], [ qw(\\Answered \\Flagged \\Seen) ],
174                 'IMAP flags set by export-kw') or diag explain($flags);
175
176         # ensure this imap_set_kw clobbers
177         $nwr->imap_set_kw($mic, $uid[0], [ 'seen' ])->expunge or
178                 BAIL_OUT "expunge $@";
179         $mic = undef;
180         @res = ();
181         $nwr->imap_each($folder_uri, $imap_slurp_all, \@res);
182         is_deeply(\@res, [ [ ['seen'], $exp ] ], 'seen flag set') or
183                 diag explain(\@res);
184
185         lei_ok qw(q s:thisbetternotgiveanyresult -o), $folder_url,
186                 \'clobber folder but import flag';
187         $nwr->imap_each($folder_uri, $imap_slurp_all, $empty = []);
188         is_deeply($empty, [], 'clobbered folder');
189         lei_ok qw(q -o /dev/stdout m:testmessage@example.com --no-external);
190         $res = json_utf8->decode($lei_out)->[0];
191         is_deeply([@$res{qw(m kw)}], ['testmessage@example.com', ['seen']],
192                 'kw set');
193
194         # prepare messages for watch
195         $mic = $nwr->mic_for_folder($folder_uri);
196         for my $kw (qw(Deleted Seen Answered Draft forwarded)) {
197                 my $buf = <<EOM;
198 From: x\@example.com
199 Message-ID: <$kw\@test.example.com>
200
201 EOM
202                 my $f = $kw eq 'forwarded' ? '$Forwarded' : "\\$kw";
203                 $mic->append_string($folder_uri->mailbox, $buf, $f)
204                         or BAIL_OUT "append $kw $@";
205         }
206         $mic->disconnect;
207
208         my $inboxdir = "$ENV{HOME}/wtest";
209         my @cmd = (qw(-init -Lbasic wtest), $inboxdir,
210                         qw(https://example.com/wtest wtest@example.com));
211         run_script(\@cmd) or BAIL_OUT "init wtest";
212         xsys(qw(git config), "--file=$ENV{HOME}/.public-inbox/config",
213                         'publicinbox.wtest.watch',
214                         $folder_url) == 0 or BAIL_OUT "git config $?";
215         my $watcherr = "$ENV{HOME}/watch.err";
216         open my $err_wr, '>>', $watcherr or BAIL_OUT $!;
217         my $pub_cfg = PublicInbox::Config->new;
218         PublicInbox::DS->Reset;
219         my $ii = PublicInbox::InboxIdle->new($pub_cfg);
220         my $cb = sub { PublicInbox::DS->SetPostLoopCallback(sub {}) };
221         my $obj = bless \$cb, 'PublicInbox::TestCommon::InboxWakeup';
222         $pub_cfg->each_inbox(sub { $_[0]->subscribe_unlock('ident', $obj) });
223         my $w = start_script(['-watch'], undef, { 2 => $err_wr });
224         diag 'waiting for initial fetch...';
225         PublicInbox::DS->EventLoop;
226         my $ibx = $pub_cfg->lookup_name('wtest');
227         my $mm = $ibx->mm;
228         ok(defined($mm->num_for('Seen@test.example.com')),
229                 '-watch takes seen message');
230         ok(defined($mm->num_for('Answered@test.example.com')),
231                 '-watch takes answered message');
232         ok(!defined($mm->num_for('Deleted@test.example.com')),
233                 '-watch ignored \\Deleted');
234         ok(!defined($mm->num_for('Draft@test.example.com')),
235                 '-watch ignored \\Draft');
236         ok(defined($mm->num_for('forwarded@test.example.com')),
237                 '-watch takes forwarded message');
238         undef $w; # done with watch
239         lei_ok qw(import), $folder_url;
240         lei_ok qw(q m:forwarded@test.example.com);
241         is_deeply(json_utf8->decode($lei_out)->[0]->{kw}, ['forwarded'],
242                 'forwarded kw imported from IMAP');
243
244         lei_ok qw(q m:testmessage --no-external -o), $folder_url;
245         lei_ok qw(up), $folder_url;
246         lei_ok qw(up --all=remote);
247 });
248
249 undef $cleanup; # remove temporary folder
250 done_testing;