phpmyadmin/test/classes/Controllers/Server/Status/QueriesControllerTest.php
Kamil Tekiela 276577ca2a
Remove $GLOBALS['PMA_PHP_SELF'] (#18149)
* Remove $GLOBALS['PMA_PHP_SELF']

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>

* Remove $GLOBALS['PMA_PHP_SELF'] from tests

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>

* Moved cleanupPathInfo to Routing

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>

* Remove parse_url from getRootPath

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>

* Update baselines

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>

* Remove invalid tests

Surely, we never expect PATH to be backslash delimited. The code is not designed to handle this and the tests for this don't make much sense.

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>

* Fix trailing slash in path

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>

---------

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2023-02-27 17:56:27 -03:00

139 lines
4.0 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Controllers\Server\Status;
use PhpMyAdmin\Controllers\Server\Status\QueriesController;
use PhpMyAdmin\DatabaseInterface;
use PhpMyAdmin\Http\ServerRequest;
use PhpMyAdmin\Server\Status\Data;
use PhpMyAdmin\Template;
use PhpMyAdmin\Tests\AbstractTestCase;
use PhpMyAdmin\Tests\Stubs\DbiDummy;
use PhpMyAdmin\Tests\Stubs\ResponseRenderer;
use PhpMyAdmin\Util;
use function __;
use function array_sum;
use function htmlspecialchars;
/** @covers \PhpMyAdmin\Controllers\Server\Status\QueriesController */
class QueriesControllerTest extends AbstractTestCase
{
protected DatabaseInterface $dbi;
protected DbiDummy $dummyDbi;
private Data $data;
protected function setUp(): void
{
parent::setUp();
$GLOBALS['text_dir'] = 'ltr';
parent::setGlobalConfig();
parent::setTheme();
$this->dummyDbi = $this->createDbiDummy();
$this->dbi = $this->createDatabaseInterface($this->dummyDbi);
$GLOBALS['dbi'] = $this->dbi;
$GLOBALS['server'] = 1;
$GLOBALS['db'] = 'db';
$GLOBALS['table'] = 'table';
$GLOBALS['cfg']['Server']['DisableIS'] = false;
$GLOBALS['cfg']['Server']['host'] = 'localhost';
$this->data = new Data($this->dbi, $GLOBALS['config']);
$this->data->status['Uptime'] = 36000;
$this->data->usedQueries = [
'Com_change_db' => '15',
'Com_select' => '12',
'Com_set_option' => '54',
'Com_show_databases' => '16',
'Com_show_status' => '14',
'Com_show_tables' => '13',
];
}
public function testIndex(): void
{
$response = new ResponseRenderer();
$controller = new QueriesController($response, new Template(), $this->data, $GLOBALS['dbi']);
$this->dummyDbi->addSelectDb('mysql');
$controller($this->createStub(ServerRequest::class));
$this->dummyDbi->assertAllSelectsConsumed();
$html = $response->getHTMLResult();
$hourFactor = 3600 / $this->data->status['Uptime'];
$usedQueries = $this->data->usedQueries;
$totalQueries = array_sum($usedQueries);
$questionsFromStart = __('Questions since startup:')
. ' ' . Util::formatNumber($totalQueries, 0);
$this->assertStringContainsString('<h3 id="serverstatusqueries">', $html);
$this->assertStringContainsString($questionsFromStart, $html);
$this->assertStringContainsString(
__('per hour:'),
$html,
);
$this->assertStringContainsString(
Util::formatNumber($totalQueries * $hourFactor, 0),
$html,
);
$valuePerMinute = Util::formatNumber($totalQueries * 60 / $this->data->status['Uptime'], 0);
$this->assertStringContainsString(
__('per minute:'),
$html,
);
$this->assertStringContainsString(
htmlspecialchars($valuePerMinute),
$html,
);
$this->assertStringContainsString(
__('Statements'),
$html,
);
$this->assertStringContainsString(
htmlspecialchars('change db'),
$html,
);
$this->assertStringContainsString('54', $html);
$this->assertStringContainsString(
htmlspecialchars('select'),
$html,
);
$this->assertStringContainsString(
htmlspecialchars('set option'),
$html,
);
$this->assertStringContainsString(
htmlspecialchars('show databases'),
$html,
);
$this->assertStringContainsString(
htmlspecialchars('show status'),
$html,
);
$this->assertStringContainsString(
htmlspecialchars('show tables'),
$html,
);
$this->assertStringContainsString(
'<div id="serverstatusquerieschart" class="w-100 col-12 col-md-6" data-chart="',
$html,
);
}
}