2 # Copyright (C) 2013, Eric Wong <normalperson@yhbt.net> and all contributors
3 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
10 use File
::Temp qw
/tempdir/;
12 my $mdadir = tempdir
(CLEANUP
=> 1);
13 my $outdir = tempdir
(CLEANUP
=> 1);
15 my $outgit = Ssoma
::Git
->new("$outdir/git");
16 my $ex = Ssoma
::Extractor
->new($outgit);
17 my $maildir = "$outdir/maildir/";
18 my $mailbox = "$outdir/mbox";
20 my $mdagit = Ssoma
::Git
->new("$mdadir/gittest");
22 my $mda = Ssoma
::MDA
->new($mdagit);
23 my $email = Email
::Simple
->new(<<'EOF');
24 From: U <u@example.com>
25 To: Me <me@example.com>
26 Message-ID: <666@example.com>
32 $mda->deliver($email);
35 my @cmd = (qw
/git clone -q --mirror/,
36 $mdagit->{git_dir
}, $outgit->{git_dir
});
37 is
(system(@cmd), 0, "extractor repository cloned");
41 local $ENV{GIT_CONFIG
} = "$outgit->{git_dir}/ssoma.state";
42 is
(system(qw
/git config target.mydir.path/, $maildir), 0,
47 my $check_last = sub {
49 local $ENV{GIT_CONFIG
} = "$outgit->{git_dir}/ssoma.state";
50 my $last = `git config $key`;
51 is
($?
, 0, "git config succeeds");
52 like
($last, qr/^[a-f0-9]{40}$/, "last-imported is a SHA1");
56 $ex->extract("mydir");
57 my @new = glob("$outdir/maildir/new/*");
58 is
(scalar @new, 1, "one file now exists in maildir");
60 open my $fh, '<', $f or die "opening $f failed: $!\n";
63 my $simple = Email
::Simple
->new($s);
64 is
($simple->header('message-id'), '<666@example.com>',
65 "delivered message-id matches");
66 $check_last->("target.mydir.last-imported");
67 unlink $f or die "failed to unlink $f: $!\n";
71 local $ENV{GIT_CONFIG
} = "$outgit->{git_dir}/ssoma.state";
72 is
(system(qw
/git config target.mybox.path/, $mailbox), 0,
77 $ex->extract("mybox");
78 open my $fh, '<', $mailbox or die "opening $mailbox failed: $!\n";
81 my $simple = Email
::Simple
->new($s);
82 is
($simple->header('message-id'), '<666@example.com>',
83 "delivered message-id matches");
84 $check_last->("target.mybox.last-imported");
87 my $another = Email
::Simple
->new(<<'EOF');
88 From: U <u@example.com>
89 To: Me <me@example.com>
90 Message-ID: <666666@example.com>
95 $mda->deliver($another);
98 local $ENV{GIT_DIR
} = $outgit->{git_dir
};
99 is
(system("git fetch -q"), 0, "fetching updates succeeds");
102 # ensure we can update maildir without adding old messages
105 $ex->extract("mydir");
106 my @new = glob("$outdir/maildir/new/*");
107 is
(scalar @new, 1, "one new file now exists in maildir");
109 open my $fh, '<', $f or die "opening $f failed: $!\n";
112 my $simple = Email
::Simple
->new($s);
113 is
($simple->header('message-id'), '<666666@example.com>',
114 "delivered message-id matches");
115 is
($simple->body, "*yawn*\n", "body matches");
116 $check_last->("target.mydir.last-imported");
117 unlink $f or die "failed to unlink $f: $!\n"; # for next test
120 # ensure we can update mmbox without adding old messages
123 $ex->extract("mybox");
124 open my $fh, '<', $mailbox or die "opening $mailbox failed: $!\n";
126 my @subjects = grep /^Subject:/, @lines;
127 my @from_ = grep /^From /, @lines;
128 is
(scalar @subjects, 2, "2 subjects in mbox");
129 is
(scalar @from_, 2, "2 From_ lines in mbox");
131 $check_last->("target.mydir.last-imported");
134 # ensure we can handle conflicts w/o reimporting when the MDA
135 # upgrades a blob to a tree.
136 my $conflict = Email
::Simple
->new(<<'EOF');
137 From: U <u@example.com>
138 To: Me <me@example.com>
139 Message-ID: <666666@example.com>
144 $mda->deliver($conflict);
147 local $ENV{GIT_DIR
} = $outgit->{git_dir
};
148 is
(system("git fetch -q"), 0, "fetching updates succeeds");
151 # ensure we can update maildir without adding old messages even on a
152 # message-id conflict
155 $ex->extract("mydir");
156 my @new = glob("$outdir/maildir/new/*");
157 is
(scalar @new, 1, "one new file now exists in maildir");
159 open my $fh, '<', $f or die "opening $f failed: $!\n";
162 my $simple = Email
::Simple
->new($s);
163 is
($simple->header('message-id'), '<666666@example.com>',
164 "delivered conflicting message-id matches");
165 is
($simple->body, "*YAWN*\n", "body matches on conflict");
166 $check_last->("target.mydir.last-imported");
169 # ensure we can pipe to commands
172 my $cat = "cat >> $outdir/cat.out";
173 local $ENV{GIT_CONFIG
} = "$outgit->{git_dir}/ssoma.state";
174 is
(system(qw
/git config target.cat.command/, $cat), 0,
175 "setup delivery command");
179 my $f = "$outdir/cat.out";
180 open my $fh, '<', $f or die "open $f failed: $!\n";
182 my @subjects = grep /^Subject:/, @lines;
183 my @from = grep /^From:/, @lines;
184 my @mid = grep /^Message-ID:/i, @lines;
185 is
(scalar @subjects, 3, "3 subjects in dump");
186 is
(scalar @mid, 3, "3 message-ids in dump");
187 is
(scalar @from, 3, "3 From: lines in dump");
189 $check_last->("target.cat.last-imported");