You are here

public function NodeEditFormTest::testNodeMetaInformation in Drupal 8

Same name and namespace in other branches
  1. 9 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 219

Class

NodeEditFormTest
Create a node and test node edit functionality.

Namespace

Drupal\Tests\node\Functional

Code

public function testNodeMetaInformation() {

  // 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
    ->assertNoText('Not saved yet');

  // Create node to edit.
  $edit['title[0][value]'] = $this
    ->randomMachineName(8);
  $edit['body[0][value]'] = $this
    ->randomMachineName(16);
  $this
    ->drupalPostForm(NULL, $edit, t('Save'));
  $node = $this
    ->drupalGetNodeByTitle($edit['title[0][value]']);
  $this
    ->drupalGet("node/" . $node
    ->id() . "/edit");
  $this
    ->assertNoText('Published');
  $this
    ->assertNoText($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
    ->assertText('Not saved yet');

  // Create node to edit.
  $edit['title[0][value]'] = $this
    ->randomMachineName(8);
  $edit['body[0][value]'] = $this
    ->randomMachineName(16);
  $this
    ->drupalPostForm(NULL, $edit, t('Save'));
  $node = $this
    ->drupalGetNodeByTitle($edit['title[0][value]']);
  $this
    ->drupalGet("node/" . $node
    ->id() . "/edit");
  $this
    ->assertText('Published');
  $this
    ->assertText($this->container
    ->get('date.formatter')
    ->format($node
    ->getChangedTime(), 'short'));
}