function LegacyEntityDisplayBaseTest::testLegacyPreSave

Tests legacy handling of 'type' => 'hidden'.

@group legacy

@expectedDeprecation Support for using 'type' => 'hidden' in a component is deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use 'region' => 'hidden' instead. See https://www.drupal.org/node/2801513

File

core/tests/Drupal/KernelTests/Core/Entity/LegacyEntityDisplayBaseTest.php, line 45

Class

LegacyEntityDisplayBaseTest
Tests Deprecated EntityDisplayBase functionality.

Namespace

Drupal\KernelTests\Core\Entity

Code

public function testLegacyPreSave() {
  $entity_display = EntityViewDisplay::create([
    'targetEntityType' => 'entity_test',
    'bundle' => 'entity_test',
    'mode' => 'default',
    'status' => TRUE,
    'content' => [
      'foo' => [
        'type' => 'visible',
      ],
      'bar' => [
        'type' => 'hidden',
      ],
      'name' => [
        'type' => 'hidden',
        'region' => 'content',
      ],
    ],
  ]);
  // Ensure that no region is set on the component.
  $this->assertArrayNotHasKey('region', $entity_display->getComponent('foo'));
  $this->assertArrayNotHasKey('region', $entity_display->getComponent('bar'));
  // Ensure that a region is set on the component after saving.
  $entity_display->save();
  // The component with a visible type has been assigned a region.
  $component = $entity_display->getComponent('foo');
  $this->assertArrayHasKey('region', $component);
  $this->assertSame('content', $component['region']);
  // The component with a hidden type has been removed.
  $this->assertNull($entity_display->getComponent('bar'));
  // The component with a valid region and hidden type is unchanged.
  $component = $entity_display->getComponent('name');
  $this->assertArrayHasKey('region', $component);
  $this->assertSame('content', $component['region']);
}

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