function EntityReferenceFieldItemNormalizerTest::testDenormalizeWithTypeWithIncorrectUuid

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

@covers ::denormalize

File

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

Class

EntityReferenceFieldItemNormalizerTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21serialization%21src%21Normalizer%21EntityReferenceFieldItemNormalizer.php/class/EntityReferenceFieldItemNormalizer/10" 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 testDenormalizeWithTypeWithIncorrectUuid() {
    $this->expectException(InvalidArgumentException::class);
    $this->expectExceptionMessage('No "test_type" entity found with UUID "unique-but-none-non-existent" for field "field_reference"');
    $data = [
        'target_id' => 'test',
        'target_type' => 'test_type',
        'target_uuid' => 'unique-but-none-non-existent',
    ];
    $this->entityRepository
        ->loadEntityByUuid($data['target_type'], $data['target_uuid'])
        ->willReturn(NULL)
        ->shouldBeCalled();
    $this->fieldItem
        ->getName()
        ->willReturn('field_reference')
        ->shouldBeCalled();
    $this->assertDenormalize($data);
}

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