function RevisionRevertFormTest::testAccessRevertLatestDefault
Same name in other branches
- 11.x core/tests/Drupal/FunctionalTests/Entity/RevisionRevertFormTest.php \Drupal\FunctionalTests\Entity\RevisionRevertFormTest::testAccessRevertLatestDefault()
Test cannot revert latest default revision.
@covers \Drupal\Core\Entity\EntityAccessControlHandler::checkAccess
1 call to RevisionRevertFormTest::testAccessRevertLatestDefault()
- RevisionRevertFormTest::testFormRevisionRevert in core/
tests/ Drupal/ FunctionalTests/ Entity/ RevisionRevertFormTest.php - Test form revision revert.
File
-
core/
tests/ Drupal/ FunctionalTests/ Entity/ RevisionRevertFormTest.php, line 113
Class
- RevisionRevertFormTest
- Tests reverting a revision with revision revert form.
Namespace
Drupal\FunctionalTests\EntityCode
protected function testAccessRevertLatestDefault() : void {
/** @var \Drupal\entity_test\Entity\EntityTestRev $entity */
$entity = EntityTestRev::create();
$entity->setName('revert');
$entity->save();
$entity->setNewRevision();
$entity->save();
$this->drupalGet($entity->toUrl('revision-revert-form'));
$this->assertSession()
->statusCodeEquals(403);
$this->assertFalse($entity->access('revert', $this->rootUser, FALSE));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.