]> git.donarmstrong.com Git - debbugs.git/blob - t/06_mail_handling.t
9489af01a3d8407ecc81a141ae6ff26511ab9eb0
[debbugs.git] / t / 06_mail_handling.t
1 # -*- mode: cperl;-*-
2 # $Id: 05_mail.t,v 1.1 2005/08/17 21:46:17 don Exp $
3
4 use Test::More tests => 126;
5
6 use warnings;
7 use strict;
8
9 # Here, we're going to shoot messages through a set of things that can
10 # happen.
11
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.
15
16 use IO::File;
17 use File::Temp qw(tempdir);
18 use Cwd qw(getcwd);
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
22 use lib qw(t/lib);
23 use DebbugsTest qw(:all);
24 use Data::Dumper;
25 use Encode qw(decode encode);
26
27 # HTTP::Server:::Simple defines a SIG{CHLD} handler that breaks system; undef it here.
28 $SIG{CHLD} = sub {};
29 my %config;
30 eval {
31      %config = create_debbugs_configuration(debug => exists $ENV{DEBUG}?$ENV{DEBUG}:0);
32 };
33 if ($@) {
34      BAIL_OUT($@);
35 }
36
37 my $sendmail_dir = $config{sendmail_dir};
38 my $spool_dir = $config{spool_dir};
39 my $config_dir = $config{config_dir};
40
41 END{
42      if ($ENV{DEBUG}) {
43           diag("spool_dir:   $spool_dir\n");
44           diag("config_dir:   $config_dir\n");
45           diag("sendmail_dir: $sendmail_dir\n");
46      }
47 }
48
49 # We're going to use create mime message to create these messages, and
50 # then just send them to receive.
51
52 send_message(to=>'submit@bugs.something',
53              headers => [To   => 'submit@bugs.something',
54                          From => 'foo@bugs.something',
55                          Subject => 'Submiting a bug',
56                         ],
57              body => <<EOF) or fail('Unable to send message');
58 Package: foo
59 Severity: normal
60
61 This is a silly bug
62 EOF
63
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');
69
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
72
73 # This keeps track of the previous size of the sendmail directory
74 my $SD_SIZE = 0;
75 $SD_SIZE =
76     num_messages_sent($SD_SIZE,2,
77                       $sendmail_dir,
78                       'submit messages appear to have been sent out properly',
79                      );
80
81
82 # now send a message to the bug
83
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',
88                         ],
89              body => <<EOF) or fail('sending message to 1@bugs.someting failed');
90 Package: foo
91 Severity: normal
92
93 This is a silly bug
94 EOF
95
96 $SD_SIZE =
97     num_messages_sent($SD_SIZE,2,
98                       $sendmail_dir,
99                       '1@bugs.something messages appear to have been sent out properly');
100
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',
106                         ],
107              body => <<EOF) or fail 'message to control@bugs.something failed';
108 severity 1 wishlist
109 retitle 1 new title
110 thanks
111 EOF
112
113 $SD_SIZE =
114    num_messages_sent($SD_SIZE,1,
115                      $sendmail_dir,
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');
126
127 # now we're going to go through and methododically test all of the control commands.
128 my @control_commands =
129      (
130       severity_wishlist => {command => 'severity',
131                             value   => 'wishlist',
132                             status_key => 'severity',
133                             status_value => 'wishlist',
134                            },
135       reassign_bar_baz => {command => 'reassign',
136                            value   => 'bar,baz',
137                            status_key => 'package',
138                            status_value => 'bar,baz',
139                           },
140       reassign_foo => {command => 'reassign',
141                        value   => 'foo',
142                        status_key => 'package',
143                        status_value => 'foo',
144                       },
145       'found_1.0'        => {command => 'found',
146                              value   => '1.0',
147                              status_key => 'found_versions',
148                              status_value => ['1.0'],
149                             },
150       'notfound_1.0'     => {command => 'notfound',
151                              value   => '1.0',
152                              status_key => 'found_versions',
153                              status_value => [],
154                             },
155       'found_1.0~5+1b2'  => {command => 'found',
156                              value   => '1.0~5+1b2',
157                              status_key => 'found_versions',
158                              status_value => ['1.0~5+1b2'],
159                             },
160       'notfound_1.0~5+1b2' => {command => 'notfound',
161                                value   => '1.0~5+1b2',
162                                status_key => 'found_versions',
163                                status_value => [],
164                               },
165       'fixed_1.1'        => {command => 'fixed',
166                              value   => '1.1',
167                              status_key => 'fixed_versions',
168                              status_value => ['1.1'],
169                             },
170       'notfixed_1.1'     => {command => 'notfixed',
171                              value   => '1.1',
172                              status_key => 'fixed_versions',
173                              status_value => [],
174                             },
175       'found_1.0~5+1b2'  => {command => 'found',
176                              value   => '1.0~5+1b2',
177                              status_key => 'found_versions',
178                              status_value => ['1.0~5+1b2'],
179                             },
180       'fixed_1.2'        => {command => 'fixed',
181                              value   => '1.2',
182                              status_key => 'fixed_versions',
183                              status_value => ['1.2'],
184                             },
185       close              => {command => 'close',
186                              value   => '',
187                              status_key => 'done',
188                              status_value => 'foo@bugs.something',
189                             },
190       'found_1.3'        => {command => 'found',
191                              value   => '1.3',
192                              status_key => 'done',
193                              status_value => '',
194                             },
195       submitter_foo      => {command => 'submitter',
196                              value   => 'foo@bar.com',
197                              status_key => 'originator',
198                              status_value => 'foo@bar.com',
199                             },
200
201       forwarded_foo      => {command => 'forwarded',
202                              value   => 'foo@bar.com',
203                              status_key => 'forwarded',
204                              status_value => 'foo@bar.com',
205                             },
206       owner_foo          => {command => 'owner',
207                              value   => 'foo@bar.com',
208                              status_key => 'owner',
209                              status_value => 'foo@bar.com',
210                             },
211       owner_replyto      => {command => 'owner',
212                              value   => '!',
213                              status_key => 'owner',
214                              status_value => 'foo@bugs.something',
215                             },
216       noowner      => {command => 'noowner',
217                        value   => '',
218                        status_key => 'owner',
219                        status_value => '',
220                       },
221       clone        => {command => 'clone',
222                        value   => '-1',
223                        status_key => 'package',
224                        status_value => 'foo',
225                        bug          => '2',
226                       },
227       merge        => {command => 'merge',
228                        value   => '1 2',
229                        status_key => 'mergedwith',
230                        status_value => '2',
231                       },
232       unmerge      => {command => 'unmerge',
233                        value   => '',
234                        status_key => 'mergedwith',
235                        status_value => '',
236                       },
237       forcemerge   => {command => 'forcemerge',
238                        value   => '2',
239                        status_key => 'mergedwith',
240                        status_value => '2',
241                       },
242       unmerge      => {command => 'unmerge',
243                        value   => '',
244                        status_key => 'mergedwith',
245                        status_value => '',
246                       },
247       block        => {command => 'block',
248                        value   => ' with 2',
249                        status_key => 'blockedby',
250                        status_value => '2',
251                       },
252       unblock      => {command => 'unblock',
253                        value   => ' with 2',
254                        status_key => 'blockedby',
255                        status_value => '',
256                       },
257       summary      => {command => 'summary',
258                        value   => '5',
259                        status_key => 'summary',
260                        status_value => 'This is a silly bug',
261                       },
262       nosummary    => {command => 'summary',
263                        value   => '',
264                        status_key => 'summary',
265                        status_value => '',
266                       },
267       outlook      => {command => 'outlook',
268                        value   => '5',
269                        status_key => 'outlook',
270                        status_value => 'This is a silly bug',
271                       },
272       nooutlook    => {command => 'outlook',
273                        value   => '',
274                        status_key => 'outlook',
275                        status_value => '',
276                       },
277       affects      => {command => 'affects',
278                        value   => 'foo',
279                        status_key => 'affects',
280                        status_value => 'foo',
281                       },
282       noaffects    => {command => 'affects',
283                        value   => '',
284                        status_key => 'affects',
285                        status_value => '',
286                       },
287       close        => {command => 'close',
288                        value   => '',
289                        status_key => 'done',
290                        status_value => 'foo@bugs.something',
291                       },
292       archive      => {command => 'archive',
293                        value   => '',
294                        status_key => 'owner',
295                        status_value => '',
296                        location => 'archive',
297                       },
298       unarchive    => {command => 'unarchive',
299                        value   => '',
300                        status_key => 'owner',
301                        status_value => '',
302                       },
303       tag          => {command => 'tag',
304                        value   => ' = patch',
305                        status_key => 'keywords',
306                        status_value => 'patch',
307                       },
308       untag        => {command => 'tag',
309                        value   => ' - patch',
310                        status_key => 'keywords',
311                        status_value => '',
312                       },
313       plustag      => {command => 'tag',
314                        value   => ' + patch',
315                        status_key => 'keywords',
316                        status_value => 'patch',
317                       },
318       utf8_retitle => {command => 'retitle',
319                        value   => 'Thïs is a ütff8 title [♥♡☙☎]',
320                        status_key => 'subject',
321                        status_value => decode("utf8",'Thïs is a ütff8 title [♥♡☙☎]'),
322                       },
323      );
324
325 # In order for the archive/unarchive to work, we have to munge the summary file slightly
326 $status = read_bug(bug => 1);
327 $status->{unarchived} = time;
328 writebug(1,$status);
329 while (my ($command,$control_command) = splice(@control_commands,0,2)) {
330      # just check to see that control doesn't explode
331      $control_command->{value} = " $control_command->{value}" if length $control_command->{value}
332           and $control_command->{value} !~ /^\s/;
333      send_message(to => 'control@bugs.something',
334                   headers => [To   => 'control@bugs.something',
335                               From => 'foo@bugs.something',
336                               Subject => "Munging a bug with $command",
337                              ],
338                   body => <<EOF) or fail 'message to control@bugs.something failed';
339 debug 10
340 $control_command->{command} 1$control_command->{value}
341 thanks
342 EOF
343                                   ;
344      $SD_SIZE =
345          num_messages_sent($SD_SIZE,1,
346                            $sendmail_dir,
347                            'control@bugs.something messages appear to have been sent out properly');
348      # now we need to check to make sure the control message was processed without errors
349      ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Munging a bug with $command")) == 0,
350         'control@bugs.something'. "$command message was parsed without errors");
351      # now we need to check to make sure that the control message actually did anything
352      my $status;
353      $status = read_bug(exists $control_command->{bug}?(bug => $control_command->{bug}):(bug=>1),
354                         exists $control_command->{location}?(location => $control_command->{location}):(),
355                        );
356      is_deeply($status->{$control_command->{status_key}},
357                $control_command->{status_value},
358                "bug " .
359                (exists $control_command->{bug}?$control_command->{bug}:1).
360                " $command"
361               )
362           or fail(Dumper($status));
363 }
364
365 # verify that archive/unarchive can then be modified afterwards
366
367 send_message(to => 'control@bugs.something',
368              headers => [To   => 'control@bugs.something',
369                          From => 'foo@bugs.something',
370                          Subject => "Munging a bug with unarchivearchive",
371                         ],
372              body => <<'EOF') or fail 'message to control@bugs.something failed';
373 debug 10
374 archive 1
375 unarchive 1
376 submitter 1 bar@baz.com
377 thanks
378 EOF
379                                   ;
380 $SD_SIZE =
381     num_messages_sent($SD_SIZE,1,
382                       $sendmail_dir,
383                       'control@bugs.something messages appear to have been sent out properly');
384 # now we need to check to make sure the control message was processed without errors
385 ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Munging a bug with unarchivearchive")) == 0,
386    'control@bugs.something'. "unarchive/archive message was parsed without errors");