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
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Server;
use PhpMyAdmin\Server\Plugin;
use PhpMyAdmin\Server\Plugins;
use PhpMyAdmin\Tests\AbstractTestCase;
use function __;
/**
* @covers \PhpMyAdmin\Server\Plugins
*/
class PluginsTest extends AbstractTestCase
{
/** @var Plugins */
private $plugins;
public function testGetAll(): void
{
$GLOBALS['cfg']['MaxCharactersInDisplayedSQL'] = 1000;
$GLOBALS['cfg']['Server']['DisableIS'] = false;
$GLOBALS['server'] = 0;
$this->plugins = new Plugins($GLOBALS['dbi']);
$plugins = $this->plugins->getAll();
$this->assertIsArray($plugins);
$this->assertNotEmpty($plugins);
$plugin = $plugins[0];
$this->assertInstanceOf(Plugin::class, $plugin);
$this->assertSame([
'name' => 'BLACKHOLE',
'version' => '1.0',
'status' => 'ACTIVE',
'type' => 'STORAGE ENGINE',
'type_version' => '100316.0',
'library' => 'ha_blackhole.so',
'library_version' => '1.13',
'author' => 'MySQL AB',
'description' => '/dev/null storage engine (anything you write to it disappears)',
'license' => 'GPL',
'load_option' => 'ON',
'maturity' => 'Stable',
'auth_version' => '1.0',
], $plugin->toArray());
}
public function testGetAllWithoutInformationSchema(): void
{
$GLOBALS['cfg']['MaxCharactersInDisplayedSQL'] = 1000;
$GLOBALS['cfg']['Server']['DisableIS'] = true;
$GLOBALS['server'] = 0;
$this->plugins = new Plugins($GLOBALS['dbi']);
$plugins = $this->plugins->getAll();
$this->assertIsArray($plugins);
$this->assertNotEmpty($plugins);
$plugin = $plugins[0];
$this->assertInstanceOf(Plugin::class, $plugin);
$this->assertSame([
'name' => 'partition',
'version' => null,
'status' => 'ACTIVE',
'type' => 'STORAGE ENGINE',
'type_version' => null,
'library' => null,
'library_version' => null,
'author' => null,
'description' => null,
'license' => 'GPL',
'load_option' => null,
'maturity' => null,
'auth_version' => null,
], $plugin->toArray());
}
public function testGetAuthentication(): void
{
$GLOBALS['server'] = 0;
$this->plugins = new Plugins($GLOBALS['dbi']);
$plugins = $this->plugins->getAuthentication();
$this->assertIsArray($plugins);
$this->assertNotEmpty($plugins);
$this->assertEquals(
[
'mysql_old_password' => __('Old MySQL-4.0 authentication'),
'mysql_native_password' => __('Native MySQL authentication'),
'sha256_password' => __('SHA256 password authentication'),
'caching_sha2_password' => __('Caching sha2 authentication'),
'auth_socket' => __('Unix Socket based authentication'),
'unknown_auth_plugin' => 'Unknown authentication',
],
$plugins
);
}
}
|