function NodeRevisionsTest::testRevisions in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/node/src/Tests/NodeRevisionsTest.php \Drupal\node\Tests\NodeRevisionsTest::testRevisions()
Checks node revision related operations.
File
- core/
modules/ node/ src/ Tests/ NodeRevisionsTest.php, line 131 - Contains \Drupal\node\Tests\NodeRevisionsTest.
Class
- NodeRevisionsTest
- Create a node with revisions and test viewing, saving, reverting, and deleting revisions for users with access for this content type.
Namespace
Drupal\node\TestsCode
function testRevisions() {
$node_storage = $this->container
->get('entity.manager')
->getStorage('node');
$nodes = $this->nodes;
$logs = $this->revisionLogs;
// Get last node for simple checks.
$node = $nodes[3];
// Confirm the correct revision text appears on "view revisions" page.
$this
->drupalGet("node/" . $node
->id() . "/revisions/" . $node
->getRevisionId() . "/view");
$this
->assertText($node->body->value, 'Correct text displays for version.');
// Confirm the correct log message appears on "revisions overview" page.
$this
->drupalGet("node/" . $node
->id() . "/revisions");
foreach ($logs as $revision_log) {
$this
->assertText($revision_log, 'Revision log message found.');
}
// Original author, and editor names should appear on revisions overview.
$web_user = $nodes[0]->revision_uid->entity;
$this
->assertText(t('by @name', [
'@name' => $web_user
->getAccountName(),
]));
$editor = $nodes[2]->revision_uid->entity;
$this
->assertText(t('by @name', [
'@name' => $editor
->getAccountName(),
]));
// Confirm that this is the default revision.
$this
->assertTrue($node
->isDefaultRevision(), 'Third node revision is the default one.');
// Confirm that revisions revert properly.
$this
->drupalPostForm("node/" . $node
->id() . "/revisions/" . $nodes[1]
->getRevisionid() . "/revert", array(), t('Revert'));
$this
->assertRaw(t('@type %title has been reverted to the revision from %revision-date.', array(
'@type' => 'Basic page',
'%title' => $nodes[1]
->label(),
'%revision-date' => format_date($nodes[1]
->getRevisionCreationTime()),
)), 'Revision reverted.');
$node_storage
->resetCache(array(
$node
->id(),
));
$reverted_node = $node_storage
->load($node
->id());
$this
->assertTrue($nodes[1]->body->value == $reverted_node->body->value, 'Node reverted correctly.');
// Confirm that this is not the default version.
$node = node_revision_load($node
->getRevisionId());
$this
->assertFalse($node
->isDefaultRevision(), 'Third node revision is not the default one.');
// Confirm revisions delete properly.
$this
->drupalPostForm("node/" . $node
->id() . "/revisions/" . $nodes[1]
->getRevisionId() . "/delete", array(), t('Delete'));
$this
->assertRaw(t('Revision from %revision-date of @type %title has been deleted.', array(
'%revision-date' => format_date($nodes[1]
->getRevisionCreationTime()),
'@type' => 'Basic page',
'%title' => $nodes[1]
->label(),
)), 'Revision deleted.');
$this
->assertTrue(db_query('SELECT COUNT(vid) FROM {node_revision} WHERE nid = :nid and vid = :vid', array(
':nid' => $node
->id(),
':vid' => $nodes[1]
->getRevisionId(),
))
->fetchField() == 0, 'Revision not found.');
// Set the revision timestamp to an older date to make sure that the
// confirmation message correctly displays the stored revision date.
$old_revision_date = REQUEST_TIME - 86400;
db_update('node_revision')
->condition('vid', $nodes[2]
->getRevisionId())
->fields(array(
'revision_timestamp' => $old_revision_date,
))
->execute();
$this
->drupalPostForm("node/" . $node
->id() . "/revisions/" . $nodes[2]
->getRevisionId() . "/revert", array(), t('Revert'));
$this
->assertRaw(t('@type %title has been reverted to the revision from %revision-date.', array(
'@type' => 'Basic page',
'%title' => $nodes[2]
->label(),
'%revision-date' => format_date($old_revision_date),
)));
// Make a new revision and set it to not be default.
// This will create a new revision that is not "front facing".
$new_node_revision = clone $node;
$new_body = $this
->randomMachineName();
$new_node_revision->body->value = $new_body;
// Save this as a non-default revision.
$new_node_revision
->setNewRevision();
$new_node_revision->isDefaultRevision = FALSE;
$new_node_revision
->save();
$this
->drupalGet('node/' . $node
->id());
$this
->assertNoText($new_body, 'Revision body text is not present on default version of node.');
// Verify that the new body text is present on the revision.
$this
->drupalGet("node/" . $node
->id() . "/revisions/" . $new_node_revision
->getRevisionId() . "/view");
$this
->assertText($new_body, 'Revision body text is present when loading specific revision.');
// Verify that the non-default revision vid is greater than the default
// revision vid.
$default_revision = db_select('node', 'n')
->fields('n', array(
'vid',
))
->condition('nid', $node
->id())
->execute()
->fetchCol();
$default_revision_vid = $default_revision[0];
$this
->assertTrue($new_node_revision
->getRevisionId() > $default_revision_vid, 'Revision vid is greater than default revision vid.');
}