EntityTypeTest.php

Same filename in this branch
  1. 10 core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php
Same filename and directory in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Entity/EntityTypeTest.php
  2. 9 core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php
  3. 8.9.x core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php
  4. 11.x core/tests/Drupal/KernelTests/Core/Entity/EntityTypeTest.php
  5. 11.x core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php

Namespace

Drupal\KernelTests\Core\Entity

File

core/tests/Drupal/KernelTests/Core/Entity/EntityTypeTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\KernelTests\Core\Entity;

use Drupal\Core\Entity\EntityType;
use Drupal\Core\StringTranslation\TranslationManager;
use Drupal\KernelTests\KernelTestBase;

/**
 * Tests general features of entity types.
 *
 * @group Entity
 */
class EntityTypeTest extends KernelTestBase {
  
  /**
   * Sets up an EntityType object for a given set of values.
   *
   * @param array $definition
   *   An array of values to use for the EntityType.
   *
   * @return \Drupal\Core\Entity\EntityTypeInterface
   */
  protected function setUpEntityType($definition) {
    $definition += [
      'id' => 'example_entity_type',
    ];
    return new EntityType($definition);
  }
  
  /**
   * Tests that the EntityType object can be serialized.
   */
  public function testIsSerializable() : void {
    $entity_type = $this->setUpEntityType([]);
    $translation_service = new class  extends TranslationManager {
      
      /**
       * Constructs a UnserializableTranslationManager object.
       */
      public function __construct() {
      }
      
      /**
       * Always throw an exception.
       */
      public function __serialize() : array {
        throw new \Exception();
      }

};
    $this->container
      ->set('bar', $translation_service);
    $entity_type->setStringTranslation($this->container
      ->get('string_translation'));
    // This should not throw an exception.
    $tmp = serialize($entity_type);
    $entity_type = unserialize($tmp);
    // And this should have the correct id.
    $this->assertEquals('example_entity_type', $entity_type->id());
  }

}

Classes

Title Deprecated Summary
EntityTypeTest Tests general features of entity types.

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