Files
roundcubemail/tests/Framework/Enriched.php
Michael Voříšek 6a53a1d853 Fix CS (whitespace, visibility) (#9297)
* Fix "method_argument_space"

* Fix "control_structure_continuation_position"

* Fix "new_with_parentheses"

* Fix "blank_line_before_statement"

* Fix "visibility_required"

* Fix some "array_indentation"

* Fix some "array_indentation" - unify all "rcube::raise_error" calls

* rm useless eslint ignores and add rules counts

* sort eslint ignores

* fix eslint ignores grammar

* Revert "Fix "blank_line_before_statement""

* fix CS 3.46.0
2024-01-04 14:26:35 +01:00

73 lines
2.0 KiB
PHP

<?php
/**
* Test class to test rcube_enriched class
*/
class Framework_Enriched extends PHPUnit\Framework\TestCase
{
/**
* Class constructor
*/
public function test_class()
{
$object = new rcube_enriched();
$this->assertInstanceOf('rcube_enriched', $object, 'Class constructor');
}
/**
* Test to_html()
*/
public function test_to_html()
{
$enriched = '<bold><italic>the-text</italic></bold>';
$expected = '<b><i>the-text</i></b>';
$result = rcube_enriched::to_html($enriched);
$this->assertSame($expected, $result);
}
/**
* Data for test_formatting()
*/
public function data_formatting(): iterable
{
return [
['<bold>', '<b>'],
['</bold>', '</b>'],
['<italic>', '<i>'],
['</italic>', '</i>'],
['<fixed>', '<tt>'],
['</fixed>', '</tt>'],
['<smaller>', '<font size=-1>'],
['</smaller>', '</font>'],
['<bigger>', '<font size=+1>'],
['</bigger>', '</font>'],
['<underline>', '<span style="text-decoration: underline">'],
['</underline>', '</span>'],
['<flushleft>', '<span style="text-align: left">'],
['</flushleft>', '</span>'],
['<flushright>', '<span style="text-align: right">'],
['</flushright>', '</span>'],
['<flushboth>', '<span style="text-align: justified">'],
['</flushboth>', '</span>'],
['<indent>', '<span style="padding-left: 20px">'],
['</indent>', '</span>'],
['<indentright>', '<span style="padding-right: 20px">'],
['</indentright>', '</span>'],
];
}
/**
* Test formatting conversion
*
* @dataProvider data_formatting
*/
public function test_formatting($enriched, $expected)
{
$result = rcube_enriched::to_html($enriched);
$this->assertSame($expected, $result);
}
}