phpmyadmin/test/classes/Controllers/Server/Status/MonitorControllerTest.php
Maurício Meneghini Fauth 7e33d227f5
Rename the PMA_Config global variable to config
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-03-08 15:03:12 -03:00

315 lines
7.7 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Controllers\Server\Status;
use PhpMyAdmin\Controllers\Server\Status\MonitorController;
use PhpMyAdmin\Server\Status\Data;
use PhpMyAdmin\Server\Status\Monitor;
use PhpMyAdmin\Template;
use PhpMyAdmin\Tests\AbstractTestCase;
use PhpMyAdmin\Tests\Stubs\Response;
use PhpMyAdmin\Utils\SessionCache;
class MonitorControllerTest extends AbstractTestCase
{
/** @var Data */
private $data;
protected function setUp(): void
{
parent::setUp();
$GLOBALS['text_dir'] = 'ltr';
parent::setGlobalConfig();
$GLOBALS['config']->enableBc();
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 testIndex(): void
{
$response = new Response();
$controller = new MonitorController(
$response,
new Template(),
$this->data,
new Monitor($GLOBALS['dbi']),
$GLOBALS['dbi']
);
$controller->index();
$html = $response->getHTMLResult();
$this->assertStringContainsString(
'<div class="tabLinks row">',
$html
);
$this->assertStringContainsString(
__('Start Monitor'),
$html
);
$this->assertStringContainsString(
__('Settings'),
$html
);
$this->assertStringContainsString(
__('Done dragging (rearranging) charts'),
$html
);
$this->assertStringContainsString(
'<div class="popupContent settingsPopup">',
$html
);
$this->assertStringContainsString(
'<a href="#settingsPopup" class="popupLink">',
$html
);
$this->assertStringContainsString(
__('Enable charts dragging'),
$html
);
$this->assertStringContainsString(
'<option>3</option>',
$html
);
$this->assertStringContainsString(
__('Monitor Instructions'),
$html
);
$this->assertStringContainsString(
'monitorInstructionsDialog',
$html
);
$this->assertStringContainsString(
'<div id="addChartDialog"',
$html
);
$this->assertStringContainsString(
'<div id="chartVariableSettings">',
$html
);
$this->assertStringContainsString(
'<option>Processes</option>',
$html
);
$this->assertStringContainsString(
'<option>Connections</option>',
$html
);
$this->assertStringContainsString(
'<form id="js_data" class="hide">',
$html
);
$this->assertStringContainsString(
'<input type="hidden" name="server_time"',
$html
);
//validate 2: inputs
$this->assertStringContainsString(
'<input type="hidden" name="is_superuser"',
$html
);
$this->assertStringContainsString(
'<input type="hidden" name="server_db_isLocal"',
$html
);
$this->assertStringContainsString(
'<div id="explain_docu" class="hide">',
$html
);
}
public function testLogDataTypeSlow(): void
{
$response = new Response();
$response->setAjax(true);
$controller = new MonitorController(
$response,
new Template(),
$this->data,
new Monitor($GLOBALS['dbi']),
$GLOBALS['dbi']
);
$_POST['time_start'] = '0';
$_POST['time_end'] = '10';
$controller->logDataTypeSlow();
$ret = $response->getJSONResult();
$resultRows = [
[
'sql_text' => 'insert sql_text',
'#' => 11,
],
[
'sql_text' => 'update sql_text',
'#' => 10,
],
];
$resultSum = [
'insert' => 11,
'TOTAL' => 21,
'update' => 10,
];
$this->assertEquals(
2,
$ret['message']['numRows']
);
$this->assertEquals(
$resultRows,
$ret['message']['rows']
);
$this->assertEquals(
$resultSum,
$ret['message']['sum']
);
}
public function testLogDataTypeGeneral(): void
{
$value = [
'sql_text' => 'insert sql_text',
'#' => 10,
'argument' => 'argument argument2',
];
$value2 = [
'sql_text' => 'update sql_text',
'#' => 11,
'argument' => 'argument3 argument4',
];
$response = new Response();
$response->setAjax(true);
$controller = new MonitorController(
$response,
new Template(),
$this->data,
new Monitor($GLOBALS['dbi']),
$GLOBALS['dbi']
);
$_POST['time_start'] = '0';
$_POST['time_end'] = '10';
$_POST['limitTypes'] = '1';
$controller->logDataTypeGeneral();
$ret = $response->getJSONResult();
$resultRows = [
$value,
$value2,
];
$resultSum = [
'argument' => 10,
'TOTAL' => 21,
'argument3' => 11,
];
$this->assertEquals(
2,
$ret['message']['numRows']
);
$this->assertEquals(
$resultRows,
$ret['message']['rows']
);
$this->assertEquals(
$resultSum,
$ret['message']['sum']
);
}
public function testLoggingVars(): void
{
$value = [
'general_log' => 'OFF',
'log_output' => 'FILE',
'long_query_time' => '10.000000',
'slow_query_log' => 'OFF',
];
$response = new Response();
$response->setAjax(true);
$controller = new MonitorController(
$response,
new Template(),
$this->data,
new Monitor($GLOBALS['dbi']),
$GLOBALS['dbi']
);
$_POST['varName'] = 'varName';
$controller->loggingVars();
$ret = $response->getJSONResult();
$this->assertEquals(
$value,
$ret['message']
);
}
public function testQueryAnalyzer(): void
{
global $cached_affected_rows;
$cached_affected_rows = 'cached_affected_rows';
SessionCache::set('profiling_supported', true);
$value = [
'sql_text' => 'insert sql_text',
'#' => 10,
'argument' => 'argument argument2',
];
$response = new Response();
$response->setAjax(true);
$controller = new MonitorController(
$response,
new Template(),
$this->data,
new Monitor($GLOBALS['dbi']),
$GLOBALS['dbi']
);
$_POST['database'] = 'database';
$_POST['query'] = 'query';
$controller->queryAnalyzer();
$ret = $response->getJSONResult();
$this->assertEquals(
'cached_affected_rows',
$ret['message']['affectedRows']
);
$this->assertEquals(
[],
$ret['message']['profiling']
);
$this->assertEquals(
[$value],
$ret['message']['explain']
);
}
}