You are here

public function EntityTestRevisionTest::testRevisionsViewWithNoTypeOnBaseTable in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Functional/Wizard/EntityTestRevisionTest.php \Drupal\Tests\views\Functional\Wizard\EntityTestRevisionTest::testRevisionsViewWithNoTypeOnBaseTable()

Tests creating a view of revisions where the type is not on the base table.

File

core/modules/views/tests/src/Functional/Wizard/EntityTestRevisionTest.php, line 25

Class

EntityTestRevisionTest
Tests wizard for generic revisionable entities.

Namespace

Drupal\Tests\views\Functional\Wizard

Code

public function testRevisionsViewWithNoTypeOnBaseTable() {
  $type = [
    'show[wizard_key]' => 'standard:entity_test_rev_revision',
  ];
  $this
    ->drupalPostForm('admin/structure/views/add', $type, t('Update "Show" choice'));
  $view = [];
  $view['label'] = $this
    ->randomMachineName(16);
  $view['id'] = strtolower($this
    ->randomMachineName(16));
  $view['description'] = $this
    ->randomMachineName(16);
  $view['page[create]'] = FALSE;
  $view['show[type]'] = 'entity_test_rev';
  $this
    ->drupalPostForm(NULL, $view, t('Save and edit'));
  $view_storage_controller = \Drupal::entityTypeManager()
    ->getStorage('view');

  /** @var \Drupal\views\Entity\View $view */
  $view = $view_storage_controller
    ->load($view['id']);
  $display_options = $view
    ->getDisplay('default')['display_options'];

  // Ensure that no filters exist on 'type' since that data is not available
  // on the base table.
  $this
    ->assertEmpty($display_options['filters']);
}