| Server IP : 3.96.16.70 / Your IP : 216.73.216.15 Web Server : Apache System : Linux ip-172-31-26-103.ca-central-1.compute.internal 6.1.163-186.299.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Feb 24 16:35:42 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/prod1.wondermakr.com/phpmyadmin/test/classes/ |
Upload File : |
<?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
*/
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')
->will($this->returnValue($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')
->will(
$this->returnValue(
[
'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);
}
}