1.20.x node.test NodeTitleTestCase::testNodeTitle()

Creates one node and tests if the node title has the correct value.

File

modules/node/tests/node.test, line 2315
Tests for node.module.

Class

NodeTitleTestCase
Tests node title functionality.

Code

function testNodeTitle() {
  // Create "Page" content with title.
  // Add the node to the frontpage so we can test if teaser links are clickable.
  $settings = array(
    'title' => $this->randomName(8),
    'promote' => 1,
  );
  $node = $this->backdropCreateNode($settings);

  // Test <title> tag.
  $this->backdropGet("node/$node->nid");
  $xpath = '//title';
  $this->assertEqual(current($this->xpath($xpath)), $node->title . ' | Backdrop CMS', 'Page title is equal to node title.', 'Node');

  // Test breadcrumb in comment preview.
  $this->backdropGet("comment/reply/$node->nid");
  $xpath = '//nav[@class="breadcrumb"]/ol/li[last()]/a';
  $this->assertEqual(current($this->xpath($xpath)), $node->title, 'Node breadcrumb is equal to node title.', 'Node');

  // Test node title in comment preview.
  $this->assertEqual(current($this->xpath('//article[@id=:id]//h2/a', array(':id' => 'node-' . $node->nid))), $node->title, 'Node preview title is equal to node title.', 'Node');

  // Test node title is clickable on teaser list (/node).
  $this->backdropGet('node');
  $this->clickLink($node->title);
}