EntityNormalizerTest.php

Same filename and directory in other branches
  1. 9 core/modules/serialization/tests/src/Unit/Normalizer/EntityNormalizerTest.php
  2. 8.9.x core/modules/serialization/tests/src/Unit/Normalizer/EntityNormalizerTest.php
  3. 10 core/modules/serialization/tests/src/Unit/Normalizer/EntityNormalizerTest.php

Namespace

Drupal\Tests\serialization\Unit\Normalizer

File

core/modules/serialization/tests/src/Unit/Normalizer/EntityNormalizerTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\serialization\Unit\Normalizer;

use Drupal\Core\Entity\EntityFieldManagerInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Entity\EntityTypeRepositoryInterface;
use Drupal\Core\Entity\FieldableEntityInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\serialization\Normalizer\EntityNormalizer;
use Drupal\Tests\Core\Entity\ContentEntityBaseMockableClass;
use Drupal\Tests\UnitTestCase;
use Symfony\Component\Serializer\Exception\UnexpectedValueException;

/**
 * @coversDefaultClass \Drupal\serialization\Normalizer\EntityNormalizer
 * @group serialization
 */
class EntityNormalizerTest extends UnitTestCase {
  
  /**
   * The mock entity field manager.
   *
   * @var \Drupal\Core\Entity\EntityFieldManagerInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $entityFieldManager;
  
  /**
   * The mock entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $entityTypeManager;
  
  /**
   * The mock entity type repository.
   *
   * @var \Drupal\Core\Entity\EntityTypeRepositoryInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $entityTypeRepository;
  
  /**
   * The mock serializer.
   *
   * @var \Symfony\Component\Serializer\SerializerInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $serializer;
  
  /**
   * The entity normalizer.
   *
   * @var \Drupal\serialization\Normalizer\EntityNormalizer
   */
  protected $entityNormalizer;
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->entityFieldManager = $this->createMock(EntityFieldManagerInterface::class);
    $this->entityTypeManager = $this->createMock(EntityTypeManagerInterface::class);
    $this->entityTypeRepository = $this->createMock(EntityTypeRepositoryInterface::class);
    $this->entityNormalizer = new EntityNormalizer($this->entityTypeManager, $this->entityTypeRepository, $this->entityFieldManager);
  }
  
  /**
   * Tests the normalize() method.
   *
   * @covers ::normalize
   */
  public function testNormalize() : void {
    $list_item_1 = $this->createMock('Drupal\\Core\\TypedData\\TypedDataInterface');
    $list_item_2 = $this->createMock('Drupal\\Core\\TypedData\\TypedDataInterface');
    $definitions = [
      'field_1' => $list_item_1,
      'field_2' => $list_item_2,
    ];
    $content_entity = $this->getMockBuilder(ContentEntityBaseMockableClass::class)
      ->disableOriginalConstructor()
      ->onlyMethods([
      'getFields',
    ])
      ->getMock();
    $content_entity->expects($this->once())
      ->method('getFields')
      ->willReturn($definitions);
    $serializer = $this->prophesize('Symfony\\Component\\Serializer\\Serializer');
    $serializer->normalize($list_item_1, 'test_format', [])
      ->shouldBeCalled();
    $serializer->normalize($list_item_2, 'test_format', [])
      ->shouldBeCalled();
    $this->entityNormalizer
      ->setSerializer($serializer->reveal());
    $this->entityNormalizer
      ->normalize($content_entity, 'test_format');
  }
  
  /**
   * Tests the denormalize() method with no entity type provided in context.
   *
   * @covers ::denormalize
   */
  public function testDenormalizeWithNoEntityType() : void {
    $this->expectException(UnexpectedValueException::class);
    $this->entityNormalizer
      ->denormalize([], ContentEntityBaseMockableClass::class);
  }
  
  /**
   * Tests the denormalize method with a bundle property.
   *
   * @covers ::denormalize
   */
  public function testDenormalizeWithValidBundle() : void {
    $test_data = [
      'key_1' => 'value_1',
      'key_2' => 'value_2',
      'test_type' => [
        [
          'name' => 'test_bundle',
        ],
      ],
    ];
    $entity_type = $this->createMock('Drupal\\Core\\Entity\\EntityTypeInterface');
    $entity_type->expects($this->once())
      ->method('id')
      ->willReturn('test');
    $entity_type->expects($this->once())
      ->method('hasKey')
      ->with('bundle')
      ->willReturn(TRUE);
    $entity_type->expects($this->once())
      ->method('getKey')
      ->with('bundle')
      ->willReturn('test_type');
    $entity_type->expects($this->once())
      ->method('entityClassImplements')
      ->with(FieldableEntityInterface::class)
      ->willReturn(TRUE);
    $entity_type->expects($this->once())
      ->method('getBundleEntityType')
      ->willReturn('test_bundle');
    $entity_type_storage_definition = $this->createMock('Drupal\\Core\\Field\\FieldStorageDefinitionInterface');
    $entity_type_storage_definition->expects($this->once())
      ->method('getMainPropertyName')
      ->willReturn('name');
    $entity_type_definition = $this->createMock('Drupal\\Core\\Field\\FieldDefinitionInterface');
    $entity_type_definition->expects($this->once())
      ->method('getFieldStorageDefinition')
      ->willReturn($entity_type_storage_definition);
    $base_definitions = [
      'test_type' => $entity_type_definition,
    ];
    $this->entityTypeManager
      ->expects($this->once())
      ->method('getDefinition')
      ->with('test')
      ->willReturn($entity_type);
    $this->entityFieldManager
      ->expects($this->once())
      ->method('getBaseFieldDefinitions')
      ->with('test')
      ->willReturn($base_definitions);
    $entity_query_mock = $this->createMock('Drupal\\Core\\Entity\\Query\\QueryInterface');
    $entity_query_mock->expects($this->once())
      ->method('accessCheck')
      ->with(TRUE)
      ->willReturn($entity_query_mock);
    $entity_query_mock->expects($this->once())
      ->method('execute')
      ->willReturn([
      'test_bundle' => 'test_bundle',
    ]);
    $entity_type_storage = $this->createMock('Drupal\\Core\\Entity\\EntityStorageInterface');
    $entity_type_storage->expects($this->once())
      ->method('getQuery')
      ->willReturn($entity_query_mock);
    $key_1 = $this->createMock(FieldItemListInterface::class);
    $key_2 = $this->createMock(FieldItemListInterface::class);
    $entity = $this->createMock(ContentEntityBaseMockableClass::class);
    $entity->expects($this->exactly(2))
      ->method('get')
      ->willReturnMap([
      [
        'key_1',
        $key_1,
      ],
      [
        'key_2',
        $key_2,
      ],
    ]);
    $storage = $this->createMock('Drupal\\Core\\Entity\\EntityStorageInterface');
    // Create should only be called with the bundle property at first.
    $expected_test_data = [
      'test_type' => 'test_bundle',
    ];
    $storage->expects($this->once())
      ->method('create')
      ->with($expected_test_data)
      ->willReturn($entity);
    $this->entityTypeManager
      ->expects($this->exactly(2))
      ->method('getStorage')
      ->willReturnMap([
      [
        'test_bundle',
        $entity_type_storage,
      ],
      [
        'test',
        $storage,
      ],
    ]);
    // Setup expectations for the serializer. This will be called for each field
    // item.
    $serializer = $this->prophesize('Symfony\\Component\\Serializer\\Serializer');
    $serializer->denormalize('value_1', get_class($key_1), NULL, [
      'target_instance' => $key_1,
      'entity_type' => 'test',
    ])
      ->willReturn(NULL)
      ->shouldBeCalled();
    $serializer->denormalize('value_2', get_class($key_2), NULL, [
      'target_instance' => $key_2,
      'entity_type' => 'test',
    ])
      ->willReturn(NULL)
      ->shouldBeCalled();
    $this->entityNormalizer
      ->setSerializer($serializer->reveal());
    $this->assertNotNull($this->entityNormalizer
      ->denormalize($test_data, ContentEntityBaseMockableClass::class, NULL, [
      'entity_type' => 'test',
    ]));
  }
  
  /**
   * Tests the denormalize method with a bundle property.
   *
   * @covers ::denormalize
   */
  public function testDenormalizeWithInvalidBundle() : void {
    $test_data = [
      'key_1' => 'value_1',
      'key_2' => 'value_2',
      'test_type' => [
        [
          'name' => 'test_bundle',
        ],
      ],
    ];
    $entity_type = $this->createMock('Drupal\\Core\\Entity\\EntityTypeInterface');
    $entity_type->expects($this->once())
      ->method('id')
      ->willReturn('test');
    $entity_type->expects($this->once())
      ->method('hasKey')
      ->with('bundle')
      ->willReturn(TRUE);
    $entity_type->expects($this->once())
      ->method('getKey')
      ->with('bundle')
      ->willReturn('test_type');
    $entity_type->expects($this->once())
      ->method('entityClassImplements')
      ->with(FieldableEntityInterface::class)
      ->willReturn(TRUE);
    $entity_type->expects($this->once())
      ->method('getBundleEntityType')
      ->willReturn('test_bundle');
    $entity_type_storage_definition = $this->createMock('Drupal\\Core\\Field\\FieldStorageDefinitionInterface');
    $entity_type_storage_definition->expects($this->once())
      ->method('getMainPropertyName')
      ->willReturn('name');
    $entity_type_definition = $this->createMock('Drupal\\Core\\Field\\FieldDefinitionInterface');
    $entity_type_definition->expects($this->once())
      ->method('getFieldStorageDefinition')
      ->willReturn($entity_type_storage_definition);
    $base_definitions = [
      'test_type' => $entity_type_definition,
    ];
    $this->entityTypeManager
      ->expects($this->once())
      ->method('getDefinition')
      ->with('test')
      ->willReturn($entity_type);
    $this->entityFieldManager
      ->expects($this->once())
      ->method('getBaseFieldDefinitions')
      ->with('test')
      ->willReturn($base_definitions);
    $entity_query_mock = $this->createMock('Drupal\\Core\\Entity\\Query\\QueryInterface');
    $entity_query_mock->expects($this->once())
      ->method('accessCheck')
      ->with(TRUE)
      ->willReturn($entity_query_mock);
    $entity_query_mock->expects($this->once())
      ->method('execute')
      ->willReturn([
      'test_bundle_other' => 'test_bundle_other',
    ]);
    $entity_type_storage = $this->createMock('Drupal\\Core\\Entity\\EntityStorageInterface');
    $entity_type_storage->expects($this->once())
      ->method('getQuery')
      ->willReturn($entity_query_mock);
    $this->entityTypeManager
      ->expects($this->once())
      ->method('getStorage')
      ->with('test_bundle')
      ->willReturn($entity_type_storage);
    $this->expectException(UnexpectedValueException::class);
    $this->entityNormalizer
      ->denormalize($test_data, ContentEntityBaseMockableClass::class, NULL, [
      'entity_type' => 'test',
    ]);
  }
  
  /**
   * Tests the denormalize method with no bundle defined.
   *
   * @covers ::denormalize
   */
  public function testDenormalizeWithNoBundle() : void {
    $test_data = [
      'key_1' => 'value_1',
      'key_2' => 'value_2',
    ];
    $entity_type = $this->createMock('Drupal\\Core\\Entity\\EntityTypeInterface');
    $entity_type->expects($this->once())
      ->method('entityClassImplements')
      ->with(FieldableEntityInterface::class)
      ->willReturn(TRUE);
    $entity_type->expects($this->once())
      ->method('hasKey')
      ->with('bundle')
      ->willReturn(FALSE);
    $entity_type->expects($this->never())
      ->method('getKey');
    $this->entityTypeManager
      ->expects($this->once())
      ->method('getDefinition')
      ->with('test')
      ->willReturn($entity_type);
    $key_1 = $this->createMock(FieldItemListInterface::class);
    $key_2 = $this->createMock(FieldItemListInterface::class);
    $entity = $this->createMock(ContentEntityBaseMockableClass::class);
    $entity->expects($this->exactly(2))
      ->method('get')
      ->willReturnMap([
      [
        'key_1',
        $key_1,
      ],
      [
        'key_2',
        $key_2,
      ],
    ]);
    $storage = $this->createMock('Drupal\\Core\\Entity\\EntityStorageInterface');
    $storage->expects($this->once())
      ->method('create')
      ->with([])
      ->willReturn($entity);
    $this->entityTypeManager
      ->expects($this->once())
      ->method('getStorage')
      ->with('test')
      ->willReturn($storage);
    $this->entityFieldManager
      ->expects($this->never())
      ->method('getBaseFieldDefinitions');
    // Setup expectations for the serializer. This will be called for each field
    // item.
    $serializer = $this->prophesize('Symfony\\Component\\Serializer\\Serializer');
    $serializer->denormalize('value_1', get_class($key_1), NULL, [
      'target_instance' => $key_1,
      'entity_type' => 'test',
    ])
      ->willReturn(NULL)
      ->shouldBeCalled();
    $serializer->denormalize('value_2', get_class($key_2), NULL, [
      'target_instance' => $key_2,
      'entity_type' => 'test',
    ])
      ->willReturn(NULL)
      ->shouldBeCalled();
    $this->entityNormalizer
      ->setSerializer($serializer->reveal());
    $this->assertNotNull($this->entityNormalizer
      ->denormalize($test_data, ContentEntityBaseMockableClass::class, NULL, [
      'entity_type' => 'test',
    ]));
  }
  
  /**
   * Tests the denormalize method with no bundle defined.
   *
   * @covers ::denormalize
   */
  public function testDenormalizeWithNoFieldableEntityType() : void {
    $test_data = [
      'key_1' => 'value_1',
      'key_2' => 'value_2',
    ];
    $entity_type = $this->createMock('Drupal\\Core\\Entity\\EntityTypeInterface');
    $entity_type->expects($this->once())
      ->method('entityClassImplements')
      ->with(FieldableEntityInterface::class)
      ->willReturn(FALSE);
    $entity_type->expects($this->never())
      ->method('getKey');
    $this->entityTypeManager
      ->expects($this->once())
      ->method('getDefinition')
      ->with('test')
      ->willReturn($entity_type);
    $storage = $this->createMock('Drupal\\Core\\Entity\\EntityStorageInterface');
    $storage->expects($this->once())
      ->method('create')
      ->with($test_data)
      ->willReturn($this->createMock(ContentEntityBaseMockableClass::class));
    $this->entityTypeManager
      ->expects($this->once())
      ->method('getStorage')
      ->with('test')
      ->willReturn($storage);
    $this->entityFieldManager
      ->expects($this->never())
      ->method('getBaseFieldDefinitions');
    $this->assertNotNull($this->entityNormalizer
      ->denormalize($test_data, ContentEntityBaseMockableClass::class, NULL, [
      'entity_type' => 'test',
    ]));
  }

}

Classes

Title Deprecated Summary
EntityNormalizerTest @coversDefaultClass \Drupal\serialization\Normalizer\EntityNormalizer[[api-linebreak]] @group serialization

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