Leitgedanken/#pma/test/classes/plugin/export/ExportTexytextTest.php
2022-11-21 09:47:28 +01:00

646 lines
17 KiB
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* tests for PMA\libraries\plugins\export\ExportTexytext class
*
* @package PhpMyAdmin-test
*/
use PMA\libraries\plugins\export\ExportTexytext;
require_once 'libraries/export.lib.php';
require_once 'libraries/config.default.php';
require_once 'libraries/relation.lib.php';
require_once 'libraries/transformations.lib.php';
require_once 'export.php';
require_once 'test/PMATestCase.php';
/**
* tests for PMA\libraries\plugins\export\ExportTexytext class
*
* @package PhpMyAdmin-test
* @group medium
*/
class ExportTexytextTest extends PMATestCase
{
protected $object;
/**
* Configures global environment.
*
* @return void
*/
function setup()
{
$GLOBALS['server'] = 0;
$GLOBALS['output_kanji_conversion'] = false;
$GLOBALS['buffer_needed'] = false;
$GLOBALS['asfile'] = false;
$GLOBALS['save_on_server'] = false;
$GLOBALS['plugin_param'] = array();
$GLOBALS['plugin_param']['export_type'] = 'table';
$GLOBALS['plugin_param']['single_table'] = false;
$GLOBALS['cfgRelation']['relation'] = true;
$this->object = new ExportTexytext();
}
/**
* tearDown for test cases
*
* @return void
*/
public function tearDown()
{
unset($this->object);
}
/**
* Test for PMA\libraries\plugins\export\ExportTexytext::setProperties
*
* @return void
*/
public function testSetProperties()
{
$method = new ReflectionMethod('PMA\libraries\plugins\export\ExportTexytext', 'setProperties');
$method->setAccessible(true);
$method->invoke($this->object, null);
$attrProperties = new ReflectionProperty('PMA\libraries\plugins\export\ExportTexytext', 'properties');
$attrProperties->setAccessible(true);
$properties = $attrProperties->getValue($this->object);
$this->assertInstanceOf(
'PMA\libraries\properties\plugins\ExportPluginProperties',
$properties
);
$this->assertEquals(
'Texy! text',
$properties->getText()
);
$this->assertEquals(
'txt',
$properties->getExtension()
);
$this->assertEquals(
'text/plain',
$properties->getMimeType()
);
$options = $properties->getOptions();
$this->assertInstanceOf(
'PMA\libraries\properties\options\groups\OptionsPropertyRootGroup',
$options
);
$this->assertEquals(
'Format Specific Options',
$options->getName()
);
$generalOptionsArray = $options->getProperties();
$generalOptions = array_shift($generalOptionsArray);
$this->assertInstanceOf(
'PMA\libraries\properties\options\groups\OptionsPropertyMainGroup',
$generalOptions
);
$this->assertEquals(
'general_opts',
$generalOptions->getName()
);
$this->assertEquals(
"Dump table",
$generalOptions->getText()
);
$generalProperties = $generalOptions->getProperties();
$property = array_shift($generalProperties);
$this->assertInstanceOf(
'PMA\libraries\properties\options\items\RadioPropertyItem',
$property
);
$generalOptions = array_shift($generalOptionsArray);
$this->assertInstanceOf(
'PMA\libraries\properties\options\groups\OptionsPropertyMainGroup',
$generalOptions
);
$this->assertEquals(
'data',
$generalOptions->getName()
);
$generalProperties = $generalOptions->getProperties();
$property = array_shift($generalProperties);
$this->assertInstanceOf(
'PMA\libraries\properties\options\items\BoolPropertyItem',
$property
);
$this->assertEquals(
'columns',
$property->getName()
);
$property = array_shift($generalProperties);
$this->assertInstanceOf(
'PMA\libraries\properties\options\items\TextPropertyItem',
$property
);
$this->assertEquals(
'null',
$property->getName()
);
}
/**
* Test for PMA\libraries\plugins\export\ExportTexytext::exportHeader
*
* @return void
*/
public function testExportHeader()
{
$this->assertTrue(
$this->object->exportHeader()
);
}
/**
* Test for PMA\libraries\plugins\export\ExportTexytext::exportFooter
*
* @return void
*/
public function testExportFooter()
{
$this->assertTrue(
$this->object->exportFooter()
);
}
/**
* Test for PMA\libraries\plugins\export\ExportTexytext::exportDBHeader
*
* @return void
*/
public function testExportDBHeader()
{
$this->expectOutputString(
"===Database testDb\n\n"
);
$this->assertTrue(
$this->object->exportDBHeader('testDb')
);
}
/**
* Test for PMA\libraries\plugins\export\ExportTexytext::exportDBFooter
*
* @return void
*/
public function testExportDBFooter()
{
$this->assertTrue(
$this->object->exportDBFooter('testDB')
);
}
/**
* Test for PMA\libraries\plugins\export\ExportTexytext::exportDBCreate
*
* @return void
*/
public function testExportDBCreate()
{
$this->assertTrue(
$this->object->exportDBCreate('testDB', 'database')
);
}
/**
* Test for PMA\libraries\plugins\export\ExportTexytext::exportData
*
* @return void
*/
public function testExportData()
{
$dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface')
->disableOriginalConstructor()
->getMock();
$dbi->expects($this->once())
->method('query')
->with('SELECT', null, PMA\libraries\DatabaseInterface::QUERY_UNBUFFERED)
->will($this->returnValue(true));
$dbi->expects($this->once())
->method('numFields')
->with(true)
->will($this->returnValue(3));
$dbi->expects($this->at(2))
->method('fieldName')
->will($this->returnValue('fName1'));
$dbi->expects($this->at(3))
->method('fieldName')
->will($this->returnValue('fNa"me2'));
$dbi->expects($this->at(4))
->method('fieldName')
->will($this->returnValue('fName3'));
$dbi->expects($this->at(5))
->method('fetchRow')
->with(true)
->will($this->returnValue(array(null, '0', 'test')));
$GLOBALS['dbi'] = $dbi;
$GLOBALS['what'] = 'foo';
$GLOBALS['foo_columns'] = "&";
$GLOBALS['foo_null'] = ">";
ob_start();
$this->assertTrue(
$this->object->exportData(
'db', 'ta<ble', "\n", "example.com", "SELECT"
)
);
$result = ob_get_clean();
$this->assertContains(
"|fName1|fNa&amp;quot;me2|fName3",
$result
);
$this->assertContains(
"|&amp;gt;|0|test",
$result
);
}
/**
* Test for PMA\libraries\plugins\export\ExportTexytext::getTableDefStandIn
*
* @return void
*/
public function testGetTableDefStandIn()
{
$dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface')
->disableOriginalConstructor()
->getMock();
$dbi->expects($this->once())
->method('getColumns')
->with('db', 'view')
->will($this->returnValue(array(1, 2)));
$keys = array(
array(
'Non_unique' => 0,
'Column_name' => 'cname'
),
array(
'Non_unique' => 1,
'Column_name' => 'cname2'
)
);
$dbi->expects($this->once())
->method('getTableIndexes')
->with('db', 'view')
->will($this->returnValue($keys));
$dbi->expects($this->once())
->method('selectDb')
->with('db');
$GLOBALS['dbi'] = $dbi;
$this->object = $this->getMockBuilder('PMA\libraries\plugins\export\ExportTexytext')
->disableOriginalConstructor()
->setMethods(array('formatOneColumnDefinition'))
->getMock();
$this->object->expects($this->at(0))
->method('formatOneColumnDefinition')
->with(1, array('cname'))
->will($this->returnValue('c1'));
$this->object->expects($this->at(1))
->method('formatOneColumnDefinition')
->with(2, array('cname'))
->will($this->returnValue('c2'));
$result = $this->object->getTableDefStandIn('db', 'view', '#');
$this->assertContains(
"c1\nc2",
$result
);
}
/**
* Test for PMA\libraries\plugins\export\ExportTexytext::getTableDef
*
* @return void
*/
public function testGetTableDef()
{
$this->object = $this->getMockBuilder('PMA\libraries\plugins\export\ExportTexytext')
->setMethods(array('formatOneColumnDefinition'))
->getMock();
$GLOBALS['controllink'] = null;
// case 1
$dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface')
->disableOriginalConstructor()
->getMock();
$keys = array(
array(
'Non_unique' => 0,
'Column_name' => 'cname'
),
array(
'Non_unique' => 1,
'Column_name' => 'cname2'
)
);
$dbi->expects($this->once())
->method('getTableIndexes')
->with('db', 'table')
->will($this->returnValue($keys));
$dbi->expects($this->exactly(2))
->method('fetchResult')
->willReturnOnConsecutiveCalls(
array(
'fname' => array(
'foreign_table' => '<ftable',
'foreign_field' => 'ffield>'
)
),
array(
'fname' => array(
'values' => 'test-',
'transformation' => 'testfoo',
'mimetype' => 'test<'
)
)
);
$dbi->expects($this->once())
->method('fetchValue')
->will(
$this->returnValue(
'SELECT a FROM b'
)
);
$columns = array(
'Field' => 'fname',
'Comment' => 'comm'
);
$dbi->expects($this->exactly(2))
->method('getColumns')
->with('db', 'table')
->will($this->returnValue(array($columns)));
$GLOBALS['dbi'] = $dbi;
$this->object->expects($this->exactly(1))
->method('formatOneColumnDefinition')
->with(array('Field' => 'fname', 'Comment' => 'comm'), array('cname'))
->will($this->returnValue(1));
$GLOBALS['cfgRelation']['relation'] = true;
$_SESSION['relation'][0] = array(
'PMA_VERSION' => PMA_VERSION,
'relwork' => true,
'commwork' => true,
'mimework' => true,
'db' => 'db',
'relation' => 'rel',
'column_info' => 'col'
);
$result = $this->object->getTableDef(
'db',
'table',
"\n",
"example.com",
true,
true,
true
);
$this->assertContains(
'1|&lt;ftable (ffield&gt;)|comm|Test&lt;',
$result
);
}
/**
* Test for PMA\libraries\plugins\export\ExportTexytext::getTriggers
*
* @return void
*/
public function testGetTriggers()
{
$dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface')
->disableOriginalConstructor()
->getMock();
$triggers = array(
array(
'name' => 'tna"me',
'action_timing' => 'ac>t',
'event_manipulation' => 'manip&',
'definition' => 'def'
)
);
$dbi->expects($this->once())
->method('getTriggers')
->with('database', 'ta<ble')
->will($this->returnValue($triggers));
$GLOBALS['dbi'] = $dbi;
$result = $this->object->getTriggers('database', 'ta<ble');
$this->assertContains(
'|tna"me|ac>t|manip&|def',
$result
);
$this->assertContains(
'|Name|Time|Event|Definition',
$result
);
}
/**
* Test for PMA\libraries\plugins\export\ExportTexytext::exportStructure
*
* @return void
*/
public function testExportStructure()
{
$dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface')
->disableOriginalConstructor()
->getMock();
$dbi->expects($this->once())
->method('getTriggers')
->with('db', 't&bl')
->will($this->returnValue(1));
$this->object = $this->getMockBuilder('PMA\libraries\plugins\export\ExportTexytext')
->setMethods(array('getTableDef', 'getTriggers', 'getTableDefStandIn'))
->getMock();
$this->object->expects($this->at(0))
->method('getTableDef')
->with('db', 't&bl', "\n", "example.com", false, false, false, false)
->will($this->returnValue('dumpText1'));
$this->object->expects($this->once())
->method('getTriggers')
->with('db', 't&bl')
->will($this->returnValue('dumpText2'));
$this->object->expects($this->at(2))
->method('getTableDef')
->with(
'db', 't&bl', "\n", "example.com",
false, false, false, false, true, true
)
->will($this->returnValue('dumpText3'));
$this->object->expects($this->once())
->method('getTableDefStandIn')
->with('db', 't&bl', "\n")
->will($this->returnValue('dumpText4'));
$GLOBALS['dbi'] = $dbi;
// case 1
ob_start();
$this->assertTrue(
$this->object->exportStructure(
'db', 't&bl', "\n", "example.com", "create_table", "test"
)
);
$result = ob_get_clean();
$this->assertContains(
'== Table structure for table t&amp;bl' . "\n\ndumpText1",
$result
);
// case 2
ob_start();
$this->assertTrue(
$this->object->exportStructure(
'db', 't&bl', "\n", "example.com", "triggers", "test"
)
);
$result = ob_get_clean();
$this->assertEquals(
'== Triggers t&amp;bl' . "\n\ndumpText2",
$result
);
// case 3
ob_start();
$this->assertTrue(
$this->object->exportStructure(
'db', 't&bl', "\n", "example.com", "create_view", "test"
)
);
$result = ob_get_clean();
$this->assertEquals(
'== Structure for view t&amp;bl' . "\n\ndumpText3",
$result
);
// case 4
ob_start();
$this->assertTrue(
$this->object->exportStructure(
'db', 't&bl', "\n", "example.com", "stand_in", "test"
)
);
$result = ob_get_clean();
$this->assertEquals(
'== Stand-in structure for view t&amp;bl' . "\n\ndumpText4",
$result
);
}
/**
* Test for PMA\libraries\plugins\export\ExportTexytext::formatOneColumnDefinition
*
* @return void
*/
public function testFormatOneColumnDefinition()
{
$cols = array(
'Null' => 'Yes',
'Field' => 'field',
'Key' => 'PRI',
'Type' => 'set(abc)enum123'
);
$unique_keys = array(
'field'
);
$this->assertEquals(
'|//**field**//|set(abc)|Yes|NULL',
$this->object->formatOneColumnDefinition($cols, $unique_keys)
);
$cols = array(
'Null' => 'NO',
'Field' => 'fields',
'Key' => 'COMP',
'Type' => '',
'Default' => 'def'
);
$unique_keys = array(
'field'
);
$this->assertEquals(
'|fields|&amp;nbsp;|No|def',
$this->object->formatOneColumnDefinition($cols, $unique_keys)
);
}
}