1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Plugins\Auth;
use PhpMyAdmin\DatabaseInterface;
use PhpMyAdmin\ErrorHandler;
use PhpMyAdmin\Plugins\Auth\AuthenticationConfig;
use PhpMyAdmin\Tests\AbstractTestCase;
use function ob_get_clean;
use function ob_start;
/**
* @covers \PhpMyAdmin\Plugins\Auth\AuthenticationConfig
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\PhpMyAdmin\Plugins\Auth\AuthenticationConfig::class)]
class AuthenticationConfigTest extends AbstractTestCase
{
/** @var AuthenticationConfig */
protected $object;
/**
* Configures global environment.
*/
protected function setUp(): void
{
parent::setUp();
parent::setLanguage();
parent::setGlobalConfig();
parent::setTheme();
$GLOBALS['server'] = 0;
$GLOBALS['db'] = 'db';
$GLOBALS['table'] = 'table';
$GLOBALS['PMA_PHP_SELF'] = 'index.php';
$GLOBALS['token_provided'] = true;
$GLOBALS['token_mismatch'] = false;
$this->object = new AuthenticationConfig();
}
/**
* tearDown for test cases
*/
protected function tearDown(): void
{
parent::tearDown();
unset($this->object);
}
public function testAuth(): void
{
self::assertTrue($this->object->showLoginForm());
}
public function testAuthCheck(): void
{
$GLOBALS['cfg']['Server'] = [
'user' => 'username',
'password' => 'password',
];
self::assertTrue($this->object->readCredentials());
}
public function testAuthSetUser(): void
{
self::assertTrue($this->object->storeCredentials());
}
public function testAuthFails(): void
{
$GLOBALS['errorHandler'] = new ErrorHandler();
$GLOBALS['cfg']['Servers'] = [1];
$dbi = $this->getMockBuilder(DatabaseInterface::class)
->disableOriginalConstructor()
->getMock();
$GLOBALS['dbi'] = $dbi;
ob_start();
$this->object->showFailure('');
$html = ob_get_clean();
self::assertIsString($html);
self::assertStringContainsString('You probably did not create a configuration file. You might want ' .
'to use the <a href="setup/">setup script</a> to create one.', $html);
self::assertStringContainsString('<strong>MySQL said: </strong><a href="./url.php?url=https%3A%2F%2F' .
'dev.mysql.com%2Fdoc%2Frefman%2F5.5%2Fen%2Fserver-error-reference.html"' .
' target="mysql_doc">' .
'<img src="themes/dot.gif" title="Documentation" alt="Documentation" ' .
'class="icon ic_b_help"></a>', $html);
self::assertStringContainsString('Cannot connect: invalid settings.', $html);
self::assertStringContainsString('<a href="index.php?route=/&server=0&lang=en" '
. 'class="btn btn-primary mt-1 mb-1 disableAjax">Retry to connect</a>', $html);
}
}
|