1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests;
use PhpMyAdmin\ConfigStorage\RelationParameters;
use PhpMyAdmin\DatabaseInterface;
use PhpMyAdmin\SystemDatabase;
use PhpMyAdmin\Tests\Stubs\DummyResult;
/**
* @covers \PhpMyAdmin\SystemDatabase
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\PhpMyAdmin\SystemDatabase::class)]
class SystemDatabaseTest extends AbstractTestCase
{
/**
* SystemDatabase instance
*
* @var SystemDatabase
*/
private $sysDb;
/**
* Setup function for test cases
*/
protected function setUp(): void
{
parent::setUp();
/**
* SET these to avoid undefine d index error
*/
$GLOBALS['server'] = 1;
$GLOBALS['cfg']['Server']['pmadb'] = '';
$resultStub = $this->createMock(DummyResult::class);
$dbi = $this->getMockBuilder(DatabaseInterface::class)
->disableOriginalConstructor()
->getMock();
$dbi->expects($this->any())
->method('tryQuery')
->willReturn($resultStub);
$_SESSION['relation'] = [];
$_SESSION['relation'][$GLOBALS['server']] = RelationParameters::fromArray([
'table_coords' => 'table_name',
'displaywork' => true,
'db' => 'information_schema',
'table_info' => 'table_info',
'relwork' => true,
'commwork' => true,
'pdfwork' => true,
'mimework' => true,
'column_info' => 'column_info',
'relation' => 'relation',
])->toArray();
$this->sysDb = new SystemDatabase($dbi);
}
/**
* Tests for PMA_getExistingTransformationData() method.
*/
public function testPMAGetExistingTransformationData(): void
{
$db = 'PMA_db';
$ret = $this->sysDb->getExistingTransformationData($db);
//validate that is the same as $dbi->tryQuery
self::assertInstanceOf(DummyResult::class, $ret);
}
/**
* Tests for PMA_getNewTransformationDataSql() method.
*/
public function testPMAGetNewTransformationDataSql(): void
{
$resultStub = $this->createMock(DummyResult::class);
$resultStub->expects($this->any())
->method('fetchAssoc')
->willReturn(
[
'table_name' => 'table_name',
'column_name' => 'column_name',
'comment' => 'comment',
'mimetype' => 'mimetype',
'transformation' => 'transformation',
'transformation_options' => 'transformation_options',
]
);
$db = 'PMA_db';
$column_map = [
[
'table_name' => 'table_name',
'refering_column' => 'column_name',
],
];
$view_name = 'view_name';
$ret = $this->sysDb->getNewTransformationDataSql(
$resultStub,
$column_map,
$view_name,
$db
);
$sql = 'INSERT INTO `information_schema`.`column_info` '
. '(`db_name`, `table_name`, `column_name`, `comment`, `mimetype`, '
. '`transformation`, `transformation_options`) VALUES '
. "('PMA_db', 'view_name', 'column_name', 'comment', 'mimetype', "
. "'transformation', 'transformation_options')";
self::assertSame($sql, $ret);
}
}
|