function DenormalizeTest::testDenormalizeEmptyCustomSerializedField
Same name in other branches
- 9 core/modules/hal/tests/src/Kernel/DenormalizeTest.php \Drupal\Tests\hal\Kernel\DenormalizeTest::testDenormalizeEmptyCustomSerializedField()
Tests normalizing/denormalizing empty custom serialized fields.
File
-
core/
modules/ hal/ tests/ src/ Kernel/ DenormalizeTest.php, line 171
Class
- DenormalizeTest
- Tests HAL denormalization edge cases for EntityResource.
Namespace
Drupal\Tests\hal\KernelCode
public function testDenormalizeEmptyCustomSerializedField() {
$entity = EntitySerializedField::create([
'serialized_long' => serialize([]),
]);
$normalized = $this->serializer
->normalize($entity);
$this->assertEquals([], $normalized['serialized_long'][0]['value']);
$entity = $this->serializer
->denormalize($normalized, EntitySerializedField::class);
$this->assertEquals(serialize([]), $entity->get('serialized_long')->value);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.