protected function DrupalWebTestCase::drupalCreateNode in SimpleTest 7
Same name and namespace in other branches
- 6.2 drupal_web_test_case.php \DrupalWebTestCase::drupalCreateNode()
- 7.2 drupal_web_test_case.php \DrupalWebTestCase::drupalCreateNode()
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
Created node object.
1 call to DrupalWebTestCase::drupalCreateNode()
- CascadingStylesheetsTestCase::testRenderInlineFullPage in tests/
common.test - Tests rendering inline stylesheets through a full page request.
File
- ./
drupal_web_test_case.php, line 692
Class
- DrupalWebTestCase
- Test case for typical Drupal tests.
Code
protected function drupalCreateNode($settings = array()) {
// Populate defaults array.
$settings += array(
'body' => array(
FIELD_LANGUAGE_NONE => array(
array(),
),
),
'title' => array(
FIELD_LANGUAGE_NONE => array(
array(
'value' => $this
->randomName(8),
),
),
),
'comment' => 2,
'changed' => REQUEST_TIME,
'moderate' => 0,
'promote' => 0,
'revision' => 1,
'log' => '',
'status' => 1,
'sticky' => 0,
'type' => 'page',
'revisions' => NULL,
'taxonomy' => NULL,
);
// 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(),
);
$langcode = !empty($settings['language']) ? $settings['language'] : FIELD_LANGUAGE_NONE;
$settings['body'][$langcode][0] += $body;
$node = (object) $settings;
node_save($node);
// 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;
}