function NodeEditFormTest::testNodeMetaInformation

Same name and namespace in other branches
  1. 9 core/modules/node/tests/src/Functional/NodeEditFormTest.php \Drupal\Tests\node\Functional\NodeEditFormTest::testNodeMetaInformation()
  2. 8.9.x core/modules/node/tests/src/Functional/NodeEditFormTest.php \Drupal\Tests\node\Functional\NodeEditFormTest::testNodeMetaInformation()
  3. 11.x core/modules/node/tests/src/Functional/NodeEditFormTest.php \Drupal\Tests\node\Functional\NodeEditFormTest::testNodeMetaInformation()

Tests the node meta information.

File

core/modules/node/tests/src/Functional/NodeEditFormTest.php, line 227

Class

NodeEditFormTest
Create a node and test node edit functionality.

Namespace

Drupal\Tests\node\Functional

Code

public function testNodeMetaInformation() : void {
  // Check that regular users (i.e. without the 'administer nodes' permission)
  // can not see the meta information.
  $this->drupalLogin($this->webUser);
  $this->drupalGet('node/add/page');
  $this->assertSession()
    ->pageTextNotContains('Not saved yet');
  // Create node to edit.
  $edit['title[0][value]'] = $this->randomMachineName(8);
  $edit['body[0][value]'] = $this->randomMachineName(16);
  $this->submitForm($edit, 'Save');
  $node = $this->drupalGetNodeByTitle($edit['title[0][value]']);
  $this->drupalGet("node/" . $node->id() . "/edit");
  $this->assertSession()
    ->pageTextNotContains('Published');
  $this->assertSession()
    ->pageTextNotContains($this->container
    ->get('date.formatter')
    ->format($node->getChangedTime(), 'short'));
  // Check that users with the 'administer nodes' permission can see the meta
  // information.
  $this->drupalLogin($this->adminUser);
  $this->drupalGet('node/add/page');
  $this->assertSession()
    ->pageTextContains('Not saved yet');
  // Create node to edit.
  $edit['title[0][value]'] = $this->randomMachineName(8);
  $edit['body[0][value]'] = $this->randomMachineName(16);
  $this->submitForm($edit, 'Save');
  $node = $this->drupalGetNodeByTitle($edit['title[0][value]']);
  $this->drupalGet("node/" . $node->id() . "/edit");
  $this->assertSession()
    ->pageTextContains('Published');
  $this->assertSession()
    ->pageTextContains($this->container
    ->get('date.formatter')
    ->format($node->getChangedTime(), 'short'));
}

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