SILENT KILLERPanel

Current Path: > > opt > cloudlinux > alt-php52 > root > usr > share > pear > > test > Mail_Mime > tests


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/cloudlinux/alt-php52/root/usr/share/pear//test/Mail_Mime/tests

NameTypeSizeLast ModifiedActions
class-filename.phpt File 242 bytes December 02 2021 08:06:03.
content_transfer_encoding.phpt File 924 bytes December 02 2021 08:06:03.
encoding_case.phpt File 244 bytes December 02 2021 08:06:03.
headers_with_mbstring.phpt File 8855 bytes December 02 2021 08:06:03.
headers_without_mbstring.phpt File 8517 bytes December 02 2021 08:06:03.
qp_encoding_test.phpt File 3557 bytes December 02 2021 08:06:03.
sleep_wakeup_EOL-bug3488-part1.phpt File 545 bytes December 02 2021 08:06:03.
sleep_wakeup_EOL-bug3488-part2.phpt File 586 bytes December 02 2021 08:06:03.
test_Bug_10596_1.phpt File 296 bytes December 02 2021 08:06:03.
test_Bug_10816_1.phpt File 570 bytes December 02 2021 08:06:03.
test_Bug_10999_1.phpt File 491 bytes December 02 2021 08:06:03.
test_Bug_11381.phpt File 557 bytes December 02 2021 08:06:03.
test_Bug_11731.phpt File 684 bytes December 02 2021 08:06:03.
test_Bug_12165.phpt File 381 bytes December 02 2021 08:06:03.
test_Bug_12385_1.phpt File 539 bytes December 02 2021 08:06:03.
test_Bug_12411.phpt File 649 bytes December 02 2021 08:06:03.
test_Bug_12466.phpt File 445 bytes December 02 2021 08:06:03.
test_Bug_13032.phpt File 539 bytes December 02 2021 08:06:03.
test_Bug_13444.phpt File 670 bytes December 02 2021 08:06:03.
test_Bug_13962.phpt File 367 bytes December 02 2021 08:06:03.
test_Bug_14529.phpt File 521 bytes December 02 2021 08:06:03.
test_Bug_14779.phpt File 489 bytes December 02 2021 08:06:03.
test_Bug_14780.phpt File 351 bytes December 02 2021 08:06:03.
test_Bug_15320.phpt File 462 bytes December 02 2021 08:06:03.
test_Bug_16539.phpt File 7513 bytes December 02 2021 08:06:03.
test_Bug_17025.phpt File 412 bytes December 02 2021 08:06:03.
test_Bug_17175.phpt File 695 bytes December 02 2021 08:06:03.
test_Bug_18083.phpt File 592 bytes December 02 2021 08:06:03.
test_Bug_18772.phpt File 880 bytes December 02 2021 08:06:03.
test_Bug_19497.phpt File 547 bytes December 02 2021 08:06:03.
test_Bug_20226.phpt File 341 bytes December 02 2021 08:06:03.
test_Bug_20273.phpt File 302 bytes December 02 2021 08:06:03.
test_Bug_20563.phpt File 378 bytes December 02 2021 08:06:03.
test_Bug_20564.phpt File 270 bytes December 02 2021 08:06:03.
test_Bug_21027.phpt File 7295 bytes December 02 2021 08:06:03.
test_Bug_21098.phpt File 390 bytes December 02 2021 08:06:03.
test_Bug_21205.phpt File 1310 bytes December 02 2021 08:06:03.
test_Bug_21206.phpt File 590 bytes December 02 2021 08:06:03.
test_Bug_21255.phpt File 352 bytes December 02 2021 08:06:03.
test_Bug_3513_1.phpt File 475 bytes December 02 2021 08:06:03.
test_Bug_3513_2.phpt File 567 bytes December 02 2021 08:06:03.
test_Bug_3513_3.phpt File 631 bytes December 02 2021 08:06:03.
test_Bug_7561_1.phpt File 645 bytes December 02 2021 08:06:03.
test_Bug_8386_1.phpt File 551 bytes December 02 2021 08:06:03.
test_Bug_8541_1.phpt File 499 bytes December 02 2021 08:06:03.
test_Bug_9722_1.phpt File 360 bytes December 02 2021 08:06:03.
test_Bug_GH16.phpt File 1602 bytes December 02 2021 08:06:03.
test_Bug_GH19.phpt File 997 bytes December 02 2021 08:06:03.
test_Bug_GH26.phpt File 755 bytes December 02 2021 08:06:03.
test_linebreak_dot.phpt File 1688 bytes December 02 2021 08:06:03.
test_linebreak_larger_76.phpt File 2307 bytes December 02 2021 08:06:03.

Reading File: //opt/cloudlinux/alt-php52/root/usr/share/pear//test/Mail_Mime/tests/qp_encoding_test.phpt

--TEST--
qp comprehensive test
--SKIPIF--
--FILE--
<?php
error_reporting(E_ALL); // ignore E_STRICT

include("Mail/mimePart.php");

/**
 * Convenience function to make qp encoded output easier to verify
 *
 * @param string $text Input text to be encoded and printed
 * @param int $begin Start character to visibly print from
 * @param int $end Stop character to visibly print to
 * @param bool $special_chars Convert character such as linebreaks
 *     etc. to visible replacements.
 * @param int $break Line length before soft break
 *
 */
function debug_print($text, $begin=False, $end=False, $special_chars=True, $break=76) {
    $begin = $begin ? $begin : strlen($text);
    $end = $end ? $end : strlen($text);

    for ($i=$begin; $i <= $end; $i++) {
        $input = substr($text, 0, $i);
        $output = Mail_mimePart::quotedPrintableEncode($input, $break);

        if ($special_chars) {
            $input_vis = str_replace("\t", '\t', str_replace("\n", '\n', str_replace("\r", '\r', $input)));
        } else {
            $input_vis = $input;
        }
        printf("input: %02d: %s\n", strlen($input), $input_vis);

        $lines = explode("\r\n", $output);
        for($j=0; $j < count($lines); $j++) {
            $line = $lines[$j];
            if ($j + 1 < count($lines) && $special_chars) {
                $line_vis = str_replace("\t", '\t', $line).'\r\n';
            } else {
                $line_vis = $line;
            }
            printf("output:%02d: %s\n", strlen($line), $line_vis);
        }
        print("---\n");
    }
}

// Test linebreaks on regular long lines
$text = '12345678901234567890123456789012345678901234567890123456789012345678901234567890';
debug_print($text, 74);

// Test linebreaks on long line with dot at end.
$text = '123456789.12';
debug_print($text, 10, False, False, 10);

$text = "\tHere's\t\na tab.\n";
debug_print($text, False, False, True, 8);

--EXPECT--
input: 74: 12345678901234567890123456789012345678901234567890123456789012345678901234
output:74: 12345678901234567890123456789012345678901234567890123456789012345678901234
---
input: 75: 123456789012345678901234567890123456789012345678901234567890123456789012345
output:75: 123456789012345678901234567890123456789012345678901234567890123456789012345
---
input: 76: 1234567890123456789012345678901234567890123456789012345678901234567890123456
output:76: 1234567890123456789012345678901234567890123456789012345678901234567890123456
---
input: 77: 12345678901234567890123456789012345678901234567890123456789012345678901234567
output:76: 123456789012345678901234567890123456789012345678901234567890123456789012345=\r\n
output:02: 67
---
input: 78: 123456789012345678901234567890123456789012345678901234567890123456789012345678
output:76: 123456789012345678901234567890123456789012345678901234567890123456789012345=\r\n
output:03: 678
---
input: 79: 1234567890123456789012345678901234567890123456789012345678901234567890123456789
output:76: 123456789012345678901234567890123456789012345678901234567890123456789012345=\r\n
output:04: 6789
---
input: 80: 12345678901234567890123456789012345678901234567890123456789012345678901234567890
output:76: 123456789012345678901234567890123456789012345678901234567890123456789012345=\r\n
output:05: 67890
---
input: 10: 123456789.
output:10: 123456789.
---
input: 11: 123456789.1
output:10: 123456789=
output:04: =2E1
---
input: 12: 123456789.12
output:10: 123456789=
output:05: =2E12
---
input: 16: \tHere's\t\na tab.\n
output:08: \tHere's=\r\n
output:03: =09\r\n
output:06: a tab.\r\n
output:00: 
---

SILENT KILLER Tool