opt
/
alt
/
php72
/
usr
/
share
/
pear
/
test
/
Mail_Mime
/
tests
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
class-filename.phpt
242 bytes
Rename
Delete
content_transfer_encoding.phpt
924 bytes
Rename
Delete
encoding_case.phpt
244 bytes
Rename
Delete
headers_with_mbstring.phpt
8.65 KB
Rename
Delete
headers_without_mbstring.phpt
8.32 KB
Rename
Delete
qp_encoding_test.phpt
3.47 KB
Rename
Delete
sleep_wakeup_EOL-bug3488-part1.phpt
545 bytes
Rename
Delete
sleep_wakeup_EOL-bug3488-part2.phpt
586 bytes
Rename
Delete
test_Bug_10596_1.phpt
296 bytes
Rename
Delete
test_Bug_10816_1.phpt
570 bytes
Rename
Delete
test_Bug_10999_1.phpt
491 bytes
Rename
Delete
test_Bug_11381.phpt
557 bytes
Rename
Delete
test_Bug_11731.phpt
684 bytes
Rename
Delete
test_Bug_12165.phpt
381 bytes
Rename
Delete
test_Bug_12385_1.phpt
539 bytes
Rename
Delete
test_Bug_12411.phpt
649 bytes
Rename
Delete
test_Bug_12466.phpt
445 bytes
Rename
Delete
test_Bug_13032.phpt
539 bytes
Rename
Delete
test_Bug_13444.phpt
670 bytes
Rename
Delete
test_Bug_13962.phpt
367 bytes
Rename
Delete
test_Bug_14529.phpt
521 bytes
Rename
Delete
test_Bug_14779.phpt
489 bytes
Rename
Delete
test_Bug_14780.phpt
351 bytes
Rename
Delete
test_Bug_15320.phpt
462 bytes
Rename
Delete
test_Bug_16539.phpt
7.34 KB
Rename
Delete
test_Bug_17025.phpt
412 bytes
Rename
Delete
test_Bug_17175.phpt
695 bytes
Rename
Delete
test_Bug_18083.phpt
592 bytes
Rename
Delete
test_Bug_18772.phpt
880 bytes
Rename
Delete
test_Bug_19497.phpt
547 bytes
Rename
Delete
test_Bug_20226.phpt
341 bytes
Rename
Delete
test_Bug_20273.phpt
302 bytes
Rename
Delete
test_Bug_20563.phpt
378 bytes
Rename
Delete
test_Bug_20564.phpt
270 bytes
Rename
Delete
test_Bug_21027.phpt
7.12 KB
Rename
Delete
test_Bug_21098.phpt
390 bytes
Rename
Delete
test_Bug_21205.phpt
1.28 KB
Rename
Delete
test_Bug_21206.phpt
590 bytes
Rename
Delete
test_Bug_21255.phpt
352 bytes
Rename
Delete
test_Bug_3513_1.phpt
475 bytes
Rename
Delete
test_Bug_3513_2.phpt
567 bytes
Rename
Delete
test_Bug_3513_3.phpt
631 bytes
Rename
Delete
test_Bug_7561_1.phpt
645 bytes
Rename
Delete
test_Bug_8386_1.phpt
551 bytes
Rename
Delete
test_Bug_8541_1.phpt
499 bytes
Rename
Delete
test_Bug_9722_1.phpt
360 bytes
Rename
Delete
test_Bug_GH16.phpt
1.56 KB
Rename
Delete
test_Bug_GH19.phpt
997 bytes
Rename
Delete
test_Bug_GH26.phpt
755 bytes
Rename
Delete
test_linebreak_dot.phpt
1.65 KB
Rename
Delete
test_linebreak_larger_76.phpt
2.25 KB
Rename
Delete
--TEST-- Bug #21027 Calendar support along with attachments and html images --SKIPIF-- --FILE-- <?php require_once('Mail/mime.php'); $txtBody = 'Hi, this is Plain Text Body.'; $htmlBody = '<div>This is HTML body.</div>'; $icsText = 'BEGIN:VCALENDAR VERSION:2.0 PRODID:-//icalcreator//NONSGML iCalcreator 2.22// METHOD:REQUEST BEGIN:VEVENT UID:77@localhost DTSTAMP:20160208T170811Z ATTENDEE;CUTYPE=INDIVIDUAL;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP= TRUE;CN=Jacob Alvarez:MAILTO:fake1@mailinator.com CREATED:20160208T170810Z DTSTART:20160215T180000Z DTEND:20160215T190000Z ORGANIZER;CN=-:MAILTO:fake2@mailinator.com SEQUENCE:1 STATUS:CONFIRMED SUMMARY:Prueba 69 TRANSP:OPAQUE URL:http://localhost/event/77 END:VEVENT END:VCALENDAR'; function printPartsStartAndEnd($body) { $matches = array(); preg_match_all('/--(=_[a-z0-9]+)--|Content-Type: ([^;\r\n]+)/', $body, $matches); $tab = " "; foreach ($matches[0] as $match){ if (strpos($match, '--') === false) { printf("%s%s\n", $tab, $match); if (stripos($match, "multipart")) { $tab .= " "; } } else { $tab = substr($tab, 0, -4); printf("%sEnd part\n", $tab); } } } function printHeaderContentType($headers) { $headerContentType = array(); preg_match('/([^;\r\n]+)/', $headers['Content-Type'], $headerContentType); printf("Content-Type: %s\n", $headerContentType[0]); } print "TEST: text\n"; $mime = new Mail_mime(); $mime->setTXTBody($txtBody); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); print "TEST: html\n"; $mime = new Mail_mime(); $mime->setHTMLBody($htmlBody); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); print "TEST: attachments\n"; $mime = new Mail_mime(); $mime->addAttachment($icsText, 'application/ics', 'invite.ics', false); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); print "TEST: text + attachments\n"; $mime = new Mail_mime(); $mime->setTXTBody($txtBody); $mime->addAttachment($icsText, 'application/ics', 'invite.ics', false); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); print "TEST: html + attachments\n"; $mime = new Mail_mime(); $mime->setHTMLBody($htmlBody); $mime->addAttachment($icsText, 'application/ics', 'invite.ics', false); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); print "TEST: html + inline images\n"; $mime = new Mail_mime(); $mime->setHTMLBody($htmlBody); $mime->addHTMLImage("aaaaaaaaaa", 'image/gif', 'image.gif', false, 'contentid'); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); print("TEST: txt, html and attachment\n"); $mime = new Mail_mime(); $mime->setTXTBody($txtBody); $mime->setHTMLBody($htmlBody); $mime->addAttachment("test", 'application/octet-stream', 'attachment', false); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); print "TEST: calendar\n"; $mime = new Mail_mime(); $mime->setCalendarBody($icsText); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); print "TEST: txt + calendar\n"; $mime->setTXTBody($txtBody); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); print "TEST: txt, html, calendar\n"; $mime = new Mail_mime(); $mime->setTXTBody($txtBody); $mime->setHTMLBody($htmlBody); $mime->setCalendarBody($icsText); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); print "TEST: txt, html + html images, and calendar\n"; $mime = new Mail_mime(); $mime->setTXTBody($txtBody); $mime->setHTMLBody($htmlBody); $mime->addHTMLImage('testimage', 'image/gif', "bus.gif", false); $mime->setCalendarBody($icsText); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); print("TEST: txt, html, calendar and attachment\n"); $mime = new Mail_mime(); $mime->setTXTBody($txtBody); $mime->setHTMLBody($htmlBody); $mime->setCalendarBody($icsText); $mime->addAttachment("test", 'application/octet-stream', 'attachment', false); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); print "TEST: txt, html + html images, calendar, and attachment\n"; $mime = new Mail_mime(); $mime->setTXTBody($txtBody); $mime->setHTMLBody($htmlBody); $mime->addHTMLImage('testimage', 'image/gif', "bus.gif", false); $mime->setCalendarBody($icsText); $mime->addAttachment($icsText, 'application/ics', 'invite.ics', false); $headers = $mime->headers(); $body = $mime->get(); printHeaderContentType($headers); printPartsStartAndEnd($body); print("\n"); ?> --EXPECT-- TEST: text Content-Type: text/plain TEST: html Content-Type: text/html TEST: attachments Content-Type: multipart/mixed Content-Type: application/ics End part TEST: text + attachments Content-Type: multipart/mixed Content-Type: text/plain Content-Type: application/ics End part TEST: html + attachments Content-Type: multipart/mixed Content-Type: text/html Content-Type: application/ics End part TEST: html + inline images Content-Type: multipart/related Content-Type: text/html Content-Type: image/gif End part TEST: txt, html and attachment Content-Type: multipart/mixed Content-Type: multipart/alternative Content-Type: text/plain Content-Type: text/html End part Content-Type: application/octet-stream End part TEST: calendar Content-Type: text/calendar TEST: txt + calendar Content-Type: multipart/alternative Content-Type: text/plain Content-Type: text/calendar End part TEST: txt, html, calendar Content-Type: multipart/alternative Content-Type: text/plain Content-Type: text/html Content-Type: text/calendar End part TEST: txt, html + html images, and calendar Content-Type: multipart/alternative Content-Type: text/plain Content-Type: multipart/related Content-Type: text/html Content-Type: image/gif End part Content-Type: text/calendar End part TEST: txt, html, calendar and attachment Content-Type: multipart/mixed Content-Type: multipart/alternative Content-Type: text/plain Content-Type: text/html Content-Type: text/calendar End part Content-Type: application/octet-stream End part TEST: txt, html + html images, calendar, and attachment Content-Type: multipart/mixed Content-Type: multipart/alternative Content-Type: text/plain Content-Type: multipart/related Content-Type: text/html Content-Type: image/gif End part Content-Type: text/calendar End part Content-Type: application/ics End part
Save