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', 'taassertContains( "|fName1|fNa&quot;me2|fName3", $result ); $this->assertContains( "|&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' => ' '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|<ftable (ffield>)|comm|Test<', $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', 'tawill($this->returnValue($triggers)); $GLOBALS['dbi'] = $dbi; $result = $this->object->getTriggers('database', 'taassertContains( '|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&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&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&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&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|&nbsp;|No|def', $this->object->formatOneColumnDefinition($cols, $unique_keys) ); } }