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
|
<?php
namespace Doctrine\DBAL\Tests;
use Doctrine\DBAL\Exception;
use PHPUnit\Framework\TestCase;
use stdClass;
use function sprintf;
class ExceptionTest extends TestCase
{
public function testDriverRequiredWithUrl(): void
{
$url = 'mysql://localhost';
$exception = Exception::driverRequired($url);
self::assertSame(
sprintf(
"The options 'driver' or 'driverClass' are mandatory if a connection URL without scheme " .
'is given to DriverManager::getConnection(). Given URL: %s',
$url,
),
$exception->getMessage(),
);
}
public function testInvalidPlatformTypeObject(): void
{
$exception = Exception::invalidPlatformType(new stdClass());
self::assertSame(
"Option 'platform' must be a subtype of 'Doctrine\DBAL\Platforms\AbstractPlatform', "
. "instance of 'stdClass' given",
$exception->getMessage(),
);
}
public function testInvalidPlatformTypeScalar(): void
{
$exception = Exception::invalidPlatformType('some string');
self::assertSame(
"Option 'platform' must be an object and subtype of 'Doctrine\DBAL\Platforms\AbstractPlatform'. "
. "Got 'string'",
$exception->getMessage(),
);
}
}
|