2 # $Id: 05_mail.t,v 1.1 2005/08/17 21:46:17 don Exp $
4 use Test::More tests => 122;
9 # Here, we're going to shoot messages through a set of things that can
12 # First, we're going to send mesages to receive.
13 # To do so, we'll first send a message to submit,
14 # then send messages to the newly created bugnumber.
17 use File::Temp qw(tempdir);
19 use Debbugs::MIME qw(create_mime_message);
20 use File::Basename qw(dirname basename);
21 # The test functions are placed here to make things easier
23 use DebbugsTest qw(:all);
25 use Encode qw(decode encode);
27 # HTTP::Server:::Simple defines a SIG{CHLD} handler that breaks system; undef it here.
31 %config = create_debbugs_configuration(debug => exists $ENV{DEBUG}?$ENV{DEBUG}:0);
37 my $sendmail_dir = $config{sendmail_dir};
38 my $spool_dir = $config{spool_dir};
39 my $config_dir = $config{config_dir};
43 diag("spool_dir: $spool_dir\n");
44 diag("config_dir: $config_dir\n");
45 diag("sendmail_dir: $sendmail_dir\n");
49 # We're going to use create mime message to create these messages, and
50 # then just send them to receive.
52 send_message(to=>'submit@bugs.something',
53 headers => [To => 'submit@bugs.something',
54 From => 'foo@bugs.something',
55 Subject => 'Submiting a bug',
57 body => <<EOF) or fail('Unable to send message');
64 # now we check to see that we have a bug, and nextnumber has been incremented
65 ok(-e "$spool_dir/db-h/01/1.log",'log file created');
66 ok(-e "$spool_dir/db-h/01/1.summary",'sumary file created');
67 ok(-e "$spool_dir/db-h/01/1.status",'status file created');
68 ok(-e "$spool_dir/db-h/01/1.report",'report file created');
70 # next, we check to see that (at least) the proper messages have been
71 # sent out. 1) ack to submitter 2) mail to maintainer
73 # This keeps track of the previous size of the sendmail directory
76 num_messages_sent($SD_SIZE,2,
78 'submit messages appear to have been sent out properly',
82 # now send a message to the bug
84 send_message(to => '1@bugs.something',
85 headers => [To => '1@bugs.something',
86 From => 'foo@bugs.something',
87 Subject => 'Sending a message to a bug',
89 body => <<EOF) or fail('sending message to 1@bugs.someting failed');
97 num_messages_sent($SD_SIZE,2,
99 '1@bugs.something messages appear to have been sent out properly');
101 # just check to see that control doesn't explode
102 send_message(to => 'control@bugs.something',
103 headers => [To => 'control@bugs.something',
104 From => 'foo@bugs.something',
105 Subject => 'Munging a bug',
107 body => <<EOF) or fail 'message to control@bugs.something failed';
114 num_messages_sent($SD_SIZE,1,
116 'control@bugs.something messages appear to have been sent out properly');
117 # now we need to check to make sure the control message was processed without errors
118 ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Munging a bug")) == 0,
119 'control@bugs.something message was parsed without errors');
120 # now we need to check to make sure that the control message actually did anything
121 # This is an eval because $ENV{DEBBUGS_CONFIG_FILE} isn't set at BEGIN{} time
122 eval "use Debbugs::Status qw(read_bug writebug);";
123 my $status = read_bug(bug=>1);
124 ok($status->{subject} eq 'new title','bug 1 retitled');
125 ok($status->{severity} eq 'wishlist','bug 1 wishlisted');
127 send_message(to => 'submit@bugs.something',
128 headers => [To => 'submit@bugs.something',
129 From => 'foo@bugs.something',
130 Subject => 'Testing submit at control',
132 body => <<EOF) or fail 'message to submit@bugs.something failed';
134 Control: retitle -1 this is a new title
137 ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Testing submit at control")) == 0,
138 'submit@bugs.something message was parsed without errors');
140 $status = read_bug(bug=>2);
141 ok($status->{subject} eq 'this is a new title','bug 2 retitled at submit@ time');
143 send_message(to => '1@bugs.something',
144 headers => [To => '1@bugs.something',
145 From => 'foo@bugs.something',
146 Subject => 'Testing control at 1@bugs.something',
148 body => <<EOF) or fail 'message to 1@bugs.something failed';
149 Control: retitle -1 this is now the title of bug 1
152 ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Testing control at 1@bugs.something")) == 0,
153 '1@bugs.something message was parsed without errors');
155 $status = read_bug(bug=>1);
156 ok($status->{subject} eq 'this is now the title of bug 1','bug 1 retitled at 1@ time');
160 # now we're going to go through and methododically test all of the control commands.
161 my @control_commands =
163 clone => {command => 'clone',
165 status_key => 'package',
166 status_value => 'foo',
169 severity_wishlist => {command => 'severity',
171 status_key => 'severity',
172 status_value => 'wishlist',
174 reassign_bar_baz => {command => 'reassign',
176 status_key => 'package',
177 status_value => 'bar,baz',
179 reassign_foo => {command => 'reassign',
181 status_key => 'package',
182 status_value => 'foo',
184 'found_1.0' => {command => 'found',
186 status_key => 'found_versions',
187 status_value => ['1.0'],
189 'notfound_1.0' => {command => 'notfound',
191 status_key => 'found_versions',
194 'found_1.0~5+1b2' => {command => 'found',
195 value => '1.0~5+1b2',
196 status_key => 'found_versions',
197 status_value => ['1.0~5+1b2'],
199 'notfound_1.0~5+1b2' => {command => 'notfound',
200 value => '1.0~5+1b2',
201 status_key => 'found_versions',
204 'fixed_1.1' => {command => 'fixed',
206 status_key => 'fixed_versions',
207 status_value => ['1.1'],
209 'notfixed_1.1' => {command => 'notfixed',
211 status_key => 'fixed_versions',
214 'found_1.0~5+1b2' => {command => 'found',
215 value => '1.0~5+1b2',
216 status_key => 'found_versions',
217 status_value => ['1.0~5+1b2'],
219 'fixed_1.2' => {command => 'fixed',
221 status_key => 'fixed_versions',
222 status_value => ['1.2'],
224 close => {command => 'close',
226 status_key => 'done',
227 status_value => 'foo@bugs.something',
229 'found_1.3' => {command => 'found',
231 status_key => 'done',
234 submitter_foo => {command => 'submitter',
235 value => 'foo@bar.com',
236 status_key => 'originator',
237 status_value => 'foo@bar.com',
240 forwarded_foo => {command => 'forwarded',
241 value => 'foo@bar.com',
242 status_key => 'forwarded',
243 status_value => 'foo@bar.com',
245 notforwarded => {command => 'notforwarded',
247 status_key => 'forwarded',
250 owner_foo => {command => 'owner',
251 value => 'foo@bar.com',
252 status_key => 'owner',
253 status_value => 'foo@bar.com',
255 noowner => {command => 'noowner',
257 status_key => 'owner',
260 merge => {command => 'merge',
262 status_key => 'mergedwith',
265 unmerge => {command => 'unmerge',
267 status_key => 'mergedwith',
270 forcemerge => {command => 'forcemerge',
272 status_key => 'mergedwith',
275 unmerge => {command => 'unmerge',
277 status_key => 'mergedwith',
280 block => {command => 'block',
282 status_key => 'blockedby',
285 unblock => {command => 'unblock',
287 status_key => 'blockedby',
290 summary => {command => 'summary',
292 status_key => 'summary',
293 status_value => 'This is a silly bug',
295 nosummary => {command => 'summary',
297 status_key => 'summary',
300 affects => {command => 'affects',
302 status_key => 'affects',
303 status_value => 'foo',
305 noaffects => {command => 'affects',
307 status_key => 'affects',
310 close => {command => 'close',
312 status_key => 'done',
313 status_value => 'foo@bugs.something',
315 archive => {command => 'archive',
317 status_key => 'owner',
319 location => 'archive',
321 unarchive => {command => 'unarchive',
323 status_key => 'owner',
326 tag => {command => 'tag',
328 status_key => 'keywords',
329 status_value => 'patch',
331 untag => {command => 'tag',
333 status_key => 'keywords',
336 plustag => {command => 'tag',
338 status_key => 'keywords',
339 status_value => 'patch',
341 utf8_retitle => {command => 'retitle',
342 value => 'Thïs is a ütff8 title [♥♡☙☎]',
343 status_key => 'subject',
344 status_value => decode("utf8",'Thïs is a ütff8 title [♥♡☙☎]'),
348 # In order for the archive/unarchive to work, we have to munge the summary file slightly
349 $status = read_bug(bug => 1);
350 $status->{unarchived} = time;
352 while (my ($command,$control_command) = splice(@control_commands,0,2)) {
353 # just check to see that control doesn't explode
354 $control_command->{value} = " $control_command->{value}" if length $control_command->{value}
355 and $control_command->{value} !~ /^\s/;
356 send_message(to => 'submit@bugs.something',
357 headers => [To => 'submit@bugs.something',
358 From => 'foo@bugs.something',
359 Subject => "Munging a bug with $command",
361 body => <<EOF) or fail 'message to control@bugs.something failed';
363 Control: $control_command->{command} 1$control_command->{value}
367 num_messages_sent($SD_SIZE,1,
369 'control@bugs.something messages appear to have been sent out properly');
370 # now we need to check to make sure the control message was processed without errors
371 ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Munging a bug with $command")) == 0,
372 'control@bugs.something'. "$command message was parsed without errors");
373 # now we need to check to make sure that the control message actually did anything
375 $status = read_bug(exists $control_command->{bug}?(bug => $control_command->{bug}):(bug=>1),
376 exists $control_command->{location}?(location => $control_command->{location}):(),
378 is_deeply($status->{$control_command->{status_key}},
379 $control_command->{status_value},
381 (exists $control_command->{bug}?$control_command->{bug}:1).
384 or fail(Dumper($status));