Error message
You are browsing documentation for drupal 7.x, which is not supported anymore. Read the updated version of this page for drupal 11.x (the latest version).function NodeSaveTestCase::testTimestamps
Verifies accuracy of the "created" and "changed" timestamp functionality.
File
-
modules/
node/ node.test, line 1377
Class
- NodeSaveTestCase
- Tests node save related functionality, including import-save.
Code
function testTimestamps() {
// Use the default timestamps.
$edit = array(
'uid' => $this->web_user ->uid,
'type' => 'article',
'title' => $this->randomName (8),
);
node_save ((object) $edit);
$node = $this->drupalGetNodeByTitle ($edit['title']);
$this->assertEqual ($node->created, REQUEST_TIME , 'Creating a node sets default "created" timestamp.');
$this->assertEqual ($node->changed , REQUEST_TIME , 'Creating a node sets default "changed" timestamp.');
// Store the timestamps.
$created = $node->created;
$changed = $node->changed ;
node_save ($node);
$node = $this->drupalGetNodeByTitle ($edit['title'], TRUE);
$this->assertEqual ($node->created, $created, 'Updating a node preserves "created" timestamp.');
// Programmatically set the timestamps using hook_node_presave.
$node->title = 'testing_node_presave';
node_save ($node);
$node = $this->drupalGetNodeByTitle ('testing_node_presave', TRUE);
$this->assertEqual ($node->created, 280299600, 'Saving a node uses "created" timestamp set in presave hook.');
$this->assertEqual ($node->changed , 979534800, 'Saving a node uses "changed" timestamp set in presave hook.');
// Programmatically set the timestamps on the node.
$edit = array(
'uid' => $this->web_user ->uid,
'type' => 'article',
'title' => $this->randomName (8),
'created' => 280299600,
// 1978年11月19日 05:00:00 GMT
'changed' => 979534800,
);
node_save ((object) $edit);
$node = $this->drupalGetNodeByTitle ($edit['title']);
$this->assertEqual ($node->created, 280299600, 'Creating a node uses user-set "created" timestamp.');
$this->assertNotEqual ($node->changed , 979534800, 'Creating a node doesn\'t use user-set "changed" timestamp.');
// Update the timestamps.
$node->created = 979534800;
$node->changed = 280299600;
node_save ($node);
$node = $this->drupalGetNodeByTitle ($edit['title'], TRUE);
$this->assertEqual ($node->created, 979534800, 'Updating a node uses user-set "created" timestamp.');
$this->assertNotEqual ($node->changed , 280299600, 'Updating a node doesn\'t use user-set "changed" timestamp.');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.