mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-07 00:26:48 +01:00
* 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
58 lines
2.0 KiB
PHP
58 lines
2.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Test class to test rcube_output class
|
|
*/
|
|
class Framework_Output extends PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* Test get_edit_field()
|
|
*/
|
|
public function test_get_edit_field()
|
|
{
|
|
$out = rcube_output::get_edit_field('test', 'value');
|
|
|
|
$this->assertSame('<input name="_test" class="ff_test" type="text" value="value">', $out);
|
|
|
|
$_POST['_test'] = 'testv';
|
|
$out = rcube_output::get_edit_field('test', 'value');
|
|
|
|
$this->assertSame('<input name="_test" class="ff_test" type="text" value="testv">', $out);
|
|
|
|
$out = rcube_output::get_edit_field('test', 'value', ['class' => 'a'], 'checkbox');
|
|
|
|
$this->assertSame('<input class="a ff_test" name="_test" value="1" type="checkbox">', $out);
|
|
|
|
$out = rcube_output::get_edit_field('test', 'value', ['class' => 'a'], 'textarea');
|
|
|
|
$this->assertSame('<textarea class="a ff_test" name="_test">testv</textarea>', $out);
|
|
|
|
$out = rcube_output::get_edit_field('test', 'value', ['class' => 'a'], 'select');
|
|
|
|
$this->assertSame('<select class="a ff_test" name="_test">' . "\n" . '<option value="">---</option></select>', $out);
|
|
|
|
$_POST['_test'] = 'tt';
|
|
$attr = ['options' => ['tt' => 'oo']];
|
|
$out = rcube_output::get_edit_field('test', 'value', $attr, 'select');
|
|
|
|
$this->assertSame('<select name="_test" class="ff_test">' . "\n"
|
|
. '<option value="">---</option><option value="tt" selected="selected">oo</option></select>',
|
|
$out
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test json_serialize()
|
|
*/
|
|
public function test_json_serialize()
|
|
{
|
|
$this->assertSame('""', rcube_output::json_serialize(''));
|
|
$this->assertSame('[]', rcube_output::json_serialize([]));
|
|
$this->assertSame('10', rcube_output::json_serialize(10));
|
|
$this->assertSame('{"test":"test"}', rcube_output::json_serialize(['test' => 'test']));
|
|
|
|
// Test non-utf-8 input
|
|
$this->assertSame('{"ab":"ab"}', rcube_output::json_serialize(["a\x8cb" => "a\x8cb"]));
|
|
}
|
|
}
|