This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Serializer/Tests/Normalizer/DateTimeZoneNormalizerTest.php
Nicolas Grekas 1b56d7f04d Merge branch '3.4' into 4.3
* 3.4:
  Fix tests
  Fix deprecated phpunit annotation
2019-08-02 14:15:04 +02:00

76 lines
2.6 KiB
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Serializer\Tests\Normalizer;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Serializer\Normalizer\DateTimeZoneNormalizer;
/**
* @author Jérôme Desjardins <jewome62@gmail.com>
*/
class DateTimeZoneNormalizerTest extends TestCase
{
/**
* @var DateTimeZoneNormalizer
*/
private $normalizer;
protected function setUp(): void
{
$this->normalizer = new DateTimeZoneNormalizer();
}
public function testSupportsNormalization()
{
$this->assertTrue($this->normalizer->supportsNormalization(new \DateTimeZone('UTC')));
$this->assertFalse($this->normalizer->supportsNormalization(new \DateTimeImmutable()));
$this->assertFalse($this->normalizer->supportsNormalization(new \stdClass()));
}
public function testNormalize()
{
$this->assertEquals('UTC', $this->normalizer->normalize(new \DateTimeZone('UTC')));
$this->assertEquals('Asia/Tokyo', $this->normalizer->normalize(new \DateTimeZone('Asia/Tokyo')));
}
public function testNormalizeBadObjectTypeThrowsException()
{
$this->expectException('Symfony\Component\Serializer\Exception\InvalidArgumentException');
$this->normalizer->normalize(new \stdClass());
}
public function testSupportsDenormalization()
{
$this->assertTrue($this->normalizer->supportsDenormalization(null, \DateTimeZone::class));
$this->assertFalse($this->normalizer->supportsDenormalization(null, \DateTimeImmutable::class));
$this->assertFalse($this->normalizer->supportsDenormalization(null, \stdClass::class));
}
public function testDenormalize()
{
$this->assertEquals(new \DateTimeZone('UTC'), $this->normalizer->denormalize('UTC', \DateTimeZone::class, null));
$this->assertEquals(new \DateTimeZone('Asia/Tokyo'), $this->normalizer->denormalize('Asia/Tokyo', \DateTimeZone::class, null));
}
public function testDenormalizeNullTimeZoneThrowsException()
{
$this->expectException('Symfony\Component\Serializer\Exception\NotNormalizableValueException');
$this->normalizer->denormalize(null, \DateTimeZone::class, null);
}
public function testDenormalizeBadTimeZoneThrowsException()
{
$this->expectException('Symfony\Component\Serializer\Exception\NotNormalizableValueException');
$this->normalizer->denormalize('Jupiter/Europa', \DateTimeZone::class, null);
}
}