You are here

class FieldRenderedEntityTest in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/tests/src/Kernel/Handler/FieldRenderedEntityTest.php \Drupal\Tests\views\Kernel\Handler\FieldRenderedEntityTest
  2. 9 core/modules/views/tests/src/Kernel/Handler/FieldRenderedEntityTest.php \Drupal\Tests\views\Kernel\Handler\FieldRenderedEntityTest

Tests the core Drupal\views\Plugin\views\field\RenderedEntity handler.

@group views

Hierarchy

  • class \Drupal\Tests\views\Kernel\Handler\FieldRenderedEntityTest extends \Drupal\Tests\views\Kernel\ViewsKernelTestBase

Expanded class hierarchy of FieldRenderedEntityTest

File

core/modules/views/tests/src/Kernel/Handler/FieldRenderedEntityTest.php, line 21

Namespace

Drupal\Tests\views\Kernel\Handler
View source
class FieldRenderedEntityTest extends ViewsKernelTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'entity_test',
    'field',
  ];

  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = [
    'test_field_entity_test_rendered',
  ];

  /**
   * The logged in user.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $user;

  /**
   * {@inheritdoc}
   */
  protected function setUpFixtures() {
    $this
      ->installEntitySchema('user');
    $this
      ->installEntitySchema('entity_test');
    $this
      ->installConfig([
      'entity_test',
    ]);

    // Create user 1 so that the user created later in the test has a different
    // user ID.
    // @todo Remove in https://www.drupal.org/node/540008.
    User::create([
      'uid' => 1,
      'name' => 'user1',
    ])
      ->save();
    EntityViewMode::create([
      'id' => 'entity_test.foobar',
      'targetEntityType' => 'entity_test',
      'status' => TRUE,
      'enabled' => TRUE,
      'label' => 'My view mode',
    ])
      ->save();
    $display = EntityViewDisplay::create([
      'targetEntityType' => 'entity_test',
      'bundle' => 'entity_test',
      'mode' => 'foobar',
      'label' => 'My view mode',
      'status' => TRUE,
    ]);
    $display
      ->save();
    $field_storage = FieldStorageConfig::create([
      'field_name' => 'test_field',
      'entity_type' => 'entity_test',
      'type' => 'string',
    ]);
    $field_storage
      ->save();
    $field_config = FieldConfig::create([
      'field_name' => 'test_field',
      'entity_type' => 'entity_test',
      'bundle' => 'entity_test',
    ]);
    $field_config
      ->save();

    // Create some test entities.
    for ($i = 1; $i <= 3; $i++) {
      EntityTest::create([
        'name' => "Article title {$i}",
        'test_field' => "Test {$i}",
      ])
        ->save();
    }
    Role::create([
      'id' => 'test_role',
      'label' => 'Can view test entities',
      'permissions' => [
        'view test entity',
      ],
    ])
      ->save();
    $this->user = User::create([
      'name' => 'test user',
      'roles' => [
        'test_role',
      ],
    ]);
    $this->user
      ->save();
    parent::setUpFixtures();
  }

  /**
   * Tests the default rendered entity output.
   */
  public function testRenderedEntityWithoutField() {
    \Drupal::currentUser()
      ->setAccount($this->user);
    EntityViewDisplay::load('entity_test.entity_test.foobar')
      ->removeComponent('test_field')
      ->save();
    $view = Views::getView('test_field_entity_test_rendered');
    $build = [
      '#type' => 'view',
      '#name' => 'test_field_entity_test_rendered',
      '#view' => $view,
      '#display_id' => 'default',
    ];
    $renderer = \Drupal::service('renderer');
    $renderer
      ->renderPlain($build);
    for ($i = 1; $i <= 3; $i++) {
      $view_field = $view->style_plugin
        ->getField($i - 1, 'rendered_entity');
      $search_result = strpos($view_field, "Test {$i}") !== FALSE;
      $this
        ->assertFalse($search_result, "The text 'Test {$i}' not found in the view.");
    }
    $this
      ->assertConfigDependencies($view->storage);
    $this
      ->assertCacheabilityMetadata($build);
  }

  /**
   * Ensures that the expected cacheability metadata is applied.
   *
   * @param array $build
   *   The render array
   *
   * @internal
   */
  protected function assertCacheabilityMetadata(array $build) : void {
    $this
      ->assertEqualsCanonicalizing([
      'config:core.entity_view_display.entity_test.entity_test.foobar',
      'config:views.view.test_field_entity_test_rendered',
      'entity_test:1',
      'entity_test:2',
      'entity_test:3',
      'entity_test_list',
      'entity_test_view',
    ], $build['#cache']['tags']);
    $this
      ->assertEqualsCanonicalizing([
      'entity_test_view_grants',
      'languages:language_interface',
      'theme',
      'url.query_args',
      'user.permissions',
    ], $build['#cache']['contexts']);
  }

  /**
   * Ensures that the config dependencies are calculated the right way.
   *
   * @param \Drupal\views\Entity\View $storage
   *   The view storage.
   *
   * @internal
   */
  protected function assertConfigDependencies(View $storage) : void {
    $storage
      ->calculateDependencies();
    $this
      ->assertEquals([
      'config' => [
        'core.entity_view_mode.entity_test.foobar',
      ],
      'module' => [
        'entity_test',
      ],
    ], $storage
      ->getDependencies());
  }

  /**
   * Tests the rendered entity output with the test field configured to show.
   */
  public function testRenderedEntityWithField() {
    \Drupal::currentUser()
      ->setAccount($this->user);

    // Show the test_field on the entity_test.entity_test.foobar view display.
    EntityViewDisplay::load('entity_test.entity_test.foobar')
      ->setComponent('test_field', [
      'type' => 'string',
      'label' => 'above',
    ])
      ->save();
    $view = Views::getView('test_field_entity_test_rendered');
    $build = [
      '#type' => 'view',
      '#name' => 'test_field_entity_test_rendered',
      '#view' => $view,
      '#display_id' => 'default',
    ];
    $renderer = \Drupal::service('renderer');
    $renderer
      ->renderPlain($build);
    for ($i = 1; $i <= 3; $i++) {
      $view_field = $view->style_plugin
        ->getField($i - 1, 'rendered_entity');
      $search_result = strpos($view_field, "Test {$i}") !== FALSE;
      $this
        ->assertTrue($search_result, "The text 'Test {$i}' found in the view.");
    }
    $this
      ->assertConfigDependencies($view->storage);
    $this
      ->assertCacheabilityMetadata($build);
  }

}

Members