phpmyadmin/test/classes/Dbal/TableNameTest.php
Maurício Meneghini Fauth ca91eaeb38
Accept mixed for DatabaseName and TableName constructors
This avoids redundant type assertions.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-12-23 16:25:05 -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');
$this->assertEquals('name', $name->getName());
$this->assertEquals('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 function providerForTestInvalidMixedNames(): array
{
return [
[null, 'Expected a string. Got: NULL'],
[1, 'Expected a string. Got: integer'],
[['table'], 'Expected a string. Got: array'],
];
}
}