1 backdrop_web_test_case.php protected BackdropWebTestCase::backdropCreateNode($settings = array())

Creates a node based on default settings.

Parameters

$settings: An associative array of settings to change from the defaults, keys are node properties, for example 'title' => 'Hello, world!'.

Return value

Node: Created node entity.

File

core/modules/simpletest/backdrop_web_test_case.php, line 1122

Class

BackdropWebTestCase
Test case for typical Backdrop tests.

Code

protected function backdropCreateNode($settings = array()) {
  // Populate defaults array.
  $settings += array(
    'body' => array(LANGUAGE_NONE => array(array())),
    'title' => $this->randomName(8),
    'comment' => 2,
    'changed' => REQUEST_TIME,
    'moderate' => 0,
    'promote' => 0,
    'revision' => 1,
    'log' => '',
    'status' => 1,
    'sticky' => 0,
    'type' => 'page',
    'revisions' => NULL,
    'langcode' => LANGUAGE_NONE,
  );

  // Use the original node's created time for existing nodes.
  if (isset($settings['created']) && !isset($settings['date'])) {
    $settings['date'] = format_date($settings['created'], 'custom', 'Y-m-d H:i:s O');
  }

  // If the node's user uid is not specified manually, use the currently
  // logged in user if available, or else the user running the test.
  if (!isset($settings['uid'])) {
    if ($this->loggedInUser) {
      $settings['uid'] = $this->loggedInUser->uid;
    }
    else {
      global $user;
      $settings['uid'] = $user->uid;
    }
  }

  // Merge body field value and format separately.
  $body = array(
    'value' => $this->randomName(32),
    'format' => filter_default_format(),
  );
  $settings['body'][$settings['langcode']][0] += $body;

  $node = new Node($settings);
  $node->save();

  // Small hack to link revisions to our test user.
  db_update('node_revision')
    ->fields(array('uid' => $node->uid))
    ->condition('vid', $node->vid)
    ->execute();
  return $node;
}