385 lines
9.5 KiB
PHP
385 lines
9.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests\Plugins\Export;
|
|
|
|
use PhpMyAdmin\DatabaseInterface;
|
|
use PhpMyAdmin\Plugins\Export\ExportMediawiki;
|
|
use PhpMyAdmin\Properties\Options\Groups\OptionsPropertyMainGroup;
|
|
use PhpMyAdmin\Properties\Options\Groups\OptionsPropertyRootGroup;
|
|
use PhpMyAdmin\Properties\Options\Groups\OptionsPropertySubgroup;
|
|
use PhpMyAdmin\Properties\Options\Items\BoolPropertyItem;
|
|
use PhpMyAdmin\Properties\Options\Items\RadioPropertyItem;
|
|
use PhpMyAdmin\Properties\Plugins\ExportPluginProperties;
|
|
use PhpMyAdmin\Tests\AbstractTestCase;
|
|
use ReflectionMethod;
|
|
use ReflectionProperty;
|
|
use function array_shift;
|
|
use function ob_get_clean;
|
|
use function ob_start;
|
|
|
|
/**
|
|
* @group medium
|
|
*/
|
|
class ExportMediawikiTest extends AbstractTestCase
|
|
{
|
|
/** @var ExportMediawiki */
|
|
protected $object;
|
|
|
|
/**
|
|
* Configures global environment.
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$GLOBALS['server'] = 0;
|
|
$GLOBALS['output_kanji_conversion'] = false;
|
|
$GLOBALS['output_charset_conversion'] = false;
|
|
$GLOBALS['buffer_needed'] = false;
|
|
$GLOBALS['asfile'] = true;
|
|
$GLOBALS['save_on_server'] = false;
|
|
$this->object = new ExportMediawiki();
|
|
}
|
|
|
|
/**
|
|
* tearDown for test cases
|
|
*/
|
|
protected function tearDown(): void
|
|
{
|
|
parent::tearDown();
|
|
unset($this->object);
|
|
}
|
|
|
|
public function testSetProperties(): void
|
|
{
|
|
$method = new ReflectionMethod(ExportMediawiki::class, 'setProperties');
|
|
$method->setAccessible(true);
|
|
$method->invoke($this->object, null);
|
|
|
|
$attrProperties = new ReflectionProperty(ExportMediawiki::class, 'properties');
|
|
$attrProperties->setAccessible(true);
|
|
$properties = $attrProperties->getValue($this->object);
|
|
|
|
$this->assertInstanceOf(
|
|
ExportPluginProperties::class,
|
|
$properties
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'MediaWiki Table',
|
|
$properties->getText()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'mediawiki',
|
|
$properties->getExtension()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'text/plain',
|
|
$properties->getMimeType()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Options',
|
|
$properties->getOptionsText()
|
|
);
|
|
|
|
$options = $properties->getOptions();
|
|
|
|
$this->assertInstanceOf(
|
|
OptionsPropertyRootGroup::class,
|
|
$options
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Format Specific Options',
|
|
$options->getName()
|
|
);
|
|
|
|
$generalOptionsArray = $options->getProperties();
|
|
$generalOptions = $generalOptionsArray[0];
|
|
|
|
$this->assertInstanceOf(
|
|
OptionsPropertyMainGroup::class,
|
|
$generalOptions
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'general_opts',
|
|
$generalOptions->getName()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Dump table',
|
|
$generalOptions->getText()
|
|
);
|
|
|
|
$generalProperties = $generalOptions->getProperties();
|
|
|
|
$property = array_shift($generalProperties);
|
|
|
|
$this->assertInstanceOf(
|
|
OptionsPropertySubgroup::class,
|
|
$property
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'dump_table',
|
|
$property->getName()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Dump table',
|
|
$property->getText()
|
|
);
|
|
|
|
$sgHeader = $property->getSubGroupHeader();
|
|
|
|
$this->assertInstanceOf(
|
|
RadioPropertyItem::class,
|
|
$sgHeader
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'structure_or_data',
|
|
$sgHeader->getName()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
[
|
|
'structure' => __('structure'),
|
|
'data' => __('data'),
|
|
'structure_and_data' => __('structure and data'),
|
|
],
|
|
$sgHeader->getValues()
|
|
);
|
|
|
|
$property = array_shift($generalProperties);
|
|
|
|
$this->assertInstanceOf(
|
|
BoolPropertyItem::class,
|
|
$property
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'caption',
|
|
$property->getName()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Export table names',
|
|
$property->getText()
|
|
);
|
|
|
|
$property = array_shift($generalProperties);
|
|
|
|
$this->assertInstanceOf(
|
|
BoolPropertyItem::class,
|
|
$property
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'headers',
|
|
$property->getName()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Export table headers',
|
|
$property->getText()
|
|
);
|
|
}
|
|
|
|
public function testExportHeader(): void
|
|
{
|
|
$this->assertTrue(
|
|
$this->object->exportHeader()
|
|
);
|
|
}
|
|
|
|
public function testExportFooter(): void
|
|
{
|
|
$this->assertTrue(
|
|
$this->object->exportFooter()
|
|
);
|
|
}
|
|
|
|
public function testExportDBHeader(): void
|
|
{
|
|
$this->assertTrue(
|
|
$this->object->exportDBHeader('testDB')
|
|
);
|
|
}
|
|
|
|
public function testExportDBFooter(): void
|
|
{
|
|
$this->assertTrue(
|
|
$this->object->exportDBFooter('testDB')
|
|
);
|
|
}
|
|
|
|
public function testExportDBCreate(): void
|
|
{
|
|
$this->assertTrue(
|
|
$this->object->exportDBCreate('testDB', 'database')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for ExportMediaWiki::exportStructure
|
|
*/
|
|
public function testExportStructure(): void
|
|
{
|
|
$dbi = $this->getMockBuilder(DatabaseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$columns = [
|
|
[
|
|
'Null' => 'Yes',
|
|
'Field' => 'name1',
|
|
'Key' => 'PRI',
|
|
'Type' => 'set(abc)enum123',
|
|
'Default' => '',
|
|
'Extra' => '',
|
|
],
|
|
[
|
|
'Null' => 'NO',
|
|
'Field' => 'fields',
|
|
'Key' => 'COMP',
|
|
'Type' => '',
|
|
'Default' => 'def',
|
|
'Extra' => 'ext',
|
|
],
|
|
];
|
|
|
|
$dbi->expects($this->at(0))
|
|
->method('getColumns')
|
|
->with('db', 'table')
|
|
->will($this->returnValue($columns));
|
|
|
|
$GLOBALS['dbi'] = $dbi;
|
|
$GLOBALS['mediawiki_caption'] = true;
|
|
$GLOBALS['mediawiki_headers'] = true;
|
|
|
|
ob_start();
|
|
$this->assertTrue(
|
|
$this->object->exportStructure(
|
|
'db',
|
|
'table',
|
|
"\n",
|
|
'example.com',
|
|
'create_table',
|
|
'test'
|
|
)
|
|
);
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertEquals(
|
|
"\n<!--\n" .
|
|
"Table structure for `table`\n" .
|
|
"-->\n" .
|
|
"\n" .
|
|
"{| class=\"wikitable\" style=\"text-align:center;\"\n" .
|
|
"|+'''table'''\n" .
|
|
"|- style=\"background:#ffdead;\"\n" .
|
|
"! style=\"background:#ffffff\" | \n" .
|
|
" | name1\n" .
|
|
" | fields\n" .
|
|
"|-\n" .
|
|
"! Type\n" .
|
|
" | set(abc)enum123\n" .
|
|
" | \n" .
|
|
"|-\n" .
|
|
"! Null\n" .
|
|
" | Yes\n" .
|
|
" | NO\n" .
|
|
"|-\n" .
|
|
"! Default\n" .
|
|
" | \n" .
|
|
" | def\n" .
|
|
"|-\n" .
|
|
"! Extra\n" .
|
|
" | \n" .
|
|
" | ext\n" .
|
|
"|}\n\n",
|
|
$result
|
|
);
|
|
}
|
|
|
|
public function testExportData(): void
|
|
{
|
|
$dbi = $this->getMockBuilder(DatabaseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$dbi->expects($this->once())
|
|
->method('getColumnNames')
|
|
->with('db', 'table')
|
|
->will($this->returnValue(['name1', 'fields']));
|
|
|
|
$dbi->expects($this->once())
|
|
->method('query')
|
|
->with('SELECT', DatabaseInterface::CONNECT_USER, DatabaseInterface::QUERY_UNBUFFERED)
|
|
->will($this->returnValue(true));
|
|
|
|
$dbi->expects($this->once())
|
|
->method('numFields')
|
|
->with(true)
|
|
->will($this->returnValue(2));
|
|
|
|
$dbi->expects($this->at(3))
|
|
->method('fetchRow')
|
|
->with(true)
|
|
->will($this->returnValue(['r1', 'r2']));
|
|
|
|
$dbi->expects($this->at(4))
|
|
->method('fetchRow')
|
|
->with(true)
|
|
->will($this->returnValue(['r3', '']));
|
|
|
|
$dbi->expects($this->at(4))
|
|
->method('fetchRow')
|
|
->with(true)
|
|
->will($this->returnValue(null));
|
|
|
|
$GLOBALS['dbi'] = $dbi;
|
|
$GLOBALS['mediawiki_caption'] = true;
|
|
$GLOBALS['mediawiki_headers'] = true;
|
|
|
|
ob_start();
|
|
$this->assertTrue(
|
|
$this->object->exportData(
|
|
'db',
|
|
'table',
|
|
"\n",
|
|
'example.com',
|
|
'SELECT'
|
|
)
|
|
);
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertEquals(
|
|
"\n<!--\n" .
|
|
"Table data for `table`\n" .
|
|
"-->\n" .
|
|
"\n" .
|
|
'{| class="wikitable sortable" style="text-align:' .
|
|
"center;\"\n" .
|
|
"|+'''table'''\n" .
|
|
"|-\n" .
|
|
" ! name1\n" .
|
|
" ! fields\n" .
|
|
"|-\n" .
|
|
" | r1\n" .
|
|
" | r2\n" .
|
|
"|-\n" .
|
|
" | r3\n" .
|
|
" | \n" .
|
|
"|}\n\n",
|
|
$result
|
|
);
|
|
}
|
|
}
|