phpmyadmin/test/classes/LoggingTest.php
Maurício Meneghini Fauth 3f2c53ef1d
Replace PHPUnit annotations with attributes
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-06-07 11:44:01 -03:00

22 lines
576 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests;
use PhpMyAdmin\Logging;
use PHPUnit\Framework\Attributes\CoversClass;
#[CoversClass(Logging::class)]
class LoggingTest extends AbstractTestCase
{
public function testGetLogMessage(): void
{
$_SERVER['REMOTE_ADDR'] = '0.0.0.0';
$log = Logging::getLogMessage('user', 'ok');
$this->assertEquals('user authenticated: user from 0.0.0.0', $log);
$log = Logging::getLogMessage('user', 'error');
$this->assertEquals('user denied: user (error) from 0.0.0.0', $log);
}
}