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
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests;
use PhpMyAdmin\Plugins;
/**
* @covers \PhpMyAdmin\Plugins
*/
class PluginsTest extends AbstractTestCase
{
public function testGetExport(): void
{
global $plugin_param;
$GLOBALS['server'] = 1;
$plugins = Plugins::getExport('database', false);
$this->assertEquals(['export_type' => 'database', 'single_table' => false], $plugin_param);
$this->assertIsArray($plugins);
$this->assertCount(14, $plugins);
$this->assertContainsOnlyInstancesOf(Plugins\ExportPlugin::class, $plugins);
}
public function testGetImport(): void
{
global $plugin_param;
$plugins = Plugins::getImport('database');
$this->assertEquals('database', $plugin_param);
$this->assertIsArray($plugins);
$this->assertCount(6, $plugins);
$this->assertContainsOnlyInstancesOf(Plugins\ImportPlugin::class, $plugins);
}
public function testGetSchema(): void
{
$plugins = Plugins::getSchema();
$this->assertIsArray($plugins);
$this->assertCount(4, $plugins);
$this->assertContainsOnlyInstancesOf(Plugins\SchemaPlugin::class, $plugins);
}
/**
* @param string|int|null $actualConfig
* @psalm-param 'Export'|'Import'|'Schema' $section
*
* @dataProvider providerForTestGetDefault
*/
public function testGetDefault(
string $expected,
$actualConfig,
?string $actualGet,
string $section,
string $option,
?bool $timeoutPassed
): void {
global $cfg, $strLatexContinued, $strLatexStructure, $timeout_passed;
$_GET = [];
$_REQUEST = [];
if ($timeoutPassed !== null) {
$timeout_passed = $timeoutPassed;
$_REQUEST[$option] = $actualGet;
} elseif ($actualGet !== null) {
$_GET[$option] = $actualGet;
}
$strLatexContinued = '(continued)';
$strLatexStructure = 'Structure of table @TABLE@';
/** @psalm-suppress InvalidArrayOffset, PossiblyInvalidArrayAssignment */
$cfg[$section][$option] = $actualConfig;
$default = Plugins::getDefault($section, $option);
$this->assertSame($expected, $default);
}
/**
* @return array[]
* @psalm-return array{array{string, string|int|null, string|null, 'Export'|'Import'|'Schema', string, bool|null}}
*/
public function providerForTestGetDefault(): array
{
return [
['xml', 'xml', null, 'Export', 'format', null],
['xml', 'sql', 'xml', 'Export', 'format', null],
['xml', null, 'xml', 'Export', 'format', null],
['', null, null, 'Export', 'format', null],
[
'Structure of table @TABLE@ strTest (continued)',
'strLatexStructure strTest strLatexContinued',
null,
'Export',
'latex_structure_continued_caption',
null,
],
['xml', 'sql', 'xml', 'Export', 'format', true],
['sql', 'sql', 'xml', 'Export', 'format', false],
['30', 30, null, 'Import', 'skip_queries', null],
];
}
public function testGetChoice(): void
{
global $plugin_param;
$GLOBALS['server'] = 1;
$plugin_param = ['export_type' => 'database', 'single_table' => false];
$exportList = [
new Plugins\Export\ExportJson(),
new Plugins\Export\ExportOds(),
new Plugins\Export\ExportSql(),
new Plugins\Export\ExportXml(),
];
$actual = Plugins::getChoice($exportList, 'xml');
$expected = [
['name' => 'json', 'text' => 'JSON', 'is_selected' => false, 'force_file' => false],
['name' => 'ods', 'text' => 'OpenDocument Spreadsheet', 'is_selected' => false, 'force_file' => true],
['name' => 'sql', 'text' => 'SQL', 'is_selected' => false, 'force_file' => false],
['name' => 'xml', 'text' => 'XML', 'is_selected' => true, 'force_file' => false],
];
$this->assertEquals($expected, $actual);
}
}
|