LatestRevisionCheckTest.php in Workbench Moderation 8
File
tests/src/Unit/LatestRevisionCheckTest.php
View source
<?php
namespace Drupal\Tests\workbench_moderation\Unit;
use Drupal\block_content\Entity\BlockContent;
use Drupal\Core\Access\AccessResultAllowed;
use Drupal\Core\Access\AccessResultForbidden;
use Drupal\Core\Routing\RouteMatch;
use Drupal\node\Entity\Node;
use Drupal\Tests\UnitTestCase;
use Drupal\workbench_moderation\Access\LatestRevisionCheck;
use Drupal\workbench_moderation\ModerationInformation;
use Symfony\Component\Routing\Route;
class LatestRevisionCheckTest extends UnitTestCase {
public function testLatestAccessPermissions($entity_class, $entity_type, $has_forward, $result_class) {
$entity = $this
->prophesize($entity_class);
$entity
->getCacheContexts()
->willReturn([]);
$entity
->getCacheTags()
->willReturn([]);
$entity
->getCacheMaxAge()
->willReturn(0);
$mod_info = $this
->prophesize(ModerationInformation::class);
$mod_info
->hasForwardRevision($entity
->reveal())
->willReturn($has_forward);
$route = $this
->prophesize(Route::class);
$route
->getOption('_workbench_moderation_entity_type')
->willReturn($entity_type);
$route_match = $this
->prophesize(RouteMatch::class);
$route_match
->getParameter($entity_type)
->willReturn($entity
->reveal());
$lrc = new LatestRevisionCheck($mod_info
->reveal());
$result = $lrc
->access($route
->reveal(), $route_match
->reveal());
$this
->assertInstanceOf($result_class, $result);
}
public function accessSituationProvider() {
return [
[
Node::class,
'node',
TRUE,
AccessResultAllowed::class,
],
[
Node::class,
'node',
FALSE,
AccessResultForbidden::class,
],
[
BlockContent::class,
'block_content',
TRUE,
AccessResultAllowed::class,
],
[
BlockContent::class,
'block_content',
FALSE,
AccessResultForbidden::class,
],
];
}
}