3 use Test::More tests => 9;
10 # Here, we're going to shoot messages through a set of things that can
13 # First, we're going to send mesages to receive.
14 # To do so, we'll first send a message to submit,
15 # then send messages to the newly created bugnumber.
18 use File::Temp qw(tempdir);
20 use Debbugs::MIME qw(create_mime_message);
21 use File::Basename qw(dirname basename);
22 # The test functions are placed here to make things easier
24 use DebbugsTest qw(:all);
26 use Encode qw(decode encode decode_utf8 encode_utf8);
28 # HTTP::Server:::Simple defines a SIG{CHLD} handler that breaks system; undef it here.
32 %config = create_debbugs_configuration(debug => exists $ENV{DEBUG}?$ENV{DEBUG}:0);
38 my $sendmail_dir = $config{sendmail_dir};
39 my $spool_dir = $config{spool_dir};
40 my $config_dir = $config{config_dir};
44 diag("spool_dir: $spool_dir\n");
45 diag("config_dir: $config_dir\n");
46 diag("sendmail_dir: $sendmail_dir\n");
50 # We're going to use create mime message to create these messages, and
51 # then just send them to receive.
53 send_message(to=>'submit@bugs.something',
54 headers => [To => 'submit@bugs.something',
55 From => 'föoff@bugs.something',
56 Subject => 'Submiting a bug',
58 body => <<EOF,attachments => [{Type=>"text/plain",Charset=>"utf-8",Data=><<EOF2}]) or fail('Unable to send message');
64 This is the silly bug's test ütff8 attachment.
69 # now we check to see that we have a bug, and nextnumber has been incremented
70 ok(-e "$spool_dir/db-h/01/1.log",'log file created');
71 ok(-e "$spool_dir/db-h/01/1.summary",'sumary file created');
72 ok(-e "$spool_dir/db-h/01/1.status",'status file created');
73 ok(-e "$spool_dir/db-h/01/1.report",'report file created');
74 ok(system('sh','-c','[ $(grep "attachment." '.$spool_dir.'/db-h/01/1.log|grep -v "ütff8"|wc -l) -eq 0 ]') == 0,
75 'Everything attachment is escaped properly');
77 # next, we check to see that (at least) the proper messages have been
78 # sent out. 1) ack to submitter 2) mail to maintainer
80 # This keeps track of the previous size of the sendmail directory
83 num_messages_sent($SD_SIZE,2,
85 'submit messages appear to have been sent out properly',
89 # now send a message to the bug
91 send_message(to => '1@bugs.something',
92 headers => [To => '1@bugs.something',
93 From => 'föoff@bugs.something',
94 Subject => 'Sending a message to a bug',
96 body => <<EOF) or fail('sending message to 1@bugs.someting failed');
104 num_messages_sent($SD_SIZE,2,
106 '1@bugs.something messages appear to have been sent out properly');
108 # just check to see that control doesn't explode
109 send_message(to => 'control@bugs.something',
110 headers => [To => 'control@bugs.something',
111 From => 'föoff@bugs.something',
112 Subject => 'Munging a bug',
114 body => <<EOF) or fail 'message to control@bugs.something failed';
116 retitle 1 ütff8 title encoding test
121 num_messages_sent($SD_SIZE,1,
123 'control@bugs.something messages appear to have been sent out properly');
124 # now we need to check to make sure the control message was processed without errors
125 # now we need to check to make sure that the control message actually did anything
126 # This is an eval because $ENV{DEBBUGS_CONFIG_FILE} isn't set at BEGIN{} time
127 eval "use Debbugs::Status qw(read_bug writebug);";
128 ok(system('bin/debbugs-rebuild-index.db')==0,'debbugs-rebuild-index seems to work');