phpmyadmin/test/classes/Dbal/TableNameTest.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

74 lines
2.0 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Dbal;
use PhpMyAdmin\Dbal\TableName;
use PHPUnit\Framework\TestCase;
use Webmozart\Assert\InvalidArgumentException;
use function str_repeat;
/**
* @covers \PhpMyAdmin\Dbal\TableName
*/
class TableNameTest extends TestCase
{
public function testEmptyName(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('Expected a different value than "".');
TableName::fromValue('');
}
public function testNameWithTrailingWhitespace(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('Expected a value not to end with " ". Got: "a "');
TableName::fromValue('a ');
}
public function testLongName(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage(
'Expected a value to contain at most 64 characters. Got: '
. '"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"'
);
TableName::fromValue(str_repeat('a', 65));
}
public function testValidName(): void
{
$name = TableName::fromValue('name');
self::assertSame('name', $name->getName());
self::assertSame('name', (string) $name);
}
/**
* @param mixed $name
*
* @dataProvider providerForTestInvalidMixedNames
*/
public function testInvalidMixedNames($name, string $exceptionMessage): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage($exceptionMessage);
TableName::fromValue($name);
}
/**
* @return mixed[][]
* @psalm-return non-empty-list<array{mixed, string}>
*/
public static function providerForTestInvalidMixedNames(): array
{
return [
[null, 'Expected a string. Got: NULL'],
[1, 'Expected a string. Got: integer'],
[['table'], 'Expected a string. Got: array'],
];
}
}