phpmyadmin/test/classes/Controllers/Table/PrivilegesControllerTest.php
Maurício Meneghini Fauth 5a34a3bb04
Remove db and table properties from controllers
Replaces them with their respective globals.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2022-02-02 14:48:43 -03:00

108 lines
2.6 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Controllers\Table;
use PhpMyAdmin\Controllers\Table\PrivilegesController;
use PhpMyAdmin\ResponseRenderer;
use PhpMyAdmin\Server\Privileges;
use PhpMyAdmin\Template;
use PhpMyAdmin\Tests\AbstractTestCase;
use PhpMyAdmin\Url;
use function __;
use function _pgettext;
/**
* @covers \PhpMyAdmin\Controllers\Table\PrivilegesController
*/
class PrivilegesControllerTest extends AbstractTestCase
{
/**
* Configures global environment.
*/
protected function setUp(): void
{
parent::setUp();
parent::setLanguage();
parent::setTheme();
}
public function testIndex(): void
{
global $dbi, $db, $table, $server, $cfg, $PMA_PHP_SELF;
$db = 'db';
$table = 'table';
$server = 0;
$cfg['Server']['DisableIS'] = false;
$PMA_PHP_SELF = 'index.php';
$privileges = [];
$serverPrivileges = $this->createMock(Privileges::class);
$serverPrivileges->method('getAllPrivileges')
->willReturn($privileges);
$actual = (new PrivilegesController(
ResponseRenderer::getInstance(),
new Template(),
$serverPrivileges,
$dbi
))(['checkprivsdb' => $db, 'checkprivstable' => $table]);
$this->assertStringContainsString($db . '.' . $table, $actual);
//validate 2: Url::getCommon
$item = Url::getCommon([
'db' => $db,
'table' => $table,
], '');
$this->assertStringContainsString($item, $actual);
//validate 3: items
$this->assertStringContainsString(
__('User'),
$actual
);
$this->assertStringContainsString(
__('Host'),
$actual
);
$this->assertStringContainsString(
__('Type'),
$actual
);
$this->assertStringContainsString(
__('Privileges'),
$actual
);
$this->assertStringContainsString(
__('Grant'),
$actual
);
$this->assertStringContainsString(
__('Action'),
$actual
);
$this->assertStringContainsString(
__('No user found'),
$actual
);
//_pgettext('Create new user', 'New')
$this->assertStringContainsString(
_pgettext('Create new user', 'New'),
$actual
);
$this->assertStringContainsString(
Url::getCommon([
'checkprivsdb' => $db,
'checkprivstable' => $table,
]),
$actual
);
}
}