phpmyadmin/test/classes/LoggingTest.php
Maurício Meneghini Fauth 555ea56cbd
Make PHPUnit's assertions stricter
Backports #18993 to QA_5_2.

This makes merging QA_5_2 into master easier.

Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
2024-10-12 15:33:45 -03:00

23 lines
532 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests;
use PhpMyAdmin\Logging;
/**
* @covers \PhpMyAdmin\Logging
*/
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);
}
}