4 use Test::More tests => 21;
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);
26 # HTTP::Server:::Simple defines a SIG{CHLD} handler that breaks system; undef it here.
30 %config = create_debbugs_configuration(debug => exists $ENV{DEBUG}?$ENV{DEBUG}:0);
36 my $sendmail_dir = $config{sendmail_dir};
37 my $spool_dir = $config{spool_dir};
38 my $config_dir = $config{config_dir};
42 diag("spool_dir: $spool_dir\n");
43 diag("config_dir: $config_dir\n");
44 diag("sendmail_dir: $sendmail_dir\n");
48 # We're going to use create mime message to create these messages, and
49 # then just send them to receive.
51 send_message(to=>'submit@bugs.something',
52 headers => [To => 'submit@bugs.something',
53 From => 'foo@bugs.something',
54 Subject => 'Submiting a bug',
56 body => <<EOF) or fail('Unable to send message');
63 # now we check to see that we have a bug, and nextnumber has been incremented
64 ok(-e "$spool_dir/db-h/01/1.log",'log file created');
65 ok(-e "$spool_dir/db-h/01/1.summary",'sumary file created');
66 ok(-e "$spool_dir/db-h/01/1.status",'status file created');
67 ok(-e "$spool_dir/db-h/01/1.report",'report file created');
69 # next, we check to see that (at least) the proper messages have been
70 # sent out. 1) ack to submitter 2) mail to maintainer
72 # This keeps track of the previous size of the sendmail directory
74 my $SD_SIZE_NOW = dirsize($sendmail_dir);
75 ok($SD_SIZE_NOW-$SD_SIZE_PREV >= 2,'submit messages appear to have been sent out properly');
76 $SD_SIZE_PREV=$SD_SIZE_NOW;
78 # now send a message to the bug
80 send_message(to => '1@bugs.something',
81 headers => [To => '1@bugs.something',
82 From => 'foo@bugs.something',
83 Subject => 'Sending a message to a bug',
85 body => <<EOF) or fail('sending message to 1@bugs.someting failed');
92 $SD_SIZE_NOW = dirsize($sendmail_dir);
93 ok($SD_SIZE_NOW-$SD_SIZE_PREV >= 2,'1@bugs.something messages appear to have been sent out properly');
94 $SD_SIZE_PREV=$SD_SIZE_NOW;
96 # just check to see that control doesn't explode
97 send_message(to => 'control@bugs.something',
98 headers => [To => 'control@bugs.something',
99 From => 'foo@bugs.something',
100 Subject => 'Munging a bug',
102 body => <<EOF) or fail 'message to control@bugs.something failed';
108 $SD_SIZE_NOW = dirsize($sendmail_dir);
109 ok($SD_SIZE_NOW-$SD_SIZE_PREV >= 1,'control@bugs.something messages appear to have been sent out properly');
110 $SD_SIZE_PREV=$SD_SIZE_NOW;
111 # now we need to check to make sure the control message was processed without errors
112 ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Munging a bug")) == 0,
113 'control@bugs.something message was parsed without errors');
114 # now we need to check to make sure that the control message actually did anything
115 # This is an eval because $ENV{DEBBUGS_CONFIG_FILE} isn't set at BEGIN{} time
116 eval "use Debbugs::Status qw(read_bug writebug);";
117 my $status = read_bug(bug=>1);
118 ok($status->{subject} eq 'new title','bug 1 retitled');
119 ok($status->{severity} eq 'wishlist','bug 1 wishlisted');
121 # now we're going to go through and methododically test all of the control commands.
122 my @control_commands =
123 (close => {command => 'close',
125 status_key => 'done',
126 status_value => 'foo@bugs.something',
128 archive => {command => 'archive',
130 status_key => 'owner',
132 location => 'archive',
134 unarchive => {command => 'unarchive',
136 status_key => 'owner',
141 # In order for the archive/unarchive to work, we have to munge the summary file slightly
142 $status = read_bug(bug => 1);
143 $status->{unarchived} = time;
145 while (my ($command,$control_command) = splice(@control_commands,0,2)) {
146 # just check to see that control doesn't explode
147 $control_command->{value} = " $control_command->{value}" if length $control_command->{value}
148 and $control_command->{value} !~ /^\s/;
149 send_message(to => 'control@bugs.something',
150 headers => [To => 'control@bugs.something',
151 From => 'foo@bugs.something',
152 Subject => "Munging a bug with $command",
154 body => <<EOF) or fail 'message to control@bugs.something failed';
156 $control_command->{command} 1$control_command->{value}
160 $SD_SIZE_NOW = dirsize($sendmail_dir);
161 ok($SD_SIZE_NOW-$SD_SIZE_PREV >= 1,'control@bugs.something messages appear to have been sent out properly');
162 $SD_SIZE_PREV=$SD_SIZE_NOW;
163 # now we need to check to make sure the control message was processed without errors
164 ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Munging a bug with $command")) == 0,
165 'control@bugs.something'. "$command message was parsed without errors");
166 # now we need to check to make sure that the control message actually did anything
168 $status = read_bug(bug=>1,
169 exists $control_command->{location}?(location => $control_command->{location}):(),
171 is_deeply($status->{$control_command->{status_key}},$control_command->{status_value},"bug 1 $command")
172 or fail(Dumper($status));
175 # now we need to run expire, and make sure that bug is expired
177 # we punt and touch to set it to something that is archiveable
179 # set the access time to twice the remove age
180 my $old_time = time - 28*2*24*60*60;
182 system('touch','-d','@'.$old_time,"$spool_dir/db-h/01/1.log", );
183 system('touch','-d','@'.$old_time,"$spool_dir/db-h/01/1.summary",);
184 system('touch','-d','@'.$old_time,"$spool_dir/db-h/01/1.status", );
185 system('touch','-d','@'.$old_time,"$spool_dir/db-h/01/1.report", );
186 ok(system('scripts/expire') == 0,'expire completed successfully');
188 ok($status = read_bug(bug => 1,location => 'archive'),'read bug from archive correctly');