phpmyadmin/test/classes/Controllers/Server/Status/Processes/RefreshControllerTest.php
Maurício Meneghini Fauth 83091680cc
Extract actions from controllers to new controllers
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-10 17:55:05 -03:00

136 lines
3.4 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Controllers\Server\Status\Processes;
use PhpMyAdmin\Controllers\Server\Status\Processes\RefreshController;
use PhpMyAdmin\Server\Status\Data;
use PhpMyAdmin\Server\Status\Processes;
use PhpMyAdmin\Template;
use PhpMyAdmin\Tests\AbstractTestCase;
use PhpMyAdmin\Tests\Stubs\ResponseRenderer;
use PhpMyAdmin\Url;
use function __;
use function htmlspecialchars;
/**
* @covers \PhpMyAdmin\Controllers\Server\Status\Processes\RefreshController
*/
class RefreshControllerTest extends AbstractTestCase
{
/** @var Data */
private $data;
protected function setUp(): void
{
parent::setUp();
$GLOBALS['text_dir'] = 'ltr';
parent::setGlobalConfig();
parent::setTheme();
$GLOBALS['server'] = 1;
$GLOBALS['db'] = 'db';
$GLOBALS['table'] = 'table';
$GLOBALS['PMA_PHP_SELF'] = 'index.php';
$GLOBALS['cfg']['Server']['DisableIS'] = false;
$GLOBALS['cfg']['Server']['host'] = 'localhost';
$this->data = new Data();
}
public function testRefresh(): void
{
$process = [
'User' => 'User1',
'Host' => 'Host1',
'Id' => 'Id1',
'db' => 'db1',
'Command' => 'Command1',
'Info' => 'Info1',
'State' => 'State1',
'Time' => 'Time1',
];
$GLOBALS['cfg']['MaxCharactersInDisplayedSQL'] = 12;
$response = new ResponseRenderer();
$response->setAjax(true);
$controller = new RefreshController(
$response,
new Template(),
$this->data,
new Processes($GLOBALS['dbi'])
);
$_POST['full'] = '1';
$_POST['order_by_field'] = 'process';
$_POST['sort_order'] = 'DESC';
$controller();
$html = $response->getHTMLResult();
$this->assertStringContainsString(
'index.php?route=/server/status/processes',
$html
);
$killProcess = 'data-post="'
. Url::getCommon(['kill' => $process['Id']], '') . '"';
$this->assertStringContainsString(
$killProcess,
$html
);
$this->assertStringContainsString(
'ajax kill_process',
$html
);
$this->assertStringContainsString(
__('Kill'),
$html
);
//validate 2: $process['User']
$this->assertStringContainsString(
htmlspecialchars($process['User']),
$html
);
//validate 3: $process['Host']
$this->assertStringContainsString(
htmlspecialchars($process['Host']),
$html
);
//validate 4: $process['db']
$this->assertStringContainsString(
__('None'),
$html
);
//validate 5: $process['Command']
$this->assertStringContainsString(
htmlspecialchars($process['Command']),
$html
);
//validate 6: $process['Time']
$this->assertStringContainsString(
$process['Time'],
$html
);
//validate 7: $process['state']
$this->assertStringContainsString(
$process['State'],
$html
);
//validate 8: $process['info']
$this->assertStringContainsString(
$process['Info'],
$html
);
}
}