function EntityReferenceFieldItemNormalizerTest::testNormalizeWithNoEntity

Same name and namespace in other branches
  1. 9 core/modules/serialization/tests/src/Unit/Normalizer/EntityReferenceFieldItemNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\EntityReferenceFieldItemNormalizerTest::testNormalizeWithNoEntity()
  2. 10 core/modules/serialization/tests/src/Unit/Normalizer/EntityReferenceFieldItemNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\EntityReferenceFieldItemNormalizerTest::testNormalizeWithNoEntity()
  3. 11.x core/modules/serialization/tests/src/Unit/Normalizer/EntityReferenceFieldItemNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\EntityReferenceFieldItemNormalizerTest::testNormalizeWithNoEntity()

@covers ::normalize

File

core/modules/serialization/tests/src/Unit/Normalizer/EntityReferenceFieldItemNormalizerTest.php, line 266

Class

EntityReferenceFieldItemNormalizerTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21serialization%21src%21Normalizer%21EntityReferenceFieldItemNormalizer.php/class/EntityReferenceFieldItemNormalizer/8.9.x" title="Adds the file URI to embedded file entities." class="local">\Drupal\serialization\Normalizer\EntityReferenceFieldItemNormalizer</a> @group serialization

Namespace

Drupal\Tests\serialization\Unit\Normalizer

Code

public function testNormalizeWithNoEntity() {
    $entity_reference = $this->prophesize(TypedDataInterface::class);
    $entity_reference->getValue()
        ->willReturn(NULL)
        ->shouldBeCalled();
    $field_definition = $this->prophesize(FieldDefinitionInterface::class);
    $field_definition->getSetting('target_type')
        ->willReturn('test_type');
    $this->fieldItem
        ->getFieldDefinition()
        ->willReturn($field_definition->reveal());
    $this->fieldItem
        ->get('entity')
        ->willReturn($entity_reference->reveal())
        ->shouldBeCalled();
    $this->fieldItem
        ->getProperties(TRUE)
        ->willReturn([
        'target_id' => $this->getTypedDataProperty(FALSE),
    ])
        ->shouldBeCalled();
    $normalized = $this->normalizer
        ->normalize($this->fieldItem
        ->reveal());
    $expected = [
        'target_id' => 'test',
    ];
    $this->assertSame($expected, $normalized);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.