mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-22 18:41:20 +01:00
* Revert "Get rid of phpstan/phpstan-strict-rules"
This reverts commit ff59ade31a.
* drop phpstan baseline
* fix foreach phpstan issue
* adjust for rebase
* fix method call case
* ignore one phpstan error even after isset
115 lines
3.4 KiB
PHP
115 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace Roundcube\Tests\Framework;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Test class to test rcube_message class
|
|
*/
|
|
class MessageTest extends TestCase
|
|
{
|
|
/**
|
|
* Test format_part_body() method
|
|
*/
|
|
public function test_format_part_body()
|
|
{
|
|
$part = new \rcube_message_part();
|
|
$body = 'test';
|
|
$result = \rcube_message::format_part_body($body, $part);
|
|
|
|
$this->assertSame('test', $result);
|
|
}
|
|
|
|
/**
|
|
* Test tnef_decode() method
|
|
*/
|
|
public function test_tnef_decode()
|
|
{
|
|
$message = new rcube_message_test(123);
|
|
$part = new \rcube_message_part();
|
|
$part->mime_id = '1';
|
|
|
|
$message->set_part_body(1, '');
|
|
$result = $message->tnef_decode($part);
|
|
|
|
$this->assertSame([], $result);
|
|
|
|
$message->set_part_body(1, file_get_contents(TESTS_DIR . 'src/body.tnef'));
|
|
$result = $message->tnef_decode($part);
|
|
|
|
$this->assertCount(1, $result);
|
|
$this->assertInstanceOf(\rcube_message_part::class, $result[0]);
|
|
$this->assertSame('winmail.1.html', $result[0]->mime_id);
|
|
$this->assertSame('text/html', $result[0]->mimetype);
|
|
$this->assertSame(5360, $result[0]->size);
|
|
$this->assertStringStartsWith('<!DOCTYPE HTML', $result[0]->body);
|
|
$this->assertSame([], $result[0]->parts);
|
|
|
|
$message->set_part_body(1, file_get_contents(TESTS_DIR . 'src/one-file.tnef'));
|
|
$result = $message->tnef_decode($part);
|
|
|
|
$this->assertCount(1, $result);
|
|
$this->assertInstanceOf(\rcube_message_part::class, $result[0]);
|
|
$this->assertSame('winmail.1.0', $result[0]->mime_id);
|
|
$this->assertSame('application/octet-stream', $result[0]->mimetype);
|
|
$this->assertSame(244, $result[0]->size);
|
|
$this->assertStringContainsString(' Authors of', $result[0]->body);
|
|
$this->assertSame([], $result[0]->parts);
|
|
}
|
|
|
|
/**
|
|
* Test uu_decode() method
|
|
*/
|
|
public function test_uu_decode()
|
|
{
|
|
$message = new rcube_message_test(123);
|
|
$part = new \rcube_message_part();
|
|
$part->mime_id = '1';
|
|
|
|
$message->set_part_body(1, '');
|
|
$result = $message->uu_decode($part);
|
|
|
|
$this->assertSame([], $result);
|
|
|
|
$content = "begin 644 /dev/stdout\n" . convert_uuencode('test') . 'end';
|
|
$message->set_part_body(1, $content);
|
|
|
|
$result = $message->uu_decode($part);
|
|
|
|
$this->assertCount(1, $result);
|
|
$this->assertInstanceOf(\rcube_message_part::class, $result[0]);
|
|
$this->assertSame('uu.1.0', $result[0]->mime_id);
|
|
$this->assertSame('text/plain', $result[0]->mimetype);
|
|
$this->assertSame(4, $result[0]->size);
|
|
$this->assertSame('test', $result[0]->body);
|
|
$this->assertSame([], $result[0]->parts);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* rcube_message wrapper for easier testing (without accessing IMAP)
|
|
*/
|
|
class rcube_message_test extends \rcube_message
|
|
{
|
|
private $part_bodies = [];
|
|
|
|
public function __construct($uid, $folder = null, $is_safe = false) // @phpstan-ignore constructor.missingParentCall
|
|
{
|
|
$this->uid = $uid;
|
|
$this->folder = $folder;
|
|
$this->is_safe = $is_safe;
|
|
}
|
|
|
|
#[\Override]
|
|
public function get_part_body($mime_id, $formatted = false, $max_bytes = 0, $mode = null)
|
|
{
|
|
return $this->part_bodies[$mime_id] ?? null;
|
|
}
|
|
|
|
public function set_part_body($mime_id, $body)
|
|
{
|
|
$this->part_bodies[$mime_id] = $body;
|
|
}
|
|
}
|