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
|
<?php
namespace Doctrine\DBAL\Tests\Types;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\ConversionException;
use Doctrine\DBAL\Types\ObjectType;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use stdClass;
use function serialize;
class ObjectTest extends TestCase
{
/** @var AbstractPlatform&MockObject */
private AbstractPlatform $platform;
private ObjectType $type;
protected function setUp(): void
{
$this->platform = $this->createMock(AbstractPlatform::class);
$this->type = new ObjectType();
}
public function testObjectConvertsToDatabaseValue(): void
{
self::assertIsString($this->type->convertToDatabaseValue(new stdClass(), $this->platform));
}
public function testObjectConvertsToPHPValue(): void
{
self::assertIsObject($this->type->convertToPHPValue(serialize(new stdClass()), $this->platform));
}
public function testConversionFailure(): void
{
$this->expectException(ConversionException::class);
$this->expectExceptionMessage(
"Could not convert database value to 'object' as an error was triggered by the unserialization:"
. " 'unserialize(): Error at offset 0 of 7 bytes'",
);
$this->type->convertToPHPValue('abcdefg', $this->platform);
}
public function testNullConversion(): void
{
self::assertNull($this->type->convertToPHPValue(null, $this->platform));
}
public function testFalseConversion(): void
{
self::assertFalse($this->type->convertToPHPValue(serialize(false), $this->platform));
}
}
|