Using assertContains() with string haystacks is deprecated and will not be supported in PHPUnit 9. Refactor your test to use assertStringContainsString() or assertStringContainsStringIgnoringCase() instead. Using assertNotContains() with string haystacks is deprecated and will not be supported in PHPUnit 9. Refactor your test to use assertStringNotContainsString() or assertStringNotContainsStringIgnoringCase() instead. Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
157 lines
3.7 KiB
PHP
157 lines
3.7 KiB
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* Holds EnginesControllerTest class
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests\Controllers\Server;
|
|
|
|
use PhpMyAdmin\Config;
|
|
use PhpMyAdmin\Controllers\Server\EnginesController;
|
|
use PhpMyAdmin\DatabaseInterface;
|
|
use PhpMyAdmin\Response;
|
|
use PhpMyAdmin\StorageEngine;
|
|
use PhpMyAdmin\Url;
|
|
use PhpMyAdmin\Util;
|
|
use PHPStan\Testing\TestCase;
|
|
|
|
/**
|
|
* Tests for EnginesController class
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
class EnginesControllerTest extends TestCase
|
|
{
|
|
/**
|
|
* Prepares environment for the test.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
$GLOBALS['PMA_Config'] = new Config();
|
|
$GLOBALS['PMA_Config']->enableBc();
|
|
|
|
$GLOBALS['server'] = 1;
|
|
$GLOBALS['db'] = 'db';
|
|
$GLOBALS['table'] = 'table';
|
|
$GLOBALS['PMA_PHP_SELF'] = 'index.php';
|
|
$GLOBALS['cfg']['Server']['DisableIS'] = false;
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function testIndex(): void
|
|
{
|
|
$controller = new EnginesController(
|
|
Response::getInstance(),
|
|
$GLOBALS['dbi']
|
|
);
|
|
|
|
$actual = $controller->index();
|
|
|
|
$this->assertStringContainsString(
|
|
'<th>Storage Engine</th>',
|
|
$actual
|
|
);
|
|
$this->assertStringContainsString(
|
|
'<th>Description</th>',
|
|
$actual
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<td>Federated MySQL storage engine</td>',
|
|
$actual
|
|
);
|
|
$this->assertStringContainsString(
|
|
'FEDERATED',
|
|
$actual
|
|
);
|
|
$this->assertStringContainsString(
|
|
'server_engines.php?engine=FEDERATED',
|
|
$actual
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<td>dummy comment</td>',
|
|
$actual
|
|
);
|
|
$this->assertStringContainsString(
|
|
'dummy',
|
|
$actual
|
|
);
|
|
$this->assertStringContainsString(
|
|
'server_engines.php?engine=dummy',
|
|
$actual
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function testShow(): void
|
|
{
|
|
$dbi = $this->getMockBuilder(DatabaseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$GLOBALS['dbi'] = $dbi;
|
|
|
|
$controller = new EnginesController(
|
|
Response::getInstance(),
|
|
$GLOBALS['dbi']
|
|
);
|
|
|
|
$actual = $controller->show([
|
|
'engine' => 'Pbxt',
|
|
'page' => 'page',
|
|
]);
|
|
|
|
$enginePlugin = StorageEngine::getEngine('Pbxt');
|
|
|
|
$this->assertStringContainsString(
|
|
htmlspecialchars($enginePlugin->getTitle()),
|
|
$actual
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
Util::showMySQLDocu($enginePlugin->getMysqlHelpPage()),
|
|
$actual
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
htmlspecialchars($enginePlugin->getComment()),
|
|
$actual
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
__('Variables'),
|
|
$actual
|
|
);
|
|
$this->assertStringContainsString(
|
|
Url::getCommon([
|
|
'engine' => 'Pbxt',
|
|
'page' => 'Documentation'
|
|
]),
|
|
$actual
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
Url::getCommon(['engine' => 'Pbxt']),
|
|
$actual
|
|
);
|
|
$this->assertStringContainsString(
|
|
$enginePlugin->getSupportInformationMessage(),
|
|
$actual
|
|
);
|
|
$this->assertStringContainsString(
|
|
'There is no detailed status information available for this '
|
|
. 'storage engine.',
|
|
$actual
|
|
);
|
|
}
|
|
}
|