object = new ExportTexytext(); } /** * tearDown for test cases */ protected function tearDown(): void { parent::tearDown(); unset($this->object); } public function testSetProperties(): void { $method = new ReflectionMethod(ExportTexytext::class, 'setProperties'); $method->setAccessible(true); $method->invoke($this->object, null); $attrProperties = new ReflectionProperty(ExportTexytext::class, 'properties'); $attrProperties->setAccessible(true); $properties = $attrProperties->getValue($this->object); $this->assertInstanceOf(ExportPluginProperties::class, $properties); $this->assertEquals( 'Texy! text', $properties->getText() ); $this->assertEquals( 'txt', $properties->getExtension() ); $this->assertEquals( 'text/plain', $properties->getMimeType() ); $options = $properties->getOptions(); $this->assertInstanceOf(OptionsPropertyRootGroup::class, $options); $this->assertEquals( 'Format Specific Options', $options->getName() ); $generalOptionsArray = $options->getProperties(); $generalOptions = array_shift($generalOptionsArray); $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(RadioPropertyItem::class, $property); $generalOptions = array_shift($generalOptionsArray); $this->assertInstanceOf(OptionsPropertyMainGroup::class, $generalOptions); $this->assertEquals( 'data', $generalOptions->getName() ); $generalProperties = $generalOptions->getProperties(); $property = array_shift($generalProperties); $this->assertInstanceOf(BoolPropertyItem::class, $property); $this->assertEquals( 'columns', $property->getName() ); $property = array_shift($generalProperties); $this->assertInstanceOf(TextPropertyItem::class, $property); $this->assertEquals( 'null', $property->getName() ); } public function testExportHeader(): void { $this->assertTrue( $this->object->exportHeader() ); } public function testExportFooter(): void { $this->assertTrue( $this->object->exportFooter() ); } public function testExportDBHeader(): void { $this->expectOutputString("===Database testDb\n\n"); $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') ); } public function testExportData(): void { $GLOBALS['what'] = 'foo'; $GLOBALS['foo_columns'] = '&'; $GLOBALS['foo_null'] = '>'; ob_start(); $this->assertTrue( $this->object->exportData( 'test_db', 'test_table', "\n", 'localhost', 'SELECT * FROM `test_db`.`test_table`;' ) ); $result = ob_get_clean(); $this->assertIsString($result); $this->assertEquals( '== Dumping data for table test_table' . "\n\n" . '|------' . "\n" . '|id|name|datetimefield' . "\n" . '|------' . "\n" . '|1|abcd|2011-01-20 02:00:02' . "\n" . '|2|foo|2010-01-20 02:00:02' . "\n" . '|3|Abcd|2012-01-20 02:00:02' . "\n", $result ); } public function testGetTableDefStandIn(): void { $this->dummyDbi->addSelectDb('test_db'); $result = $this->object->getTableDefStandIn('test_db', 'test_table', "\n"); $this->assertAllSelectsConsumed(); $this->assertEquals( '|------' . "\n" . '|Column|Type|Null|Default' . "\n" . '|------' . "\n" . '|//**id**//|int(11)|No|NULL' . "\n" . '|name|varchar(20)|No|NULL' . "\n" . '|datetimefield|datetime|No|NULL' . "\n", $result ); } public function testGetTableDef(): void { $this->object = $this->getMockBuilder(ExportTexytext::class) ->onlyMethods(['formatOneColumnDefinition']) ->getMock(); // case 1 $dbi = $this->getMockBuilder(DatabaseInterface::class) ->disableOriginalConstructor() ->getMock(); $keys = [ [ 'Non_unique' => 0, 'Column_name' => 'cname', ], [ '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( [ 'fname' => [ 'foreign_table' => ' 'ffield>', ], ], [ 'fname' => [ 'values' => 'test-', 'transformation' => 'testfoo', 'mimetype' => 'test<', ], ] ); $dbi->expects($this->once()) ->method('fetchValue') ->will( $this->returnValue( 'SELECT a FROM b' ) ); $columns = [ 'Field' => 'fname', 'Comment' => 'comm', ]; $dbi->expects($this->exactly(2)) ->method('getColumns') ->with('db', 'table') ->will($this->returnValue([$columns])); $GLOBALS['dbi'] = $dbi; $this->object->relation = new Relation($dbi); $this->object->expects($this->exactly(1)) ->method('formatOneColumnDefinition') ->with(['Field' => 'fname', 'Comment' => 'comm'], ['cname']) ->will($this->returnValue(1)); $_SESSION['relation'] = []; $_SESSION['relation'][$GLOBALS['server']] = RelationParameters::fromArray([ 'relwork' => true, 'commwork' => true, 'mimework' => true, 'db' => 'database', 'relation' => 'rel', 'column_info' => 'col', ])->toArray(); $result = $this->object->getTableDef('db', 'table', "\n", 'example.com', true, true, true); $this->assertStringContainsString('1|<ftable (ffield>)|comm|Test<', $result); } public function testGetTriggers(): void { $dbi = $this->getMockBuilder(DatabaseInterface::class) ->disableOriginalConstructor() ->getMock(); $triggers = [ [ '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', 'taassertStringContainsString('|tna"me|ac>t|manip&|def', $result); $this->assertStringContainsString('|Name|Time|Event|Definition', $result); } public function testExportStructure(): void { // case 1 ob_start(); $this->dummyDbi->addSelectDb('test_db'); $this->assertTrue( $this->object->exportStructure( 'test_db', 'test_table', "\n", 'localhost', 'create_table', 'test' ) ); $this->assertAllSelectsConsumed(); $result = ob_get_clean(); $this->assertIsString($result); $this->assertEquals( '== Table structure for table test_table' . "\n\n" . '|------' . "\n" . '|Column|Type|Null|Default' . "\n" . '|------' . "\n" . '|//**id**//|int(11)|No|NULL' . "\n" . '|name|varchar(20)|No|NULL' . "\n" . '|datetimefield|datetime|No|NULL' . "\n", $result ); // case 2 ob_start(); $this->assertTrue( $this->object->exportStructure( 'test_db', 'test_table', "\n", 'localhost', 'triggers', 'test' ) ); $result = ob_get_clean(); $this->assertEquals( '== Triggers test_table' . "\n\n" . '|------' . "\n" . '|Name|Time|Event|Definition' . "\n" . '|------' . "\n" . '|test_trigger|AFTER|INSERT|BEGIN END' . "\n", $result ); // case 3 ob_start(); $this->dummyDbi->addSelectDb('test_db'); $this->assertTrue( $this->object->exportStructure( 'test_db', 'test_table', "\n", 'localhost', 'create_view', 'test' ) ); $this->assertAllSelectsConsumed(); $result = ob_get_clean(); $this->assertEquals( '== Structure for view test_table' . "\n\n" . '|------' . "\n" . '|Column|Type|Null|Default' . "\n" . '|------' . "\n" . '|//**id**//|int(11)|No|NULL' . "\n" . '|name|varchar(20)|No|NULL' . "\n" . '|datetimefield|datetime|No|NULL' . "\n", $result ); // case 4 ob_start(); $this->dummyDbi->addSelectDb('test_db'); $this->assertTrue( $this->object->exportStructure( 'test_db', 'test_table', "\n", 'localhost', 'stand_in', 'test' ) ); $this->assertAllSelectsConsumed(); $result = ob_get_clean(); $this->assertEquals( '== Stand-in structure for view test_table' . "\n\n" . '|------' . "\n" . '|Column|Type|Null|Default' . "\n" . '|------' . "\n" . '|//**id**//|int(11)|No|NULL' . "\n" . '|name|varchar(20)|No|NULL' . "\n" . '|datetimefield|datetime|No|NULL' . "\n", $result ); } public function testFormatOneColumnDefinition(): void { $cols = [ 'Null' => 'Yes', 'Field' => 'field', 'Key' => 'PRI', 'Type' => 'set(abc)enum123', ]; $unique_keys = ['field']; $this->assertEquals( '|//**field**//|set(abc)|Yes|NULL', $this->object->formatOneColumnDefinition($cols, $unique_keys) ); $cols = [ 'Null' => 'NO', 'Field' => 'fields', 'Key' => 'COMP', 'Type' => '', 'Default' => 'def', ]; $unique_keys = ['field']; $this->assertEquals( '|fields|&nbsp;|No|def', $this->object->formatOneColumnDefinition($cols, $unique_keys) ); } }