phpmyadmin/tests/classes/Dbal/WarningTest.php
Maurício Meneghini Fauth 1d1c55e250
Move test directory to tests
- Related to #18512

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-11-30 10:47:42 -03:00

48 lines
1.7 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Dbal;
use PhpMyAdmin\Dbal\Warning;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
#[CoversClass(Warning::class)]
class WarningTest extends TestCase
{
/** @param mixed[] $row */
#[DataProvider('providerForTestWarning')]
public function testWarning(array $row, string $level, int $code, string $message, string $toString): void
{
$warning = Warning::fromArray($row);
$this->assertSame($level, $warning->level);
$this->assertSame($code, $warning->code);
$this->assertSame($message, $warning->message);
$this->assertSame($toString, (string) $warning);
}
/**
* @return int[][]|string[][]|string[][][]
* @psalm-return array{string[], string, int, string, string}[]
*/
public static function providerForTestWarning(): array
{
return [
[
['Level' => 'Error', 'Code' => '1046', 'Message' => 'No database selected'],
'Error',
1046,
'No database selected',
'Error: #1046 No database selected',
],
[['Level' => 'Warning','Code' => '0','Message' => ''], 'Warning', 0, '', 'Warning: #0'],
[['Level' => 'Note','Code' => '1','Message' => 'Message'], 'Note', 1, 'Message', 'Note: #1 Message'],
[['Level' => 'Invalid','Code' => 'Invalid','Message' => 'Invalid'], '?', 0, 'Invalid', '?: #0 Invalid'],
[['Level' => 'Unknown','Code' => '-1','Message' => ''], '?', 0, '', '?: #0'],
[[], '?', 0, '', '?: #0'],
];
}
}