function EntitySerializationTest::testDenormalizeValidCustomSerializedField
Tests normalizing/denormalizing valid custom serialized fields.
File
- 
              core/
modules/ serialization/ tests/ src/ Kernel/ EntitySerializationTest.php, line 351  
Class
- EntitySerializationTest
 - Tests that entities can be serialized to supported core formats.
 
Namespace
Drupal\Tests\serialization\KernelCode
public function testDenormalizeValidCustomSerializedField() : void {
  $entity = EntitySerializedField::create([
    'serialized_long' => serialize([
      'key' => 'value',
    ]),
  ]);
  $normalized = $this->serializer
    ->normalize($entity);
  $this->assertEquals([
    'key' => 'value',
  ], $normalized['serialized_long'][0]['value']);
  $entity = $this->serializer
    ->denormalize($normalized, EntitySerializedField::class);
  $this->assertEquals(serialize([
    'key' => 'value',
  ]), $entity->get('serialized_long')->value);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.