1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
#!/usr/bin/perl -T
#
# Test processing of multipart message bodies.
#
use strict;
use warnings;
use lib qw(. .. tests);
use Tools;
use Test::More tests => 29;
use IO::Scalar;
use Mail::Message::Body::Lines;
use Mail::Message::Body::Multipart;
use Mail::Message::Head::Complete;
my $body = Mail::Message::Body::Multipart->new
( transfer_encoding => '8bit'
, boundary => 'xyz'
);
is($body->boundary, 'xyz');
$body->boundary('part-separator');
is($body->boundary, 'part-separator');
is($body->mimeType, 'multipart/mixed');
my $h1 = Mail::Message::Head::Complete->new;
my $b1 = Mail::Message::Body::Lines->new
( data => ["p1 l1\n", "p1 l2\n" ]
, checked => 1
, mime_type => 'text/html'
, transfer_encoding => '8bit'
);
ok($b1, 'body 1');
is($b1->mimeType, 'text/html');
is($b1->transferEncoding, '8bit');
is($b1->disposition, 'none');
my $p1 = Mail::Message->new(head => $h1);
my $equals = $p1->body($b1)==$b1;
ok($equals);
is($p1->get('Content-Type'), 'text/html');
is($p1->get('Content-Transfer-Encoding'), '8bit');
ok(! defined $p1->get('Content-Disposition'));
my $h2 = Mail::Message::Head::Complete->new;
my $b2 = Mail::Message::Body::Lines->new
( data => ["p2 l1\n", "p2 l2\n", "p2 l3\n", "p2 l4\n" ]
, mime_type => 'text/plain'
, checked => 1
, transfer_encoding => '8bit'
);
ok($b2, 'body 2');
my $p2 = Mail::Message->new(head => $h2);
$equals = $p2->body($b2)==$b2;
ok($equals);
# Empty multipart
my $fakeout;
my $g = IO::Scalar->new(\$fakeout);
cmp_ok($body->parts, "==", 0);
$body->print($g);
is($fakeout, "--part-separator--\n");
# First attachment
$fakeout = '';
my $newbody = $body->attach($p1);
ok($newbody != $body);
cmp_ok($newbody->parts, "==", 1);
$newbody->print($g);
compare_message_prints($fakeout, <<'EXPECTED', 'print with attachment');
--part-separator
Content-Type: text/html
Content-Transfer-Encoding: 8bit
p1 l1
p1 l2
--part-separator--
EXPECTED
# Second attachment
my $newerbody = $newbody->attach($p2);
ok($newerbody != $newbody);
cmp_ok($newerbody->parts, "==", 2);
$fakeout = '';
$newerbody->print($g);
compare_message_prints($fakeout, <<'EXPECTED', 'print with two attachments');
--part-separator
Content-Type: text/html
Content-Transfer-Encoding: 8bit
p1 l1
p1 l2
--part-separator
Content-Type: text/plain
Content-Transfer-Encoding: 8bit
p2 l1
p2 l2
p2 l3
p2 l4
--part-separator--
EXPECTED
# Add preamble and epilogue
my $newestbody
= ref($newerbody)->new
( based_on => $newerbody
, preamble => Mail::Message::Body::Lines->new
( data => [ "preamb1\n", "preamb2\n" ]
, mime_type => 'text/html'
, charset => 'us-ascii'
, tranfer_encoding => '8bit'
)
, epilogue => Mail::Message::Body::Lines
->new(data => [ "epilogue\n" ])
);
ok($newestbody != $newbody);
$fakeout = '';
$newestbody->print($g);
compare_message_prints($fakeout, <<'EXPECTED', 'with preamble and epilogue');
preamb1
preamb2
--part-separator
Content-Type: text/html
Content-Transfer-Encoding: 8bit
p1 l1
p1 l2
--part-separator
Content-Type: text/plain
Content-Transfer-Encoding: 8bit
p2 l1
p2 l2
p2 l3
p2 l4
--part-separator--
epilogue
EXPECTED
# Body to message. The info on preamble is used to create a whole message
# header.
my $message = Mail::Message->buildFromBody($newestbody,
From => 'me', To => 'you', Date => 'now', 'Message-Id' => '<simple>');
$fakeout = '';
$message->print($g);
compare_message_prints($fakeout, <<'EXPECTED', 'build from multipart body');
From: me
To: you
Date: now
Message-Id: <simple>
Content-Type: multipart/mixed; boundary="part-separator"
Content-Transfer-Encoding: 8bit
MIME-Version: 1.0
preamb1
preamb2
--part-separator
Content-Type: text/html
Content-Transfer-Encoding: 8bit
p1 l1
p1 l2
--part-separator
Content-Type: text/plain
Content-Transfer-Encoding: 8bit
p2 l1
p2 l2
p2 l3
p2 l4
--part-separator--
epilogue
EXPECTED
my $m1 = Mail::Message->buildFromBody($body, From => 'me', To => 'you',
Date => 'now', 'Message-Id' => '<simple>');
$fakeout = '';
$m1->print($g);
compare_message_prints($fakeout, <<'EXPECTED', 'build from multipart body');
From: me
To: you
Date: now
Message-Id: <simple>
Content-Type: multipart/mixed; boundary="part-separator"
Content-Transfer-Encoding: 8bit
MIME-Version: 1.0
--part-separator--
EXPECTED
my $m2 = Mail::Message->buildFromBody($b1, From => 'me', To => 'you',
Date => 'now', 'Message-Id' => '<simple>');
$fakeout = '';
$m2->print($g);
compare_message_prints($fakeout, <<'EXPECTED', 'build from multipart body');
From: me
To: you
Date: now
Message-Id: <simple>
Content-Type: text/html
Content-Transfer-Encoding: 8bit
MIME-Version: 1.0
p1 l1
p1 l2
EXPECTED
#
# Check copying.
#
my $m3 = $message->clone;
ok($m3);
ok($m3 != $message);
cmp_ok($m3->parts , "==", $message->parts);
|