UserSectionStorageUnitTest.php in Workbench Access 8
File
tests/src/Unit/UserSectionStorageUnitTest.php
View source
<?php
namespace Drupal\Tests\workbench_access\Unit;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Entity\Query\QueryAggregateInterface;
use Drupal\Tests\UnitTestCase;
use Drupal\user\UserInterface;
use Drupal\workbench_access\Entity\AccessSchemeInterface;
use Drupal\workbench_access\RoleSectionStorageInterface;
use Drupal\workbench_access\UserSectionStorage;
class UserSectionStorageUnitTest extends UnitTestCase {
public function testGetUserSectionsShouldBeStaticallyCached() {
$user = $this
->prophesize(UserInterface::class);
$testUserId = 37;
$entity_type_manager = $this
->prophesize(EntityTypeManagerInterface::class);
$section_storage = $this
->prophesize(EntityStorageInterface::class);
$query = $this
->prophesize(QueryAggregateInterface::class);
$section_storage
->getAggregateQuery()
->willReturn($query
->reveal());
$query
->condition('access_scheme', 'editorial_section')
->willReturn($query
->reveal());
$query
->condition('user_id', 37)
->willReturn($query
->reveal());
$query
->groupBy('section_id')
->willReturn($query
->reveal());
$query
->execute()
->willReturn([
37 => [
'section_id' => 3,
],
])
->shouldBeCalledTimes(1);
$entity_type_manager
->getStorage('section_association')
->willReturn($section_storage
->reveal());
$scheme = $this
->prophesize(AccessSchemeInterface::class);
$scheme
->id()
->willReturn('editorial_section');
$user
->id()
->willReturn($testUserId);
$role_section_storage = $this
->prophesize(RoleSectionStorageInterface::class);
$role_section_storage
->getRoleSections($scheme
->reveal(), $user
->reveal())
->willReturn([]);
$user_section_storage = new UserSectionStorage($entity_type_manager
->reveal(), $user
->reveal(), $role_section_storage
->reveal());
$first = $user_section_storage
->getUserSections($scheme
->reveal(), $user
->reveal());
$second = $user_section_storage
->getUserSections($scheme
->reveal(), $user
->reveal());
$this
->assertEquals($first, $second);
}
}