You are here

public function EntityReferenceFieldItemNormalizerTest::testDenormalizeWithTypeWithIncorrectUuid in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/serialization/tests/src/Unit/Normalizer/EntityReferenceFieldItemNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\EntityReferenceFieldItemNormalizerTest::testDenormalizeWithTypeWithIncorrectUuid()
  2. 9 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 372

Class

EntityReferenceFieldItemNormalizerTest
@coversDefaultClass \Drupal\serialization\Normalizer\EntityReferenceFieldItemNormalizer @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);
}