phpmyadmin/test/classes/Server/UsersTest.php
Maurício Meneghini Fauth f80d3e3bd4 Remove unnecessary annotations
@package, @subpackage and others.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-01-20 17:35:56 -03:00

59 lines
1.5 KiB
PHP

<?php
/**
* Tests for PhpMyAdmin\Server\Users
*/
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
*/
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
);
}
}