You are here

protected function EntityTestJsonInternalPropertyNormalizerTest::createEntity in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestJsonInternalPropertyNormalizerTest.php \Drupal\Tests\entity_test\Functional\Rest\EntityTestJsonInternalPropertyNormalizerTest::createEntity()

Creates the entity to be tested.

Return value

\Drupal\Core\Entity\EntityInterface The entity to be tested.

Overrides EntityTestResourceTestBase::createEntity

File

core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestJsonInternalPropertyNormalizerTest.php, line 55

Class

EntityTestJsonInternalPropertyNormalizerTest
Test that internal properties are not exposed in the 'json' format.

Namespace

Drupal\Tests\entity_test\Functional\Rest

Code

protected function createEntity() {
  if (!FieldStorageConfig::loadByName('entity_test', 'field_test_internal')) {
    FieldStorageConfig::create([
      'entity_type' => 'entity_test',
      'field_name' => 'field_test_internal',
      'type' => 'internal_property_test',
      'cardinality' => 1,
      'translatable' => FALSE,
    ])
      ->save();
    FieldConfig::create([
      'entity_type' => 'entity_test',
      'field_name' => 'field_test_internal',
      'bundle' => 'entity_test',
      'label' => 'Test field with internal and non-internal properties',
    ])
      ->save();
  }
  $entity = parent::createEntity();
  $entity->field_test_internal = [
    'value' => 'This value shall not be internal!',
  ];
  $entity
    ->save();
  return $entity;
}