45 lines
1.6 KiB
PHP
45 lines
1.6 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 array<string, string> $row */
|
|
#[DataProvider('providerForTestWarning')]
|
|
public function testWarning(array $row, string $level, int $code, string $message, string $toString): void
|
|
{
|
|
$warning = Warning::fromArray($row);
|
|
self::assertSame($level, $warning->level);
|
|
self::assertSame($code, $warning->code);
|
|
self::assertSame($message, $warning->message);
|
|
self::assertSame($toString, (string) $warning);
|
|
}
|
|
|
|
/** @return array{array<string, 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'],
|
|
];
|
|
}
|
|
}
|