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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
<?php
namespace Doctrine\DBAL\Tests\Types;
use Doctrine\DBAL\ParameterType;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\BinaryType;
use Doctrine\DBAL\Types\ConversionException;
use Doctrine\DBAL\Types\Types;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use function base64_encode;
use function fopen;
use function stream_get_contents;
class BinaryTest extends TestCase
{
/** @var AbstractPlatform&MockObject */
protected AbstractPlatform $platform;
protected BinaryType $type;
protected function setUp(): void
{
$this->platform = $this->createMock(AbstractPlatform::class);
$this->type = new BinaryType();
}
public function testReturnsBindingType(): void
{
self::assertSame(ParameterType::BINARY, $this->type->getBindingType());
}
public function testReturnsName(): void
{
self::assertSame(Types::BINARY, $this->type->getName());
}
public function testReturnsSQLDeclaration(): void
{
$this->platform->expects(self::once())
->method('getBinaryTypeDeclarationSQL')
->willReturn('TEST_BINARY');
self::assertSame('TEST_BINARY', $this->type->getSQLDeclaration([], $this->platform));
}
public function testBinaryNullConvertsToPHPValue(): void
{
self::assertNull($this->type->convertToPHPValue(null, $this->platform));
}
public function testBinaryStringConvertsToPHPValue(): void
{
$databaseValue = 'binary string';
$phpValue = $this->type->convertToPHPValue($databaseValue, $this->platform);
self::assertIsResource($phpValue);
self::assertEquals($databaseValue, stream_get_contents($phpValue));
}
public function testBinaryResourceConvertsToPHPValue(): void
{
$databaseValue = fopen('data://text/plain;base64,' . base64_encode('binary string'), 'r');
$phpValue = $this->type->convertToPHPValue($databaseValue, $this->platform);
self::assertSame($databaseValue, $phpValue);
}
/**
* @param mixed $value
*
* @dataProvider getInvalidDatabaseValues
*/
public function testThrowsConversionExceptionOnInvalidDatabaseValue($value): void
{
$this->expectException(ConversionException::class);
$this->type->convertToPHPValue($value, $this->platform);
}
/** @return mixed[][] */
public static function getInvalidDatabaseValues(): iterable
{
return [
[false],
[true],
[0],
[1],
[-1],
[0.0],
[1.1],
[-1.1],
];
}
}
|