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
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests;
use PhpMyAdmin\Charsets;
/**
* @covers \PhpMyAdmin\Charsets
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\PhpMyAdmin\Charsets::class)]
class CharsetsTest extends AbstractTestCase
{
protected function setUp(): void
{
parent::setUp();
parent::setGlobalDbi();
$GLOBALS['server'] = 0;
$GLOBALS['cfg']['DBG']['sql'] = false;
$GLOBALS['cfg']['Server']['DisableIS'] = false;
}
public function testGetServerCharset(): void
{
$this->dummyDbi->addResult(
'SHOW SESSION VARIABLES LIKE \'character_set_server\';',
[
[
'character_set_server',
'utf8mb3',
],
],
[
'Variable_name',
'Value',
]
);
$this->dummyDbi->addResult('SHOW SESSION VARIABLES LIKE \'character_set_server\';', false);
$this->dummyDbi->addResult('SELECT @@character_set_server;', false);
$this->dummyDbi->addResult('SHOW SESSION VARIABLES LIKE \'character_set_server\';', false);
$this->dummyDbi->addResult(
'SELECT @@character_set_server;',
[
['utf8mb3'],
]
);
$charset = Charsets::getServerCharset($GLOBALS['dbi'], $GLOBALS['cfg']['Server']['DisableIS']);
self::assertSame('utf8', $charset->getName());
$charset = Charsets::getServerCharset($GLOBALS['dbi'], $GLOBALS['cfg']['Server']['DisableIS']);
self::assertSame('Unknown', $charset->getName());
$charset = Charsets::getServerCharset($GLOBALS['dbi'], $GLOBALS['cfg']['Server']['DisableIS']);
self::assertSame('utf8', $charset->getName());
$this->assertAllQueriesConsumed();
}
public function testFindCollationByName(): void
{
self::assertNull(Charsets::findCollationByName(
$GLOBALS['dbi'],
$GLOBALS['cfg']['Server']['DisableIS'],
null
));
self::assertNull(Charsets::findCollationByName(
$GLOBALS['dbi'],
$GLOBALS['cfg']['Server']['DisableIS'],
''
));
self::assertNull(Charsets::findCollationByName(
$GLOBALS['dbi'],
$GLOBALS['cfg']['Server']['DisableIS'],
'invalid'
));
$actual = Charsets::findCollationByName(
$GLOBALS['dbi'],
$GLOBALS['cfg']['Server']['DisableIS'],
'utf8_general_ci'
);
self::assertInstanceOf(Charsets\Collation::class, $actual);
self::assertSame('utf8_general_ci', $actual->getName());
}
public function testGetCollationsMariaDB(): void
{
$this->dbi->setVersion(['@@version' => '10.10.0-MariaDB']);
$collations = Charsets::getCollations($this->dbi, false);
self::assertCount(4, $collations);
self::assertContainsOnlyArray($collations);
foreach ($collations as $collation) {
self::assertContainsOnlyInstancesOf(Charsets\Collation::class, $collation);
}
}
}
|