]> git.donarmstrong.com Git - debbugs.git/blob - t/14_control_at_submit.t
38ea9d864181f78c2c3560be0a8b3b39824e9923
[debbugs.git] / t / 14_control_at_submit.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 => 120;
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 send_message(to => 'submit@bugs.something',
128              headers => [To   => 'submit@bugs.something',
129                          From => 'foo@bugs.something',
130                          Subject => 'Testing submit at control',
131                         ],
132              body => <<EOF) or fail 'message to submit@bugs.something failed';
133 Package: foo
134 Control: retitle -1 this is a new title
135 EOF
136
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');
139
140 $status = read_bug(bug=>2);
141 ok($status->{subject} eq 'this is a new title','bug 2 retitled at submit@ time');
142
143
144
145 # now we're going to go through and methododically test all of the control commands.
146 my @control_commands =
147      (
148        clone        => {command => 'clone',
149                        value   => '-2',
150                        status_key => 'package',
151                        status_value => 'foo',
152                        bug          => '4',
153                       },
154        severity_wishlist => {command => 'severity',
155                             value   => 'wishlist',
156                             status_key => 'severity',
157                             status_value => 'wishlist',
158                            },
159        reassign_bar_baz => {command => 'reassign',
160                            value   => 'bar,baz',
161                            status_key => 'package',
162                            status_value => 'bar,baz',
163                           },
164        reassign_foo => {command => 'reassign',
165                        value   => 'foo',
166                        status_key => 'package',
167                        status_value => 'foo',
168                       },
169        'found_1.0'        => {command => 'found',
170                              value   => '1.0',
171                              status_key => 'found_versions',
172                              status_value => ['1.0'],
173                             },
174        'notfound_1.0'     => {command => 'notfound',
175                              value   => '1.0',
176                              status_key => 'found_versions',
177                              status_value => [],
178                             },
179        'found_1.0~5+1b2'  => {command => 'found',
180                              value   => '1.0~5+1b2',
181                              status_key => 'found_versions',
182                              status_value => ['1.0~5+1b2'],
183                             },
184        'notfound_1.0~5+1b2' => {command => 'notfound',
185                                value   => '1.0~5+1b2',
186                                status_key => 'found_versions',
187                                status_value => [],
188                               },
189        'fixed_1.1'        => {command => 'fixed',
190                              value   => '1.1',
191                              status_key => 'fixed_versions',
192                              status_value => ['1.1'],
193                             },
194        'notfixed_1.1'     => {command => 'notfixed',
195                              value   => '1.1',
196                              status_key => 'fixed_versions',
197                              status_value => [],
198                             },
199        'found_1.0~5+1b2'  => {command => 'found',
200                              value   => '1.0~5+1b2',
201                              status_key => 'found_versions',
202                              status_value => ['1.0~5+1b2'],
203                             },
204        'fixed_1.2'        => {command => 'fixed',
205                              value   => '1.2',
206                              status_key => 'fixed_versions',
207                              status_value => ['1.2'],
208                             },
209        close              => {command => 'close',
210                              value   => '',
211                              status_key => 'done',
212                              status_value => 'foo@bugs.something',
213                             },
214        'found_1.3'        => {command => 'found',
215                              value   => '1.3',
216                              status_key => 'done',
217                              status_value => '',
218                             },
219        submitter_foo      => {command => 'submitter',
220                              value   => 'foo@bar.com',
221                              status_key => 'originator',
222                              status_value => 'foo@bar.com',
223                             },
224  
225        forwarded_foo      => {command => 'forwarded',
226                              value   => 'foo@bar.com',
227                              status_key => 'forwarded',
228                              status_value => 'foo@bar.com',
229                             },
230        notforwarded       => {command => 'notforwarded',
231                              value   => '',
232                              status_key => 'forwarded',
233                              status_value => '',
234                             },
235        owner_foo          => {command => 'owner',
236                              value   => 'foo@bar.com',
237                              status_key => 'owner',
238                              status_value => 'foo@bar.com',
239                             },
240        noowner      => {command => 'noowner',
241                        value   => '',
242                        status_key => 'owner',
243                        status_value => '',
244                       },
245        merge        => {command => 'merge',
246                        value   => '1 4',
247                        status_key => 'mergedwith',
248                        status_value => '4',
249                       },
250        unmerge      => {command => 'unmerge',
251                        value   => '',
252                        status_key => 'mergedwith',
253                        status_value => '',
254                       },
255        forcemerge   => {command => 'forcemerge',
256                        value   => '4',
257                        status_key => 'mergedwith',
258                        status_value => '4',
259                       },
260        unmerge      => {command => 'unmerge',
261                        value   => '',
262                        status_key => 'mergedwith',
263                        status_value => '',
264                       },
265        block        => {command => 'block',
266                        value   => ' with 2',
267                        status_key => 'blockedby',
268                        status_value => '2',
269                       },
270        unblock      => {command => 'unblock',
271                        value   => ' with 2',
272                        status_key => 'blockedby',
273                        status_value => '',
274                       },
275        summary      => {command => 'summary',
276                        value   => '5',
277                        status_key => 'summary',
278                        status_value => 'This is a silly bug',
279                       },
280        nosummary    => {command => 'summary',
281                        value   => '',
282                        status_key => 'summary',
283                        status_value => '',
284                       },
285        affects      => {command => 'affects',
286                        value   => 'foo',
287                        status_key => 'affects',
288                        status_value => 'foo',
289                       },
290        noaffects    => {command => 'affects',
291                        value   => '',
292                        status_key => 'affects',
293                        status_value => '',
294                       },
295        close        => {command => 'close',
296                        value   => '',
297                        status_key => 'done',
298                        status_value => 'foo@bugs.something',
299                       },
300        archive      => {command => 'archive',
301                        value   => '',
302                        status_key => 'owner',
303                        status_value => '',
304                        location => 'archive',
305                       },
306        unarchive    => {command => 'unarchive',
307                        value   => '',
308                        status_key => 'owner',
309                        status_value => '',
310                       },
311        tag          => {command => 'tag',
312                        value   => ' = patch',
313                        status_key => 'keywords',
314                        status_value => 'patch',
315                       },
316        untag        => {command => 'tag',
317                        value   => ' - patch',
318                        status_key => 'keywords',
319                        status_value => '',
320                       },
321        plustag      => {command => 'tag',
322                        value   => ' + patch',
323                        status_key => 'keywords',
324                        status_value => 'patch',
325                       },
326        utf8_retitle => {command => 'retitle',
327                        value   => 'Thïs is a ütff8 title [♥♡☙☎]',
328                        status_key => 'subject',
329                        status_value => decode("utf8",'Thïs is a ütff8 title [♥♡☙☎]'),
330                       },
331      );
332
333 # In order for the archive/unarchive to work, we have to munge the summary file slightly
334 $status = read_bug(bug => 1);
335 $status->{unarchived} = time;
336 writebug(1,$status);
337 while (my ($command,$control_command) = splice(@control_commands,0,2)) {
338      # just check to see that control doesn't explode
339      $control_command->{value} = " $control_command->{value}" if length $control_command->{value}
340           and $control_command->{value} !~ /^\s/;
341      send_message(to => 'submit@bugs.something',
342                   headers => [To   => 'submit@bugs.something',
343                               From => 'foo@bugs.something',
344                               Subject => "Munging a bug with $command",
345                              ],
346                   body => <<EOF) or fail 'message to control@bugs.something failed';
347 Package: foo
348 Control: $control_command->{command} 1$control_command->{value}
349 EOF
350                                   ;
351      $SD_SIZE =
352          num_messages_sent($SD_SIZE,1,
353                            $sendmail_dir,
354                            'control@bugs.something messages appear to have been sent out properly');
355      # now we need to check to make sure the control message was processed without errors
356      ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Munging a bug with $command")) == 0,
357         'control@bugs.something'. "$command message was parsed without errors");
358      # now we need to check to make sure that the control message actually did anything
359      my $status;
360      $status = read_bug(exists $control_command->{bug}?(bug => $control_command->{bug}):(bug=>1),
361                         exists $control_command->{location}?(location => $control_command->{location}):(),
362                        );
363      is_deeply($status->{$control_command->{status_key}},
364                $control_command->{status_value},
365                "bug " .
366                (exists $control_command->{bug}?$control_command->{bug}:1).
367                " $command"
368               )
369           or fail(Dumper($status));
370 }
371