mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
* Add database and database users sync * get mysl users * add mariadb and postgres * fix phpstan
129 lines
4.1 KiB
PHP
129 lines
4.1 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit\SSH\Services\Database;
|
|
|
|
use App\Facades\SSH;
|
|
use App\SSH\Services\Database\Database;
|
|
use Tests\TestCase;
|
|
|
|
class GetCharsetsTest extends TestCase
|
|
{
|
|
protected static array $mysqlCharsets = [
|
|
'armscii8' => [
|
|
'default' => 'armscii8_general_ci',
|
|
'list' => [
|
|
'armscii8_bin',
|
|
'armscii8_general_ci',
|
|
],
|
|
],
|
|
'ascii' => [
|
|
'default' => 'ascii_general_ci',
|
|
'list' => [
|
|
'ascii_bin',
|
|
'ascii_general_ci',
|
|
],
|
|
],
|
|
'big5' => [
|
|
'default' => 'big5_chinese_ci',
|
|
'list' => [
|
|
'big5_bin',
|
|
'big5_chinese_ci',
|
|
],
|
|
],
|
|
];
|
|
|
|
/**
|
|
* @dataProvider data
|
|
*/
|
|
public function test_update_charsets(string $name, string $version, string $output, array $expected): void
|
|
{
|
|
$database = $this->server->database();
|
|
$database->name = $name;
|
|
$database->version = $version;
|
|
$database->save();
|
|
|
|
SSH::fake($output);
|
|
|
|
/** @var Database $databaseHandler */
|
|
$databaseHandler = $database->handler();
|
|
$charsets = $databaseHandler->getCharsets();
|
|
|
|
$this->assertEquals($expected, $charsets['charsets']);
|
|
}
|
|
|
|
/**
|
|
* @return array[]
|
|
*/
|
|
public static function data(): array
|
|
{
|
|
return [
|
|
[
|
|
'mysql',
|
|
'8.0',
|
|
<<<'EOD'
|
|
Collation Charset Id Default Compiled Sortlen Pad_attribute
|
|
armscii8_bin armscii8 64 Yes 1 PAD SPACE
|
|
armscii8_general_ci armscii8 32 Yes Yes 1 PAD SPACE
|
|
ascii_bin ascii 65 Yes 1 PAD SPACE
|
|
ascii_general_ci ascii 11 Yes Yes 1 PAD SPACE
|
|
big5_bin big5 84 Yes 1 PAD SPACE
|
|
big5_chinese_ci big5 1 Yes Yes 1 PAD SPACE
|
|
EOD,
|
|
static::$mysqlCharsets,
|
|
],
|
|
[
|
|
'mysql',
|
|
'5.7',
|
|
<<<'EOD'
|
|
Collation Charset Id Default Compiled Sortlen Pad_attribute
|
|
armscii8_bin armscii8 64 Yes 1 PAD SPACE
|
|
armscii8_general_ci armscii8 32 Yes Yes 1 PAD SPACE
|
|
ascii_bin ascii 65 Yes 1 PAD SPACE
|
|
ascii_general_ci ascii 11 Yes Yes 1 PAD SPACE
|
|
big5_bin big5 84 Yes 1 PAD SPACE
|
|
big5_chinese_ci big5 1 Yes Yes 1 PAD SPACE
|
|
EOD,
|
|
static::$mysqlCharsets,
|
|
],
|
|
[
|
|
'mariadb',
|
|
'10.5',
|
|
<<<'EOD'
|
|
Collation Charset Id Default Compiled Sortlen Pad_attribute
|
|
armscii8_bin armscii8 64 Yes 1 PAD SPACE
|
|
armscii8_general_ci armscii8 32 Yes Yes 1 PAD SPACE
|
|
ascii_bin ascii 65 Yes 1 PAD SPACE
|
|
ascii_general_ci ascii 11 Yes Yes 1 PAD SPACE
|
|
big5_bin big5 84 Yes 1 PAD SPACE
|
|
big5_chinese_ci big5 1 Yes Yes 1 PAD SPACE
|
|
EOD,
|
|
static::$mysqlCharsets,
|
|
],
|
|
[
|
|
'postgresql',
|
|
'16',
|
|
<<<'EOD'
|
|
collation | charset | id | default | compiled | sortlen | pad_attribute
|
|
------------+---------+----+---------+----------+---------+---------------
|
|
ucs_basic | UTF8 | | | Yes | |
|
|
C.utf8 | UTF8 | | | Yes | |
|
|
en_US.utf8 | UTF8 | | | Yes | |
|
|
en_US | UTF8 | | | Yes | |
|
|
(4 rows)
|
|
EOD,
|
|
[
|
|
'UTF8' => [
|
|
'default' => null,
|
|
'list' => [
|
|
'ucs_basic',
|
|
'C.utf8',
|
|
'en_US.utf8',
|
|
'en_US',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
}
|