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;
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 $folder = "INBOX.$base-$host-".strftime('%Y%m%d%H%M%S', gmtime(time)).
23 "-$$-".sprintf('%x', int(rand(0xffffffff)));
24 my $nwr = PublicInbox::NetWriter->new;
25 chop($imap_url) if substr($imap_url, -1) eq '/';
26 my $folder_uri = PublicInbox::URIimap->new("$imap_url/$folder");
27 is($folder_uri->mailbox, $folder, 'folder correct') or
28 BAIL_OUT "BUG: bad $$uri";
29 $nwr->add_url($$folder_uri);
30 is($nwr->errors, undef, 'no errors');
31 $nwr->{pi_cfg} = bless {}, 'PublicInbox::Config';
33 my $set_cred_helper = sub {
34 my ($f, $cred_set) = @_;
35 sysopen(my $fh, $f, O_CREAT|O_EXCL|O_WRONLY) or BAIL_OUT "open $f: $!";
36 print $fh <<EOF or BAIL_OUT "print $f: $!";
40 close $fh or BAIL_OUT "close $f: $!";
43 # allow testers with git-credential-store configured to reuse
44 # stored credentials inside test_lei(sub {...}) when $ENV{HOME}
45 # is overridden and localized.
46 my ($cred_set, @cred_link, $tmpdir, $for_destroy);
47 chomp(my $cred_helper = `git config credential.helper 2>/dev/null`);
48 if ($cred_helper eq 'store') {
49 my $config = $ENV{XDG_CONFIG_HOME} // "$ENV{HOME}/.config";
50 for my $f ("$ENV{HOME}/.git-credentials", "$config/git/credentials") {
52 @cred_link = ($f, '/.git-credentials');
55 $cred_set = qq("$cred_helper");
56 } elsif ($cred_helper =~ /\Acache(?:[ \t]|\z)/) {
57 my $cache = $ENV{XDG_CACHE_HOME} // "$ENV{HOME}/.cache";
58 for my $d ("$ENV{HOME}/.git-credential-cache",
59 "$cache/git/credential") {
61 @cred_link = ($d, '/.git-credential-cache');
62 $cred_set = qq("$cred_helper");
65 } elsif (!$cred_helper) { # make the test less painful if no creds configured
66 ($tmpdir, $for_destroy) = tmpdir;
67 my $d = "$tmpdir/.git-credential-cache";
68 mkdir($d, 0700) or BAIL_OUT $!;
69 $cred_set = "cache --timeout=60";
70 @cred_link = ($d, '/.git-credential-cache');
72 diag "credential.helper=$cred_helper will not be used for this test";
76 local $ENV{HOME} = $tmpdir // $ENV{HOME};
77 if ($tmpdir && $cred_set) {
78 $set_cred_helper->("$ENV{HOME}/.gitconfig", $cred_set)
80 $nwr->imap_common_init;
82 my $mic = (values %$mics)[0];
83 my $cleanup = PublicInbox::OnDestroy->new($$, sub {
84 my $mic = $nwr->mic_get($uri);
85 $mic->delete($folder) or fail "delete $folder <$folder_uri>: $@";
86 if ($tmpdir && -f "$tmpdir/.gitconfig") {
87 local $ENV{HOME} = $tmpdir;
88 system(qw(git credential-cache exit));
91 my $imap_append = $nwr->can('imap_append');
92 my $smsg = bless { kw => [ 'seen' ] }, 'PublicInbox::Smsg';
93 $imap_append->($mic, $folder, undef, $smsg, eml_load('t/plack-qp.eml'));
95 my $imap_slurp_all = sub {
96 my ($url, $uid, $kw, $eml, $res) = @_;
97 push @$res, [ $kw, $eml ];
99 $nwr->imap_each($folder_uri, $imap_slurp_all, my $res = []);
100 is(scalar(@$res), 1, 'got appended message');
101 my $plack_qp_eml = eml_load('t/plack-qp.eml');
102 is_deeply($res, [ [ [ 'seen' ], $plack_qp_eml ] ],
103 'uploaded message read back');
104 $res = $mic = $mics = undef;
107 my ($ro_home, $cfg_path) = setup_public_inboxes;
108 my $cfg = PublicInbox::Config->new($cfg_path);
109 $cfg->each_inbox(sub {
111 lei_ok qw(add-external -q), $ibx->{inboxdir} or BAIL_OUT;
114 # cred_link[0] may be on a different (hopefully encrypted) FS,
115 # we only symlink to it here, so we don't copy any sensitive data
116 # into the temporary directory
117 if (@cred_link && !symlink($cred_link[0], $ENV{HOME}.$cred_link[1])) {
118 diag "symlink @cred_link: $! (non-fatal)";
121 $set_cred_helper->("$ENV{HOME}/.gitconfig", $cred_set) if $cred_set;
123 lei_ok qw(q f:qp@example.com -o), $$folder_uri;
124 $nwr->imap_each($folder_uri, $imap_slurp_all, my $res = []);
125 is(scalar(@$res), 1, 'got one deduped result') or diag explain($res);
126 is_deeply($res->[0]->[1], $plack_qp_eml,
127 'lei q wrote expected result');
129 lei_ok qw(q f:matz -a -o), $$folder_uri;
130 $nwr->imap_each($folder_uri, $imap_slurp_all, my $aug = []);
131 is(scalar(@$aug), 2, '2 results after augment') or diag explain($aug);
132 my $exp = $res->[0]->[1]->as_string;
133 is(scalar(grep { $_->[1]->as_string eq $exp } @$aug), 1,
134 'original remains after augment');
135 $exp = eml_load('t/iso-2202-jp.eml')->as_string;
136 is(scalar(grep { $_->[1]->as_string eq $exp } @$aug), 1,
137 'new result shown after augment');
139 lei_ok qw(q s:thisbetternotgiveanyresult -o), $folder_uri->as_string;
140 $nwr->imap_each($folder_uri, $imap_slurp_all, my $empty = []);
141 is(scalar(@$empty), 0, 'no results w/o augment');
143 my $f = 't/utf8.eml'; # <testmessage@example.com>
145 lei_ok qw(convert -F eml -o), $$folder_uri, $f;
147 $nwr->imap_each($folder_uri, sub {
148 my ($u, $uid, $kw, $eml) = @_;
150 push @res, [ $kw, $eml ];
152 is_deeply(\@res, [ [ [], $exp ] ], 'converted to IMAP destination');
153 is(scalar(@uid), 1, 'got one UID back');
154 lei_ok qw(q -o /dev/stdout m:testmessage@example.com --no-external);
155 is_deeply(json_utf8->decode($lei_out), [undef],
156 'no results before import');
158 lei_ok qw(import -F eml), $f, \'import local copy w/o keywords';
160 $nwr->imap_set_kw($folder_uri, $uid[0], [ 'seen' ])->expunge
161 or BAIL_OUT "expunge $@";
163 $nwr->imap_each($folder_uri, $imap_slurp_all, \@res);
164 is_deeply(\@res, [ [ ['seen'], $exp ] ], 'seen flag set') or
167 lei_ok qw(q s:thisbetternotgiveanyresult -o), $folder_uri->as_string,
168 \'clobber folder but import flag';
169 $nwr->imap_each($folder_uri, $imap_slurp_all, $empty = []);
170 is_deeply($empty, [], 'clobbered folder');
171 lei_ok qw(q -o /dev/stdout m:testmessage@example.com --no-external);
172 $res = json_utf8->decode($lei_out)->[0];
173 is_deeply([@$res{qw(m kw)}], ['testmessage@example.com', ['seen']],
176 # prepare messages for watch
177 $mic = $nwr->mic_for_folder($folder_uri);
178 for my $kw (qw(Deleted Seen Answered Draft forwarded)) {
181 Message-ID: <$kw\@test.example.com>
184 my $f = $kw eq 'forwarded' ? '$Forwarded' : "\\$kw";
185 $mic->append_string($folder_uri->mailbox, $buf, $f)
186 or BAIL_OUT "append $kw $@";
190 my $inboxdir = "$ENV{HOME}/wtest";
191 my @cmd = (qw(-init -Lbasic wtest), $inboxdir,
192 qw(https://example.com/wtest wtest@example.com));
193 run_script(\@cmd) or BAIL_OUT "init wtest";
194 xsys(qw(git config), "--file=$ENV{HOME}/.public-inbox/config",
195 'publicinbox.wtest.watch',
196 $$folder_uri) == 0 or BAIL_OUT "git config $?";
197 my $watcherr = "$ENV{HOME}/watch.err";
198 open my $err_wr, '>>', $watcherr or BAIL_OUT $!;
199 my $pub_cfg = PublicInbox::Config->new;
200 PublicInbox::DS->Reset;
201 my $ii = PublicInbox::InboxIdle->new($pub_cfg);
202 my $cb = sub { PublicInbox::DS->SetPostLoopCallback(sub {}) };
203 my $obj = bless \$cb, 'PublicInbox::TestCommon::InboxWakeup';
204 $pub_cfg->each_inbox(sub { $_[0]->subscribe_unlock('ident', $obj) });
205 my $w = start_script(['-watch'], undef, { 2 => $err_wr });
206 diag 'waiting for initial fetch...';
207 PublicInbox::DS->EventLoop;
208 my $ibx = $pub_cfg->lookup_name('wtest');
210 ok(defined($mm->num_for('Seen@test.example.com')),
211 '-watch takes seen message');
212 ok(defined($mm->num_for('Answered@test.example.com')),
213 '-watch takes answered message');
214 ok(!defined($mm->num_for('Deleted@test.example.com')),
215 '-watch ignored \\Deleted');
216 ok(!defined($mm->num_for('Draft@test.example.com')),
217 '-watch ignored \\Draft');
218 ok(defined($mm->num_for('forwarded@test.example.com')),
219 '-watch takes forwarded message');
220 undef $w; # done with watch
221 lei_ok qw(import), $$folder_uri;
222 lei_ok qw(q m:forwarded@test.example.com);
223 is_deeply(json_utf8->decode($lei_out)->[0]->{kw}, ['forwarded'],
224 'forwarded kw imported from IMAP');
227 undef $cleanup; # remove temporary folder