1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
<?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
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\PhpMyAdmin\Dbal\TableName::class)]
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
*/
#[\PHPUnit\Framework\Attributes\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'],
];
}
}
|