936 lines
26 KiB
PHP
936 lines
26 KiB
PHP
<?php
|
|
/**
|
|
* tests for PhpMyAdmin\Plugins\Export\ExportHtmlword class
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests\Plugins\Export;
|
|
|
|
use PhpMyAdmin\DatabaseInterface;
|
|
use PhpMyAdmin\Plugins\Export\ExportHtmlword;
|
|
use PhpMyAdmin\Relation;
|
|
use PhpMyAdmin\Tests\PmaTestCase;
|
|
use ReflectionMethod;
|
|
use ReflectionProperty;
|
|
use function array_shift;
|
|
use function htmlspecialchars_decode;
|
|
use function ob_get_clean;
|
|
use function ob_start;
|
|
|
|
/**
|
|
* tests for PhpMyAdmin\Plugins\Export\ExportHtmlword class
|
|
*
|
|
* @group medium
|
|
*/
|
|
class ExportHtmlwordTest extends PmaTestCase
|
|
{
|
|
protected $object;
|
|
|
|
/**
|
|
* Configures global environment.
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
$GLOBALS['server'] = 0;
|
|
$this->object = new ExportHtmlword();
|
|
$GLOBALS['output_kanji_conversion'] = false;
|
|
$GLOBALS['output_charset_conversion'] = false;
|
|
$GLOBALS['buffer_needed'] = false;
|
|
$GLOBALS['asfile'] = true;
|
|
$GLOBALS['save_on_server'] = false;
|
|
}
|
|
|
|
/**
|
|
* tearDown for test cases
|
|
*/
|
|
protected function tearDown(): void
|
|
{
|
|
unset($this->object);
|
|
}
|
|
|
|
/**
|
|
* Test for PhpMyAdmin\Plugins\Export\ExportHtmlword::setProperties
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testSetProperties()
|
|
{
|
|
$method = new ReflectionMethod('PhpMyAdmin\Plugins\Export\ExportHtmlword', 'setProperties');
|
|
$method->setAccessible(true);
|
|
$method->invoke($this->object, null);
|
|
|
|
$attrProperties = new ReflectionProperty('PhpMyAdmin\Plugins\Export\ExportHtmlword', 'properties');
|
|
$attrProperties->setAccessible(true);
|
|
$properties = $attrProperties->getValue($this->object);
|
|
|
|
$this->assertInstanceOf(
|
|
'PhpMyAdmin\Properties\Plugins\ExportPluginProperties',
|
|
$properties
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Microsoft Word 2000',
|
|
$properties->getText()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'doc',
|
|
$properties->getExtension()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'application/vnd.ms-word',
|
|
$properties->getMimeType()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Options',
|
|
$properties->getOptionsText()
|
|
);
|
|
|
|
$this->assertTrue(
|
|
$properties->getForceFile()
|
|
);
|
|
|
|
$options = $properties->getOptions();
|
|
|
|
$this->assertInstanceOf(
|
|
'PhpMyAdmin\Properties\Options\Groups\OptionsPropertyRootGroup',
|
|
$options
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Format Specific Options',
|
|
$options->getName()
|
|
);
|
|
|
|
$generalOptionsArray = $options->getProperties();
|
|
$generalOptions = $generalOptionsArray[0];
|
|
|
|
$this->assertInstanceOf(
|
|
'PhpMyAdmin\Properties\Options\Groups\OptionsPropertyMainGroup',
|
|
$generalOptions
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'dump_what',
|
|
$generalOptions->getName()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Dump table',
|
|
$generalOptions->getText()
|
|
);
|
|
|
|
$generalProperties = $generalOptions->getProperties();
|
|
|
|
$property = array_shift($generalProperties);
|
|
|
|
$this->assertInstanceOf(
|
|
'PhpMyAdmin\Properties\Options\Items\RadioPropertyItem',
|
|
$property
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'structure_or_data',
|
|
$property->getName()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
[
|
|
'structure' => __('structure'),
|
|
'data' => __('data'),
|
|
'structure_and_data' => __('structure and data'),
|
|
],
|
|
$property->getValues()
|
|
);
|
|
|
|
$generalOptions = $generalOptionsArray[1];
|
|
|
|
$this->assertInstanceOf(
|
|
'PhpMyAdmin\Properties\Options\Groups\OptionsPropertyMainGroup',
|
|
$generalOptions
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'dump_what',
|
|
$generalOptions->getName()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Data dump options',
|
|
$generalOptions->getText()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'structure',
|
|
$generalOptions->getForce()
|
|
);
|
|
|
|
$generalProperties = $generalOptions->getProperties();
|
|
|
|
$property = array_shift($generalProperties);
|
|
|
|
$this->assertInstanceOf(
|
|
'PhpMyAdmin\Properties\Options\Items\TextPropertyItem',
|
|
$property
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'null',
|
|
$property->getName()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Replace NULL with:',
|
|
$property->getText()
|
|
);
|
|
|
|
$property = array_shift($generalProperties);
|
|
|
|
$this->assertInstanceOf(
|
|
'PhpMyAdmin\Properties\Options\Items\BoolPropertyItem',
|
|
$property
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'columns',
|
|
$property->getName()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Put columns names in the first row',
|
|
$property->getText()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PhpMyAdmin\Plugins\Export\ExportHtmlword::exportHeader
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExportHeader()
|
|
{
|
|
ob_start();
|
|
$this->object->exportHeader();
|
|
$result = ob_get_clean();
|
|
|
|
$expected
|
|
= '<html xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
xmlns:x="urn:schemas-microsoft-com:office:word"
|
|
xmlns="http://www.w3.org/TR/REC-html40">
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"'
|
|
. ' "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html;charset='
|
|
. 'utf-8" />
|
|
</head>
|
|
<body>';
|
|
|
|
$this->assertEquals(
|
|
$expected,
|
|
$result
|
|
);
|
|
|
|
// case 2
|
|
|
|
$GLOBALS['charset'] = 'ISO-8859-1';
|
|
ob_start();
|
|
$this->object->exportHeader();
|
|
$result = ob_get_clean();
|
|
|
|
$expected
|
|
= '<html xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
xmlns:x="urn:schemas-microsoft-com:office:word"
|
|
xmlns="http://www.w3.org/TR/REC-html40">
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"'
|
|
. ' "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html;charset='
|
|
. 'ISO-8859-1" />
|
|
</head>
|
|
<body>';
|
|
|
|
$this->assertEquals(
|
|
$expected,
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PhpMyAdmin\Plugins\Export\ExportHtmlword::exportFooter
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExportFooter()
|
|
{
|
|
ob_start();
|
|
$this->assertTrue(
|
|
$this->object->exportFooter()
|
|
);
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertEquals(
|
|
'</body></html>',
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PhpMyAdmin\Plugins\Export\ExportHtmlword::exportDBHeader
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExportDBHeader()
|
|
{
|
|
ob_start();
|
|
$this->assertTrue(
|
|
$this->object->exportDBHeader('d"b')
|
|
);
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertEquals(
|
|
'<h1>Database d"b</h1>',
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PhpMyAdmin\Plugins\Export\ExportHtmlword::exportDBFooter
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExportDBFooter()
|
|
{
|
|
$this->assertTrue(
|
|
$this->object->exportDBFooter('testDB')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PhpMyAdmin\Plugins\Export\ExportHtmlword::exportDBCreate
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExportDBCreate()
|
|
{
|
|
$this->assertTrue(
|
|
$this->object->exportDBCreate('testDB', 'database')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PhpMyAdmin\Plugins\Export\ExportHtmlword::exportData
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExportData()
|
|
{
|
|
// case 1
|
|
|
|
$dbi = $this->getMockBuilder('PhpMyAdmin\DatabaseInterface')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$dbi->expects($this->once())
|
|
->method('query')
|
|
->with('test', DatabaseInterface::CONNECT_USER, DatabaseInterface::QUERY_UNBUFFERED)
|
|
->will($this->returnValue(true));
|
|
|
|
$dbi->expects($this->once())
|
|
->method('numFields')
|
|
->with(true)
|
|
->will($this->returnValue(5));
|
|
|
|
$dbi->expects($this->any())
|
|
->method('fieldName')
|
|
->will($this->returnValue("foo\\bar"));
|
|
|
|
$dbi->expects($this->at(7))
|
|
->method('fetchRow')
|
|
->with(true)
|
|
->will($this->returnValue([null, '0', 'test', false]));
|
|
|
|
$dbi->expects($this->at(8))
|
|
->method('fetchRow')
|
|
->with(true)
|
|
->will($this->returnValue(null));
|
|
$GLOBALS['dbi'] = $dbi;
|
|
|
|
$GLOBALS['htmlword_columns'] = true;
|
|
$GLOBALS['what'] = 'UT';
|
|
$GLOBALS['UT_null'] = 'customNull';
|
|
$GLOBALS['output_kanji_conversion'] = false;
|
|
$GLOBALS['output_charset_conversion'] = false;
|
|
$GLOBALS['buffer_needed'] = false;
|
|
$GLOBALS['asfile'] = true;
|
|
$GLOBALS['save_on_server'] = false;
|
|
|
|
ob_start();
|
|
$this->assertTrue(
|
|
$this->object->exportData(
|
|
'testDB',
|
|
'testTable',
|
|
"\n",
|
|
'example.com',
|
|
'test'
|
|
)
|
|
);
|
|
$result = htmlspecialchars_decode(ob_get_clean());
|
|
|
|
$this->assertEquals(
|
|
'<h2>Dumping data for table testTable</h2>' .
|
|
'<table class="w-100" cellspacing="1"><tr class="print-category">' .
|
|
'<td class="print"><strong>foobar</strong></td>' .
|
|
'<td class="print"><strong>foobar</strong></td>' .
|
|
'<td class="print"><strong>foobar</strong></td>' .
|
|
'<td class="print"><strong>foobar</strong></td>' .
|
|
'<td class="print"><strong>foobar</strong></td>' .
|
|
'</tr><tr class="print-category"><td class="print">' .
|
|
'customNull</td><td class="print">0</td><td class="print">test</td>' .
|
|
'<td class="print"></td><td class="print">customNull</td></tr></table>',
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PhpMyAdmin\Plugins\Export\ExportHtmlword::getTableDefStandIn
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetTableDefStandIn()
|
|
{
|
|
$this->object = $this->getMockBuilder('PhpMyAdmin\Plugins\Export\ExportHtmlword')
|
|
->setMethods(['formatOneColumnDefinition'])
|
|
->getMock();
|
|
|
|
// case 1
|
|
|
|
$keys = [
|
|
[
|
|
'Non_unique' => 0,
|
|
'Column_name' => 'name1',
|
|
],
|
|
[
|
|
'Non_unique' => 1,
|
|
'Column_name' => 'name2',
|
|
],
|
|
];
|
|
|
|
$dbi = $this->getMockBuilder('PhpMyAdmin\DatabaseInterface')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$dbi->expects($this->once())
|
|
->method('getTableIndexes')
|
|
->with('database', 'view')
|
|
->will($this->returnValue($keys));
|
|
|
|
$dbi->expects($this->once())
|
|
->method('getColumns')
|
|
->with('database', 'view')
|
|
->will($this->returnValue([['Field' => 'column']]));
|
|
|
|
$GLOBALS['dbi'] = $dbi;
|
|
|
|
$this->object->expects($this->once())
|
|
->method('formatOneColumnDefinition')
|
|
->with(['Field' => 'column'], ['name1'], 'column')
|
|
->will($this->returnValue(1));
|
|
|
|
$this->assertEquals(
|
|
'<table class="w-100" cellspacing="1">' .
|
|
'<tr class="print-category"><th class="print">Column</th>' .
|
|
'<td class="print"><strong>Type</strong></td>' .
|
|
'<td class="print"><strong>Null</strong></td>' .
|
|
'<td class="print"><strong>Default</strong></td></tr>' .
|
|
'1</tr></table>',
|
|
$this->object->getTableDefStandIn('database', 'view', "\n")
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PhpMyAdmin\Plugins\Export\ExportHtmlword::getTableDef
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetTableDef()
|
|
{
|
|
$this->object = $this->getMockBuilder('PhpMyAdmin\Plugins\Export\ExportHtmlword')
|
|
->setMethods(['formatOneColumnDefinition'])
|
|
->getMock();
|
|
|
|
$keys = [
|
|
[
|
|
'Non_unique' => 0,
|
|
'Column_name' => 'name1',
|
|
],
|
|
[
|
|
'Non_unique' => 1,
|
|
'Column_name' => 'name2',
|
|
],
|
|
];
|
|
|
|
// case 1
|
|
|
|
$dbi = $this->getMockBuilder('PhpMyAdmin\DatabaseInterface')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$dbi->expects($this->exactly(2))
|
|
->method('fetchResult')
|
|
->willReturnOnConsecutiveCalls(
|
|
[],
|
|
[
|
|
'fieldname' => [
|
|
'values' => 'test-',
|
|
'transformation' => 'testfoo',
|
|
'mimetype' => 'test<',
|
|
],
|
|
]
|
|
);
|
|
|
|
$dbi->expects($this->once())
|
|
->method('getTableIndexes')
|
|
->with('database', '')
|
|
->will($this->returnValue($keys));
|
|
|
|
$columns = [
|
|
'Field' => 'fieldname',
|
|
];
|
|
$dbi->expects($this->once())
|
|
->method('getColumns')
|
|
->with('database', '')
|
|
->will($this->returnValue([$columns]));
|
|
|
|
$dbi->expects($this->any())
|
|
->method('query')
|
|
->will($this->returnValue(true));
|
|
|
|
$dbi->expects($this->any())
|
|
->method('numRows')
|
|
->will($this->returnValue(1));
|
|
|
|
$dbi->expects($this->any())
|
|
->method('fetchAssoc')
|
|
->will(
|
|
$this->returnValue(
|
|
[
|
|
'comment' => ['fieldname' => 'testComment'],
|
|
]
|
|
)
|
|
);
|
|
$dbi->expects($this->any())->method('escapeString')
|
|
->will($this->returnArgument(0));
|
|
|
|
$GLOBALS['dbi'] = $dbi;
|
|
$this->object->relation = new Relation($dbi);
|
|
|
|
$this->object->expects($this->exactly(3))
|
|
->method('formatOneColumnDefinition')
|
|
->with($columns, ['name1'])
|
|
->will($this->returnValue(1));
|
|
|
|
$GLOBALS['cfgRelation']['relation'] = true;
|
|
$_SESSION['relation'][0] = [
|
|
'PMA_VERSION' => PMA_VERSION,
|
|
'relwork' => true,
|
|
'commwork' => true,
|
|
'mimework' => true,
|
|
'db' => 'database',
|
|
'relation' => 'rel',
|
|
'column_info' => 'col',
|
|
];
|
|
|
|
$result = $this->object->getTableDef(
|
|
'database',
|
|
'',
|
|
true,
|
|
true,
|
|
true
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'<table class="w-100" cellspacing="1">' .
|
|
'<tr class="print-category"><th class="print">Column</th>' .
|
|
'<td class="print"><strong>Type</strong></td>' .
|
|
'<td class="print"><strong>Null</strong></td>' .
|
|
'<td class="print"><strong>Default</strong></td>' .
|
|
'<td class="print"><strong>Comments</strong></td>' .
|
|
'<td class="print"><strong>Media type</strong></td></tr>' .
|
|
'1<td class="print"></td><td class="print">Test<</td></tr></table>',
|
|
$result
|
|
);
|
|
|
|
// case 2
|
|
|
|
$dbi = $this->getMockBuilder('PhpMyAdmin\DatabaseInterface')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$dbi->expects($this->exactly(2))
|
|
->method('fetchResult')
|
|
->willReturnOnConsecutiveCalls(
|
|
[
|
|
'fieldname' => [
|
|
'foreign_table' => 'ftable',
|
|
'foreign_field' => 'ffield',
|
|
],
|
|
],
|
|
[
|
|
'field' => [
|
|
'values' => 'test-',
|
|
'transformation' => 'testfoo',
|
|
'mimetype' => 'test<',
|
|
],
|
|
]
|
|
);
|
|
|
|
$dbi->expects($this->once())
|
|
->method('getTableIndexes')
|
|
->with('database', '')
|
|
->will($this->returnValue($keys));
|
|
|
|
$columns = [
|
|
'Field' => 'fieldname',
|
|
];
|
|
|
|
$dbi->expects($this->once())
|
|
->method('getColumns')
|
|
->with('database', '')
|
|
->will($this->returnValue([$columns]));
|
|
|
|
$dbi->expects($this->any())
|
|
->method('query')
|
|
->will($this->returnValue(true));
|
|
|
|
$dbi->expects($this->any())
|
|
->method('numRows')
|
|
->will($this->returnValue(1));
|
|
|
|
$dbi->expects($this->any())
|
|
->method('fetchAssoc')
|
|
->will(
|
|
$this->returnValue(
|
|
[
|
|
'comment' => ['field' => 'testComment'],
|
|
]
|
|
)
|
|
);
|
|
$dbi->expects($this->any())->method('escapeString')
|
|
->will($this->returnArgument(0));
|
|
|
|
$GLOBALS['dbi'] = $dbi;
|
|
$this->object->relation = new Relation($dbi);
|
|
|
|
$GLOBALS['cfgRelation']['relation'] = true;
|
|
$_SESSION['relation'][0] = [
|
|
'PMA_VERSION' => PMA_VERSION,
|
|
'relwork' => true,
|
|
'commwork' => true,
|
|
'mimework' => true,
|
|
'db' => 'database',
|
|
'relation' => 'rel',
|
|
'column_info' => 'col',
|
|
];
|
|
|
|
$result = $this->object->getTableDef(
|
|
'database',
|
|
'',
|
|
true,
|
|
true,
|
|
true
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<td class="print">ftable (ffield)</td>',
|
|
$result
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<td class="print"></td><td class="print"></td>',
|
|
$result
|
|
);
|
|
|
|
// case 3
|
|
|
|
$dbi = $this->getMockBuilder('PhpMyAdmin\DatabaseInterface')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$dbi->expects($this->once())
|
|
->method('getTableIndexes')
|
|
->with('database', '')
|
|
->will($this->returnValue($keys));
|
|
|
|
$columns = [
|
|
'Field' => 'fieldname',
|
|
];
|
|
|
|
$dbi->expects($this->once())
|
|
->method('getColumns')
|
|
->with('database', '')
|
|
->will($this->returnValue([$columns]));
|
|
|
|
$dbi->expects($this->any())
|
|
->method('query')
|
|
->will($this->returnValue(true));
|
|
|
|
$dbi->expects($this->any())
|
|
->method('numRows')
|
|
->will($this->returnValue(1));
|
|
|
|
$dbi->expects($this->any())
|
|
->method('fetchAssoc')
|
|
->will(
|
|
$this->returnValue(
|
|
[
|
|
'comment' => ['field' => 'testComment'],
|
|
]
|
|
)
|
|
);
|
|
$dbi->expects($this->any())->method('escapeString')
|
|
->will($this->returnArgument(0));
|
|
|
|
$GLOBALS['dbi'] = $dbi;
|
|
|
|
$GLOBALS['cfgRelation']['relation'] = true;
|
|
$_SESSION['relation'][0] = [
|
|
'PMA_VERSION' => PMA_VERSION,
|
|
'relwork' => false,
|
|
'commwork' => false,
|
|
'mimework' => false,
|
|
'db' => 'database',
|
|
'relation' => 'rel',
|
|
'column_info' => 'col',
|
|
];
|
|
|
|
$result = $this->object->getTableDef(
|
|
'database',
|
|
'',
|
|
false,
|
|
false,
|
|
false
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'<table class="w-100" cellspacing="1">' .
|
|
'<tr class="print-category"><th class="print">Column</th>' .
|
|
'<td class="print"><strong>Type</strong></td>' .
|
|
'<td class="print"><strong>Null</strong></td>' .
|
|
'<td class="print"><strong>Default</strong></td></tr>1</tr></table>',
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PhpMyAdmin\Plugins\Export\ExportHtmlword::getTriggers
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetTriggers()
|
|
{
|
|
$dbi = $this->getMockBuilder('PhpMyAdmin\DatabaseInterface')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$triggers = [
|
|
[
|
|
'name' => 'tna"me',
|
|
'action_timing' => 'ac>t',
|
|
'event_manipulation' => 'manip&',
|
|
'definition' => 'def',
|
|
],
|
|
];
|
|
|
|
$dbi->expects($this->once())
|
|
->method('getTriggers')
|
|
->with('database', 'table')
|
|
->will($this->returnValue($triggers));
|
|
|
|
$GLOBALS['dbi'] = $dbi;
|
|
|
|
$method = new ReflectionMethod('PhpMyAdmin\Plugins\Export\ExportHtmlword', 'getTriggers');
|
|
$method->setAccessible(true);
|
|
$result = $method->invoke($this->object, 'database', 'table');
|
|
|
|
$this->assertStringContainsString(
|
|
'<td class="print">tna"me</td>' .
|
|
'<td class="print">ac>t</td>' .
|
|
'<td class="print">manip&</td>' .
|
|
'<td class="print">def</td>',
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PhpMyAdmin\Plugins\Export\ExportHtmlword::exportStructure
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExportStructure()
|
|
{
|
|
$dbi = $this->getMockBuilder('PhpMyAdmin\DatabaseInterface')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$dbi->expects($this->once())
|
|
->method('getTriggers')
|
|
->with('db', 'tbl')
|
|
->will($this->returnValue(1));
|
|
|
|
$this->object = $this->getMockBuilder('PhpMyAdmin\Plugins\Export\ExportHtmlword')
|
|
->setMethods(['getTableDef', 'getTriggers', 'getTableDefStandIn'])
|
|
->getMock();
|
|
|
|
$this->object->expects($this->at(0))
|
|
->method('getTableDef')
|
|
->with('db', 'tbl', false, false, false, false)
|
|
->will($this->returnValue('dumpText1'));
|
|
|
|
$this->object->expects($this->once())
|
|
->method('getTriggers')
|
|
->with('db', 'tbl')
|
|
->will($this->returnValue('dumpText2'));
|
|
|
|
$this->object->expects($this->at(2))
|
|
->method('getTableDef')
|
|
->with('db', 'tbl', false, false, false, true, [])
|
|
->will($this->returnValue('dumpText3'));
|
|
|
|
$this->object->expects($this->once())
|
|
->method('getTableDefStandIn')
|
|
->with('db', 'tbl', "\n")
|
|
->will($this->returnValue('dumpText4'));
|
|
|
|
$GLOBALS['dbi'] = $dbi;
|
|
|
|
ob_start();
|
|
$this->assertTrue(
|
|
$this->object->exportStructure(
|
|
'db',
|
|
'tbl',
|
|
"\n",
|
|
'example.com',
|
|
'create_table',
|
|
'test'
|
|
)
|
|
);
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertEquals(
|
|
'<h2>Table structure for table tbl</h2>dumpText1',
|
|
$result
|
|
);
|
|
|
|
ob_start();
|
|
$this->assertTrue(
|
|
$this->object->exportStructure(
|
|
'db',
|
|
'tbl',
|
|
"\n",
|
|
'example.com',
|
|
'triggers',
|
|
'test'
|
|
)
|
|
);
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertEquals(
|
|
'<h2>Triggers tbl</h2>dumpText2',
|
|
$result
|
|
);
|
|
|
|
ob_start();
|
|
$this->assertTrue(
|
|
$this->object->exportStructure(
|
|
'db',
|
|
'tbl',
|
|
"\n",
|
|
'example.com',
|
|
'create_view',
|
|
'test'
|
|
)
|
|
);
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertEquals(
|
|
'<h2>Structure for view tbl</h2>dumpText3',
|
|
$result
|
|
);
|
|
|
|
ob_start();
|
|
$this->assertTrue(
|
|
$this->object->exportStructure(
|
|
'db',
|
|
'tbl',
|
|
"\n",
|
|
'example.com',
|
|
'stand_in',
|
|
'test'
|
|
)
|
|
);
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertEquals(
|
|
'<h2>Stand-in structure for view tbl</h2>dumpText4',
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PhpMyAdmin\Plugins\Export\ExportHtmlword::formatOneColumnDefinition
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testFormatOneColumnDefinition()
|
|
{
|
|
$method = new ReflectionMethod(
|
|
'PhpMyAdmin\Plugins\Export\ExportHtmlword',
|
|
'formatOneColumnDefinition'
|
|
);
|
|
$method->setAccessible(true);
|
|
|
|
$cols = [
|
|
'Null' => 'Yes',
|
|
'Field' => 'field',
|
|
'Key' => 'PRI',
|
|
'Type' => 'set(abc)enum123',
|
|
];
|
|
|
|
$unique_keys = [
|
|
'field',
|
|
];
|
|
|
|
$this->assertEquals(
|
|
'<tr class="print-category"><td class="print"><em>' .
|
|
'<strong>field</strong></em></td><td class="print">set(abc)</td>' .
|
|
'<td class="print">Yes</td><td class="print">NULL</td>',
|
|
$method->invoke($this->object, $cols, $unique_keys)
|
|
);
|
|
|
|
$cols = [
|
|
'Null' => 'NO',
|
|
'Field' => 'fields',
|
|
'Key' => 'COMP',
|
|
'Type' => '',
|
|
'Default' => 'def',
|
|
];
|
|
|
|
$unique_keys = [
|
|
'field',
|
|
];
|
|
|
|
$this->assertEquals(
|
|
'<tr class="print-category"><td class="print">fields</td>' .
|
|
'<td class="print">&nbsp;</td><td class="print">No</td>' .
|
|
'<td class="print">def</td>',
|
|
$method->invoke($this->object, $cols, $unique_keys)
|
|
);
|
|
}
|
|
}
|