mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 06:44:03 +01:00
42 lines
1.0 KiB
PHP
42 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Roundcube\Tests\Actions\Utils;
|
|
|
|
use Roundcube\Tests\ActionTestCase;
|
|
use Roundcube\Tests\OutputHtmlMock;
|
|
|
|
/**
|
|
* Test class to test rcmail_action_utils_text2html
|
|
*/
|
|
class Text2htmlTest extends ActionTestCase
|
|
{
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
public function test_class()
|
|
{
|
|
$object = new \rcmail_action_utils_text2html();
|
|
|
|
$this->assertInstanceOf(\rcmail_action::class, $object);
|
|
}
|
|
|
|
/**
|
|
* Test for run()
|
|
*/
|
|
public function test_run()
|
|
{
|
|
$object = new \rcmail_action_utils_text2html();
|
|
$input = 'test plain text input';
|
|
$object::$source = $this->createTempFile($input);
|
|
|
|
$output = $this->initOutput(\rcmail_action::MODE_HTTP, 'utils', 'text2html');
|
|
|
|
$this->assertTrue($object->checks());
|
|
|
|
$this->runAndAssert($object, OutputHtmlMock::E_EXIT);
|
|
|
|
$this->assertSame('<div class="pre">test plain text input</div>', $output->output);
|
|
$this->assertSame(['Content-Type: text/html; charset=UTF-8'], $output->headers);
|
|
}
|
|
}
|