phpmyadmin/test/classes/Server/UsersTest.php
Maurício Meneghini Fauth b1328c7ad6 Create Server\UserGroupsController controller
Moves the user groups entry point logic to the controller and removes
the entry point file.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2019-12-22 11:54:34 -03:00

63 lines
1.5 KiB
PHP

<?php
/**
* Tests for PhpMyAdmin\Server\Users
*
* @package PhpMyAdmin-test
*/
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Server;
use PhpMyAdmin\Server\Users;
use PhpMyAdmin\Url;
use PHPUnit\Framework\TestCase;
/**
* PhpMyAdmin\Tests\Server\UsersTest class
*
* This class is for testing PhpMyAdmin\Server\Users methods
*
* @package PhpMyAdmin-test
*/
class UsersTest extends TestCase
{
/**
* Test for Users::getHtmlForSubMenusOnUsersPage
*
* @return void
*/
public function testGetHtmlForSubMenusOnUsersPage()
{
$GLOBALS['server'] = 1;
$GLOBALS['cfg']['ServerDefault'] = 1;
$GLOBALS['cfg']['Server']['DisableIS'] = false;
$html = Users::getHtmlForSubMenusOnUsersPage(Url::getFromRoute('/server/privileges'));
//validate 1: topmenu2
$this->assertStringContainsString(
'<ul id="topmenu2">',
$html
);
//validate 2: tabactive for /server/privileges
$this->assertStringContainsString(
'<a class="tabactive" href="' . Url::getFromRoute('/server/privileges'),
$html
);
$this->assertStringContainsString(
__('User accounts overview'),
$html
);
//validate 3: not-active for /server/user-groups
$this->assertStringContainsString(
'<a href="index.php?route=/server/user-groups',
$html
);
$this->assertStringContainsString(
__('User groups'),
$html
);
}
}