1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
<?php
namespace Roundcube\Tests\Framework;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\TestCase;
/**
* Test class to test rcube_charset class
*
* @group mbstring
*/
#[Group('mbstring')]
class Framework_Charset extends TestCase
{
/**
* Data for test_clean()
*/
static function data_clean()
{
return [
['', ''],
["\xC1", ""],
["Οὐχὶ ταὐτὰ παρίσταταί μοι γιγνώσκειν", "Οὐχὶ ταὐτὰ παρίσταταί μοι γιγνώσκειν"],
["сим\xD0вол", "символ"],
[["сим\xD0вол"], ["символ"]],
[["a\x8cb" => "a\x8cb"], ["ab" => "ab"]],
[["a\x8cb" => "a\x8cb", "ab" => "12"], ["ab" => "12"]],
];
}
/**
* @dataProvider data_clean
*/
#[DataProvider('data_clean')]
function test_clean($input, $output)
{
$this->assertSame($output, \rcube_charset::clean($input));
}
/**
* Data for test_is_valid()
*/
static function data_is_valid()
{
$list = [];
foreach (mb_list_encodings() as $charset) {
$list[] = [$charset, true];
}
return array_merge($list, [
['', false],
['a', false],
['aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa', false],
[null, false],
['TCVN5712-1:1993', true],
['JUS_I.B1.002', true],
]);
}
/**
* @dataProvider data_is_valid
*/
#[DataProvider('data_is_valid')]
function test_is_valid($input, $result)
{
$this->assertSame($result, \rcube_charset::is_valid($input));
}
/**
* Data for test_parse_charset()
*/
static function data_parse_charset()
{
return [
['UTF8', 'UTF-8'],
['WIN1250', 'WINDOWS-1250'],
];
}
/**
* @dataProvider data_parse_charset
*/
#[DataProvider('data_parse_charset')]
function test_parse_charset($input, $output)
{
$this->assertEquals($output, \rcube_charset::parse_charset($input));
}
/**
* Data for test_convert()
*/
static function data_convert()
{
$data = [
['ö', 'ö', 'UTF-8', 'UTF-8'],
['ö', '', 'UTF-8', 'ASCII'],
['aż', 'a', 'UTF-8', 'US-ASCII'],
['&BCAEMARBBEEESwQ7BDoEOA-', 'Рассылки', 'UTF7-IMAP', 'UTF-8'],
['Рассылки', '&BCAEMARBBEEESwQ7BDoEOA-', 'UTF-8', 'UTF7-IMAP'],
[base64_decode('GyRCLWo7M3l1OSk2SBsoQg=='), '㈱山﨑工業', 'ISO-2022-JP', 'UTF-8'],
['㈱山﨑工業', base64_decode('GyRCLWo7M3l1OSk2SBsoQg=='), 'UTF-8', 'ISO-2022-JP'],
// try some invalid encodings, to make sure no error/exception is thrown
['test', 'test', 'WIN1253', 'INVALID'],
];
if (extension_loaded('iconv')) {
// Windows-1253 is not supported by mbstring, we're testing fallback to iconv
$data[] = ['ε', chr(hexdec(('E5'))), 'UTF-8', 'WINDOWS-1253'];
// Windows-874 is also not supported by mbstring
$in = quoted_printable_decode('=B5=CD=BA=A1=C5=D1=BA');
$data[] = [$in, 'ตอบกลับ', 'WINDOWS-874', 'UTF-8'];
}
return $data;
}
/**
* @dataProvider data_convert
*/
#[DataProvider('data_convert')]
function test_convert($input, $output, $from, $to)
{
$this->assertEquals($output, \rcube_charset::convert($input, $from, $to));
}
/**
* Data for test_utf7_to_utf8()
*/
static function data_utf7_to_utf8()
{
return [
['+BCAEMARBBEEESwQ7BDoEOA-', 'Рассылки'],
];
}
/**
* @dataProvider data_utf7_to_utf8
*/
#[DataProvider('data_utf7_to_utf8')]
function test_utf7_to_utf8($input, $output)
{
$this->assertEquals($output, \rcube_charset::utf7_to_utf8($input));
}
/**
* Data for test_utf7imap_to_utf8()
*/
static function data_utf7imap_to_utf8()
{
return [
['&BCAEMARBBEEESwQ7BDoEOA-', 'Рассылки'],
];
}
/**
* @dataProvider data_utf7imap_to_utf8
*/
#[DataProvider('data_utf7imap_to_utf8')]
function test_utf7imap_to_utf8($input, $output)
{
$this->assertEquals($output, \rcube_charset::utf7imap_to_utf8($input));
}
/**
* Data for test_utf8_to_utf7imap()
*/
static function data_utf8_to_utf7imap()
{
return [
['Рассылки', '&BCAEMARBBEEESwQ7BDoEOA-'],
];
}
/**
* @dataProvider data_utf8_to_utf7imap
*/
#[DataProvider('data_utf8_to_utf7imap')]
function test_utf8_to_utf7imap($input, $output)
{
$this->assertEquals($output, \rcube_charset::utf8_to_utf7imap($input));
}
/**
* Data for test_utf16_to_utf8()
*/
static function data_utf16_to_utf8()
{
return [
[base64_decode('BCAEMARBBEEESwQ7BDoEOA=='), 'Рассылки'],
];
}
/**
* @dataProvider data_utf16_to_utf8
*/
#[DataProvider('data_utf16_to_utf8')]
function test_utf16_to_utf8($input, $output)
{
$this->assertEquals($output, \rcube_charset::utf16_to_utf8($input));
}
/**
* Data for test_detect()
*/
static function data_detect()
{
return [
['', '', 'UTF-8'],
['a', 'UTF-8', 'UTF-8'],
];
}
/**
* @dataProvider data_detect
*/
#[DataProvider('data_detect')]
function test_detect($input, $fallback, $output)
{
$this->assertEquals($output, \rcube_charset::detect($input, $fallback));
}
/**
* Data for test_detect()
*/
static function data_detect_with_lang()
{
return [
[base64_decode('xeOl3KZXutkspUStbg=='), 'zh_TW', 'BIG-5'],
];
}
/**
* @dataProvider data_detect_with_lang
*/
#[DataProvider('data_detect_with_lang')]
function test_detect_with_lang($input, $lang, $output)
{
$this->assertEquals($output, \rcube_charset::detect($input, $output, $lang));
}
}
|