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
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Types;
use DateTime;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\ConversionException;
use Doctrine\DBAL\Types\Type;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use stdClass;
use function date_default_timezone_get;
use function date_default_timezone_set;
abstract class BaseDateTypeTestCase extends TestCase
{
protected AbstractPlatform&MockObject $platform;
protected Type $type;
/** @var non-empty-string */
private string $currentTimezone;
protected function setUp(): void
{
$this->platform = $this->createMock(AbstractPlatform::class);
$this->currentTimezone = date_default_timezone_get();
}
protected function tearDown(): void
{
date_default_timezone_set($this->currentTimezone);
}
public function testDateConvertsToDatabaseValue(): void
{
self::assertIsString($this->type->convertToDatabaseValue(new DateTime(), $this->platform));
}
#[DataProvider('invalidPHPValuesProvider')]
public function testInvalidTypeConversionToDatabaseValue(mixed $value): void
{
$this->expectException(ConversionException::class);
$this->type->convertToDatabaseValue($value, $this->platform);
}
public function testNullConversion(): void
{
self::assertNull($this->type->convertToPHPValue(null, $this->platform));
}
public function testConvertDateTimeToPHPValue(): void
{
$date = new DateTime('now');
self::assertSame($date, $this->type->convertToPHPValue($date, $this->platform));
}
/** @return mixed[][] */
public static function invalidPHPValuesProvider(): iterable
{
return [
[0],
[''],
['foo'],
['10:11:12'],
['2015-01-31'],
['2015-01-31 10:11:12'],
[new stdClass()],
[27],
[-1],
[1.2],
[[]],
[['an array']],
];
}
}
|