You are here

public function DevelEntityTypeInfoTest::testEntityTypeFields in Devel 4.x

Same name and namespace in other branches
  1. 8.3 tests/src/Functional/DevelEntityTypeInfoTest.php \Drupal\Tests\devel\Functional\DevelEntityTypeInfoTest::testEntityTypeFields()

Tests entity type fields page.

File

tests/src/Functional/DevelEntityTypeInfoTest.php, line 150

Class

DevelEntityTypeInfoTest
Tests entity type info pages and links.

Namespace

Drupal\Tests\devel\Functional

Code

public function testEntityTypeFields() {
  $entity_type_id = 'date_format';

  // Ensures that the page works as expected.
  $this
    ->drupalGet("/devel/entity/fields/{$entity_type_id}");
  $this
    ->assertSession()
    ->statusCodeEquals(200);
  $this
    ->assertSession()
    ->pageTextContains("Entity fields {$entity_type_id}");

  // Ensures that the page returns a 404 error if the requested entity type is
  // not defined.
  $this
    ->drupalGet('/devel/entity/fields/not_exists');
  $this
    ->assertSession()
    ->statusCodeEquals(404);

  // Ensures that the page is accessible ony to users with the adequate
  // permissions.
  $this
    ->drupalLogout();
  $this
    ->drupalGet("/devel/entity/fields/{$entity_type_id}");
  $this
    ->assertSession()
    ->statusCodeEquals(403);
}