function ForumTest::createForumTopic

Creates a forum topic.

Parameters

array $forum: A forum array.

boolean $container: TRUE if $forum is a container; FALSE otherwise.

Return value

object The created topic node.

4 calls to ForumTest::createForumTopic()
ForumTest::doBasicTests in drupal/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php
Runs basic tests on the indicated user.
ForumTest::generateForumTopics in drupal/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php
Generates forum topics.
ForumTest::testForum in drupal/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php
Tests forum functionality through the admin and user interfaces.
ForumTest::testForumWithNewPost in drupal/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php
Tests a forum with a new post displays properly.

File

drupal/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php, line 503
Tests for forum.module.

Class

ForumTest
Provides automated tests for the Forum module.

Namespace

Drupal\forum\Tests

Code

function createForumTopic($forum, $container = FALSE) {

  // Generate a random subject/body.
  $title = $this
    ->randomName(20);
  $body = $this
    ->randomName(200);
  $langcode = Language::LANGCODE_NOT_SPECIFIED;
  $edit = array(
    "title" => $title,
    "body[{$langcode}][0][value]" => $body,
  );
  $tid = $forum['tid'];

  // Create the forum topic, preselecting the forum ID via a URL parameter.
  $this
    ->drupalPost('node/add/forum/' . $tid, $edit, t('Save'));
  $type = t('Forum topic');
  if ($container) {
    $this
      ->assertNoRaw(t('@type %title has been created.', array(
      '@type' => $type,
      '%title' => $title,
    )), 'Forum topic was not created');
    $this
      ->assertRaw(t('The item %title is a forum container, not a forum.', array(
      '%title' => $forum['name'],
    )), 'Error message was shown');
    return;
  }
  else {
    $this
      ->assertRaw(t('@type %title has been created.', array(
      '@type' => $type,
      '%title' => $title,
    )), 'Forum topic was created');
    $this
      ->assertNoRaw(t('The item %title is a forum container, not a forum.', array(
      '%title' => $forum['name'],
    )), 'No error message was shown');
  }

  // Retrieve node object, ensure that the topic was created and in the proper forum.
  $node = $this
    ->drupalGetNodeByTitle($title);
  $this
    ->assertTrue($node != NULL, format_string('Node @title was loaded', array(
    '@title' => $title,
  )));
  $this
    ->assertEqual($node->taxonomy_forums[Language::LANGCODE_NOT_SPECIFIED][0]['tid'], $tid, 'Saved forum topic was in the expected forum');

  // View forum topic.
  $this
    ->drupalGet('node/' . $node->nid);
  $this
    ->assertRaw($title, 'Subject was found');
  $this
    ->assertRaw($body, 'Body was found');
  return $node;
}