function NodePostSettingsTestCase::testPagePostInfo

7.x node.test NodePostSettingsTestCase::testPagePostInfo()

Confirms "Basic page" content type and post information is on a new node.

File

drupal-7.x/modules/node/node.test, line 806
Tests for node.module.

Class

NodePostSettingsTestCase
Checks that the post information displays when enabled for a content type.

Code

function testPagePostInfo() {

  // Set "Basic page" content type to display post information.
  $edit = array();
  $edit['node_submitted'] = TRUE;
  $this->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type'));

  // Create a node.
  $edit = array();
  $langcode = LANGUAGE_NONE;
  $edit["title"] = $this->randomName(8);
  $edit["body[$langcode][0][value]"] = $this->randomName(16);
  $this->drupalPost('node/add/page', $edit, t('Save'));

  // Check that the post information is displayed.
  $node = $this->drupalGetNodeByTitle($edit["title"]);
  $elements = $this->xpath('//div[contains(@class,:class)]', array(':class' => 'submitted'));
  $this->assertEqual(count($elements), 1, 'Post information is displayed.');
}