function EntityDisplayTest::testEntityView

Same name in this branch
  1. 9 core/modules/field_ui/tests/src/Functional/EntityDisplayTest.php \Drupal\Tests\field_ui\Functional\EntityDisplayTest::testEntityView()
Same name and namespace in other branches
  1. 8.9.x core/modules/field_ui/tests/src/FunctionalJavascript/EntityDisplayTest.php \Drupal\Tests\field_ui\FunctionalJavascript\EntityDisplayTest::testEntityView()
  2. 8.9.x core/modules/field_ui/tests/src/Functional/EntityDisplayTest.php \Drupal\Tests\field_ui\Functional\EntityDisplayTest::testEntityView()
  3. 10 core/modules/field_ui/tests/src/FunctionalJavascript/EntityDisplayTest.php \Drupal\Tests\field_ui\FunctionalJavascript\EntityDisplayTest::testEntityView()
  4. 10 core/modules/field_ui/tests/src/Functional/EntityDisplayTest.php \Drupal\Tests\field_ui\Functional\EntityDisplayTest::testEntityView()
  5. 11.x core/modules/field_ui/tests/src/FunctionalJavascript/EntityDisplayTest.php \Drupal\Tests\field_ui\FunctionalJavascript\EntityDisplayTest::testEntityView()
  6. 11.x core/modules/field_ui/tests/src/Functional/EntityDisplayTest.php \Drupal\Tests\field_ui\Functional\EntityDisplayTest::testEntityView()

Tests the use of regions for entity view displays.

1 method overrides EntityDisplayTest::testEntityView()
ClaroEntityDisplayTest::testEntityView in core/tests/Drupal/FunctionalJavascriptTests/Theme/ClaroEntityDisplayTest.php
Copied from parent.

File

core/modules/field_ui/tests/src/FunctionalJavascript/EntityDisplayTest.php, line 75

Class

EntityDisplayTest
Tests the UI for entity displays.

Namespace

Drupal\Tests\field_ui\FunctionalJavascript

Code

public function testEntityView() {
    $this->drupalGet('entity_test/1');
    $this->assertSession()
        ->pageTextNotContains('The field test text value');
    $this->drupalGet('entity_test/structure/entity_test/display');
    $this->assertSession()
        ->elementExists('css', '.region-content-message.region-empty');
    $this->getSession()
        ->getPage()
        ->pressButton('Show row weights');
    $this->assertSession()
        ->waitForElementVisible('css', '[name="fields[field_test_text][region]"]');
    $this->assertTrue($this->assertSession()
        ->optionExists('fields[field_test_text][region]', 'hidden')
        ->isSelected());
    $this->getSession()
        ->getPage()
        ->selectFieldOption('fields[field_test_text][region]', 'content');
    $this->assertSession()
        ->assertWaitOnAjaxRequest();
    $this->assertTrue($this->assertSession()
        ->optionExists('fields[field_test_text][region]', 'content')
        ->isSelected());
    $this->submitForm([], 'Save');
    $this->assertSession()
        ->pageTextContains('Your settings have been saved.');
    $this->assertTrue($this->assertSession()
        ->optionExists('fields[field_test_text][region]', 'content')
        ->isSelected());
    $this->drupalGet('entity_test/1');
    $this->assertSession()
        ->pageTextContains('The field test text value');
}

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