phpmyadmin/tests/unit/LoggingTest.php
Maurício Meneghini Fauth 606f66b5df
Rename tests/classes to tests/unit
This directory is for unit tests only, so let's rename it to unit to be
more clear.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-02-23 13:29:07 -03:00

22 lines
570 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');
self::assertSame('user authenticated: user from 0.0.0.0', $log);
$log = Logging::getLogMessage('user', 'error');
self::assertSame('user denied: user (error) from 0.0.0.0', $log);
}
}