function DevelEntityTypeInfoTest::testEntityTypeFields
Tests entity type fields page.
File
- 
              tests/src/ Functional/ DevelEntityTypeInfoTest.php, line 149 
Class
- DevelEntityTypeInfoTest
- Tests entity type info pages and links.
Namespace
Drupal\Tests\devel\FunctionalCode
public function testEntityTypeFields() : void {
  $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);
}