summaryrefslogtreecommitdiff
path: root/modules/node/node.test
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-25 02:48:16 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-25 02:48:16 +0000
commit61035e444631b3f7573ffe2207c3f1d1e4268fbb (patch)
treec9f8c11c9f9036bc0e6de85fa87d61b51d90b682 /modules/node/node.test
parent4d85fb1f565fd783e9fa6f6e77d4b24503cd449e (diff)
downloadbrdo-61035e444631b3f7573ffe2207c3f1d1e4268fbb.tar.gz
brdo-61035e444631b3f7573ffe2207c3f1d1e4268fbb.tar.bz2
#492186 by catch, mfb, BTMash, TheRec, and rainbreaw: Fixed bug causing authoring information to never be updated (with tests).
Diffstat (limited to 'modules/node/node.test')
-rw-r--r--modules/node/node.test23
1 files changed, 23 insertions, 0 deletions
diff --git a/modules/node/node.test b/modules/node/node.test
index a4b30a3b6..389494b57 100644
--- a/modules/node/node.test
+++ b/modules/node/node.test
@@ -219,6 +219,29 @@ class PageEditTestCase extends DrupalWebTestCase {
// Check that the title and body fields are displayed with the updated values.
$this->assertText($edit['title'], t('Title displayed.'));
$this->assertText($edit[$body_key], t('Body displayed.'));
+
+ // Login as a second administrator user.
+ $second_web_user = $this->drupalCreateUser(array('administer nodes', 'edit any page content'));
+ $this->drupalLogin($second_web_user);
+ // Edit the same node, creating a new revision.
+ $this->drupalGet("node/$node->nid/edit");
+ $edit = array();
+ $edit['title'] = $this->randomName(8);
+ $edit[$body_key] = $this->randomName(16);
+ $edit['revision'] = TRUE;
+ $this->drupalPost(NULL, $edit, t('Save'));
+
+ // Ensure that the node revision has been created.
+ $revised_node = $this->drupalGetNodeByTitle($edit['title']);
+ $this->assertNotIdentical($node->vid, $revised_node->vid, 'A new revision has been created.');
+ // Ensure that the node author is preserved when it was not changed in the
+ // edit form.
+ $this->assertIdentical($node->uid, $revised_node->uid, 'The node author has been preserved.');
+ // Ensure that the revision authors are different since the revisions were
+ // made by different users.
+ $first_node_version = node_load($node->nid, $node->vid);
+ $second_node_version = node_load($node->nid, $revised_node->vid);
+ $this->assertNotIdentical($first_node_version->revision_uid, $second_node_version->revision_uid, 'Each revision has a distinct user.');
}
}