phpmyadmin/test/classes/Controllers/Server/Status/AdvisorControllerTest.php
Maurício Meneghini Fauth ceac762e09 Remove pmaThemePath and pmaThemeImage PHP globals
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-09-02 10:57:57 -03:00

121 lines
3.2 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Controllers\Server\Status;
use PhpMyAdmin\Advisor;
use PhpMyAdmin\Controllers\Server\Status\AdvisorController;
use PhpMyAdmin\DatabaseInterface;
use PhpMyAdmin\Server\Status\Data;
use PhpMyAdmin\Template;
use PhpMyAdmin\Tests\AbstractTestCase;
use PhpMyAdmin\Tests\Stubs\Response;
use Symfony\Component\ExpressionLanguage\ExpressionLanguage;
class AdvisorControllerTest extends AbstractTestCase
{
/** @var Response */
private $response;
/** @var DatabaseInterface */
private $dbi;
/** @var Template */
private $template;
/** @var Data */
private $data;
protected function setUp(): void
{
parent::setUp();
$GLOBALS['text_dir'] = 'ltr';
parent::setGlobalConfig();
parent::setTheme();
$GLOBALS['PMA_Config']->enableBc();
$GLOBALS['server'] = 1;
$GLOBALS['PMA_PHP_SELF'] = 'index.php';
$GLOBALS['cfg']['Server']['DisableIS'] = false;
$GLOBALS['cfg']['Server']['host'] = 'localhost';
$this->dbi = $GLOBALS['dbi'];
$this->response = new Response();
$this->template = new Template();
$this->data = new Data();
}
public function testIndexWithoutData(): void
{
$this->data->dataLoaded = false;
$controller = new AdvisorController(
$this->response,
$this->dbi,
$this->template,
$this->data,
new Advisor($GLOBALS['dbi'], new ExpressionLanguage())
);
$controller->index();
$expected = $this->template->render('server/status/advisor/index', [
'data' => [],
]);
$this->assertSame(
$expected,
$this->response->getHTMLResult()
);
}
public function testIndexWithData(): void
{
$advisorData = [
'parse' => ['errors' => ['Error1', 'Error2']],
'run' => [
'errors' => ['Error1', 'Error2'],
'fired' => [
[
'issue' => 'issue1',
'recommendation' => 'recommendation1',
'justification' => 'justification1',
'formula' => 'formula1',
'test' => 'test1',
],
[
'issue' => 'issue2',
'recommendation' => 'recommendation2',
'justification' => 'justification2',
'formula' => 'formula2',
'test' => 'test2',
],
],
],
];
$advisor = $this->createMock(Advisor::class);
$advisor->method('run')->willReturn($advisorData);
$this->data->dataLoaded = true;
$controller = new AdvisorController(
$this->response,
$this->dbi,
$this->template,
$this->data,
$advisor
);
$controller->index();
$expected = $this->template->render('server/status/advisor/index', ['data' => $advisorData]);
$this->assertSame(
$expected,
$this->response->getHTMLResult()
);
}
}