/opt/alt/php52/usr/share/pear/test/Mail_Mime/tests
NameSizeModeActions
class-filename.phpt2420644editdlrm
content_transfer_encoding.phpt9240644editdlrm
encoding_case.phpt2440644editdlrm
headers_without_mbstring.phpt85170644editdlrm
headers_with_mbstring.phpt88550644editdlrm
qp_encoding_test.phpt35570644editdlrm
sleep_wakeup_EOL-bug3488-part1.phpt5450644editdlrm
sleep_wakeup_EOL-bug3488-part2.phpt5860644editdlrm
test_Bug_3513_1.phpt4750644editdlrm
test_Bug_3513_2.phpt5670644editdlrm
test_Bug_3513_3.phpt6310644editdlrm
test_Bug_7561_1.phpt6450644editdlrm
test_Bug_8386_1.phpt5510644editdlrm
test_Bug_8541_1.phpt4990644editdlrm
test_Bug_9722_1.phpt3600644editdlrm
test_Bug_10596_1.phpt2960644editdlrm
test_Bug_10816_1.phpt5700644editdlrm
test_Bug_10999_1.phpt4910644editdlrm
test_Bug_11381.phpt5570644editdlrm
test_Bug_11731.phpt6840644editdlrm
test_Bug_12165.phpt3810644editdlrm
test_Bug_12385_1.phpt5390644editdlrm
test_Bug_12411.phpt6490644editdlrm
test_Bug_12466.phpt4450644editdlrm
test_Bug_13032.phpt5390644editdlrm
test_Bug_13444.phpt6700644editdlrm
test_Bug_13962.phpt3670644editdlrm
test_Bug_14529.phpt5210644editdlrm
test_Bug_14779.phpt4890644editdlrm
test_Bug_14780.phpt3510644editdlrm
test_Bug_15320.phpt4620644editdlrm
test_Bug_16539.phpt75130644editdlrm
test_Bug_17025.phpt4120644editdlrm
test_Bug_17175.phpt6950644editdlrm
test_Bug_18083.phpt5920644editdlrm
test_Bug_18772.phpt8800644editdlrm
test_Bug_19497.phpt5470644editdlrm
test_Bug_20226.phpt3410644editdlrm
test_Bug_20273.phpt3020644editdlrm
test_Bug_20563.phpt3780644editdlrm
test_Bug_20564.phpt2700644editdlrm
test_Bug_21027.phpt72950644editdlrm
test_Bug_21098.phpt3900644editdlrm
test_Bug_21205.phpt13100644editdlrm
test_Bug_21206.phpt5900644editdlrm
test_Bug_21255.phpt3520644editdlrm
test_Bug_GH16.phpt16020644editdlrm
test_Bug_GH19.phpt9970644editdlrm
test_Bug_GH26.phpt7550644editdlrm
test_linebreak_dot.phpt16880644editdlrm
test_linebreak_larger_76.phpt23070644editdlrm
Edit: /opt/alt/php52/usr/share/pear/test/Mail_Mime/tests/test_linebreak_dot.phpt (1688B)
--TEST-- Test for correct "." encoding when doing linebreaks --SKIPIF-- --FILE-- 'text/plain', 'encoding' => 'quoted-printable', ); for ($i=74; $i <= strlen($text); $i++) { $input = substr($text, 0, $i); $mimePart = new Mail_mimePart($input, $params); $encoded = $mimePart->encode(); $output = $encoded['body']; printf("input: %02d: %s\n", strlen($input), $input); $lines = explode("\r\n", $output); for($j=0; $j < count($lines); $j++) { $line = $lines[$j]; if ($j + 1 < count($lines)) { $line_vis = $line.'\r\n'; } else { $line_vis = $line; } printf("output:%02d: %s\n", strlen($line), $line_vis); } print("---\n"); } --EXPECT-- input: 74: 0123456789012345678901234567890123456789012345678901234567890123456789012. output:74: 0123456789012345678901234567890123456789012345678901234567890123456789012. --- input: 75: 0123456789012345678901234567890123456789012345678901234567890123456789012.. output:75: 0123456789012345678901234567890123456789012345678901234567890123456789012.. --- input: 76: 0123456789012345678901234567890123456789012345678901234567890123456789012... output:76: 0123456789012345678901234567890123456789012345678901234567890123456789012... --- input: 77: 0123456789012345678901234567890123456789012345678901234567890123456789012...6 output:76: 0123456789012345678901234567890123456789012345678901234567890123456789012..=\r\n output:04: =2E6 ---