phpmyadmin/tests/classes/Controllers/Server/Status/AdvisorControllerTest.php
Maurício Meneghini Fauth ba72f543fd
Call PHPUnit static methods using static calls
Replaces $this->method() with self::method().

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-01-31 17:17:38 -03:00

108 lines
3.2 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Controllers\Server\Status;
use PhpMyAdmin\Advisory\Advisor;
use PhpMyAdmin\Config;
use PhpMyAdmin\Controllers\Server\Status\AdvisorController;
use PhpMyAdmin\DatabaseInterface;
use PhpMyAdmin\Http\ServerRequest;
use PhpMyAdmin\Server\Status\Data;
use PhpMyAdmin\Template;
use PhpMyAdmin\Tests\AbstractTestCase;
use PhpMyAdmin\Tests\Stubs\ResponseRenderer;
use PHPUnit\Framework\Attributes\CoversClass;
use Symfony\Component\ExpressionLanguage\ExpressionLanguage;
#[CoversClass(AdvisorController::class)]
class AdvisorControllerTest extends AbstractTestCase
{
private ResponseRenderer $response;
private Template $template;
private Data $data;
protected function setUp(): void
{
parent::setUp();
parent::setGlobalConfig();
DatabaseInterface::$instance = $this->createDatabaseInterface();
$config = Config::getInstance();
$config->selectedServer['DisableIS'] = false;
$config->selectedServer['host'] = 'localhost';
$this->response = new ResponseRenderer();
$this->template = new Template();
$this->data = new Data(DatabaseInterface::getInstance(), $config);
}
public function testIndexWithoutData(): void
{
$this->data->dataLoaded = false;
$controller = new AdvisorController(
$this->response,
$this->template,
$this->data,
new Advisor(DatabaseInterface::getInstance(), new ExpressionLanguage()),
);
$controller(self::createStub(ServerRequest::class));
$expected = $this->template->render('server/status/advisor/index', ['data' => []]);
self::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 = self::createMock(Advisor::class);
$advisor->method('run')->willReturn($advisorData);
$this->data->dataLoaded = true;
$controller = new AdvisorController($this->response, $this->template, $this->data, $advisor);
$controller(self::createStub(ServerRequest::class));
$expected = $this->template->render('server/status/advisor/index', ['data' => $advisorData]);
self::assertSame(
$expected,
$this->response->getHTMLResult(),
);
}
}