]> git.donarmstrong.com Git - debbugs.git/blob - t/13_utf8_mail.t
abstract out create config in tests
[debbugs.git] / t / 13_utf8_mail.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 => 13;
5
6 use warnings;
7 use strict;
8
9 use utf8;
10
11 # Here, we're going to shoot messages through a set of things that can
12 # happen.
13
14 # First, we're going to send mesages to receive.
15 # To do so, we'll first send a message to submit,
16 # then send messages to the newly created bugnumber.
17
18 use IO::File;
19 use File::Temp qw(tempdir);
20 use Cwd qw(getcwd);
21 use Debbugs::MIME qw(create_mime_message);
22 use File::Basename qw(dirname basename);
23 # The test functions are placed here to make things easier
24 use lib qw(t/lib);
25 use DebbugsTest qw(:all);
26 use Data::Dumper;
27 use Encode qw(decode encode decode_utf8 encode_utf8);
28
29 # HTTP::Server:::Simple defines a SIG{CHLD} handler that breaks system; undef it here.
30 $SIG{CHLD} = sub {};
31 my %config;
32 eval {
33      %config = create_debbugs_configuration();
34 };
35 if ($@) {
36      BAIL_OUT($@);
37 }
38
39 my $sendmail_dir = $config{sendmail_dir};
40 my $spool_dir = $config{spool_dir};
41 my $config_dir = $config{config_dir};
42
43
44
45 # We're going to use create mime message to create these messages, and
46 # then just send them to receive.
47
48 send_message(to=>'submit@bugs.something',
49              headers => [To   => 'submit@bugs.something',
50                          From => 'föoff@bugs.something',
51                          Subject => 'Submiting a bug',
52                         ],
53              body => <<EOF,attachments => [{Type=>"text/plain",Charset=>"utf-8",Data=>encode_utf8(<<EOF2)}]) or fail('Unable to send message');
54 Package: foo
55 Severity: normal
56
57 This is a silly bug
58 EOF
59 This is the silly bug's test ütff8 attachment.
60 EOF2
61
62
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 ok(system('sh','-c','[ $(grep "attachment." '.$spool_dir.'/db-h/01/1.log|grep -v "ütff8"|wc -l) -eq 0 ]') == 0,
70    'Everything attachment is escaped properly');
71
72 # next, we check to see that (at least) the proper messages have been
73 # sent out. 1) ack to submitter 2) mail to maintainer
74
75 # This keeps track of the previous size of the sendmail directory
76 my $SD_SIZE = 0;
77 $SD_SIZE =
78     num_messages_sent($SD_SIZE,2,
79                       $sendmail_dir,
80                       'submit messages appear to have been sent out properly',
81                      );
82
83
84 # now send a message to the bug
85
86 send_message(to => '1@bugs.something',
87              headers => [To   => '1@bugs.something',
88                          From => 'föoff@bugs.something',
89                          Subject => 'Sending a message to a bug',
90                         ],
91              body => <<EOF) or fail('sending message to 1@bugs.someting failed');
92 Package: foo
93 Severity: normal
94
95 This is a silly bug
96 EOF
97
98 $SD_SIZE =
99     num_messages_sent($SD_SIZE,2,
100                       $sendmail_dir,
101                       '1@bugs.something messages appear to have been sent out properly');
102
103 # just check to see that control doesn't explode
104 send_message(to => 'control@bugs.something',
105              headers => [To   => 'control@bugs.something',
106                          From => 'föoff@bugs.something',
107                          Subject => 'Munging a bug',
108                         ],
109              body => <<EOF) or fail 'message to control@bugs.something failed';
110 severity 1 wishlist
111 retitle 1 ütff8 title encoding test
112 thanks
113 EOF
114
115 $SD_SIZE =
116    num_messages_sent($SD_SIZE,1,
117                      $sendmail_dir,
118                      'control@bugs.something messages appear to have been sent out properly');
119 # now we need to check to make sure the control message was processed without errors
120 ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Munging a bug")) == 0,
121    'control@bugs.something message was parsed without errors');
122 # now we need to check to make sure that the control message actually did anything
123 # This is an eval because $ENV{DEBBUGS_CONFIG_FILE} isn't set at BEGIN{} time
124 eval "use Debbugs::Status qw(read_bug writebug);";
125 my $status = read_bug(bug=>1);
126 ok($status->{subject} eq 'ütff8 title encoding test','bug 1 retitled');
127 ok($status->{severity} eq 'wishlist','bug 1 wishlisted');
128 ok(system('sh','-c','[ $(egrep "retitle.*encoding test" '.$spool_dir.'/db-h/01/1.log|grep -v "=C3=BCt=EF=AC=808"|wc -l) -eq 0 ]') == 0,
129    'Control messages escaped properly');
130 ok(system('sh','-c',encode_utf8('grep -q "föoff@bugs.something" '.$spool_dir.'/index.db'))==0,
131    'index.db not double escaped');