You are here

class PermissionAccessCheckTest in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/user/tests/src/Unit/PermissionAccessCheckTest.php \Drupal\Tests\user\Unit\PermissionAccessCheckTest
  2. 10 core/modules/user/tests/src/Unit/PermissionAccessCheckTest.php \Drupal\Tests\user\Unit\PermissionAccessCheckTest

@coversDefaultClass \Drupal\user\Access\PermissionAccessCheck @group Routing @group Access

Hierarchy

Expanded class hierarchy of PermissionAccessCheckTest

File

core/modules/user/tests/src/Unit/PermissionAccessCheckTest.php, line 17

Namespace

Drupal\Tests\user\Unit
View source
class PermissionAccessCheckTest extends UnitTestCase {

  /**
   * The tested access checker.
   *
   * @var \Drupal\user\Access\PermissionAccessCheck
   */
  public $accessCheck;

  /**
   * The dependency injection container.
   *
   * @var \Symfony\Component\DependencyInjection\ContainerBuilder
   */
  protected $container;

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this->container = new ContainerBuilder();
    $cache_contexts_manager = $this
      ->prophesize(CacheContextsManager::class);
    $cache_contexts_manager
      ->assertValidTokens()
      ->willReturn(TRUE);
    $cache_contexts_manager
      ->reveal();
    $this->container
      ->set('cache_contexts_manager', $cache_contexts_manager);
    \Drupal::setContainer($this->container);
    $this->accessCheck = new PermissionAccessCheck();
  }

  /**
   * Provides data for the testAccess method.
   *
   * @return array
   */
  public function providerTestAccess() {
    return [
      [
        [],
        FALSE,
      ],
      [
        [
          '_permission' => 'allowed',
        ],
        TRUE,
        [
          'user.permissions',
        ],
      ],
      [
        [
          '_permission' => 'denied',
        ],
        FALSE,
        [
          'user.permissions',
        ],
        "The 'denied' permission is required.",
      ],
      [
        [
          '_permission' => 'allowed+denied',
        ],
        TRUE,
        [
          'user.permissions',
        ],
      ],
      [
        [
          '_permission' => 'allowed+denied+other',
        ],
        TRUE,
        [
          'user.permissions',
        ],
      ],
      [
        [
          '_permission' => 'allowed,denied',
        ],
        FALSE,
        [
          'user.permissions',
        ],
        "The following permissions are required: 'allowed' AND 'denied'.",
      ],
    ];
  }

  /**
   * Tests the access check method.
   *
   * @dataProvider providerTestAccess
   * @covers ::access
   */
  public function testAccess($requirements, $access, array $contexts = [], $message = '') {
    $access_result = AccessResult::allowedIf($access)
      ->addCacheContexts($contexts);
    if (!empty($message)) {
      $access_result
        ->setReason($message);
    }
    $user = $this
      ->createMock('Drupal\\Core\\Session\\AccountInterface');
    $user
      ->expects($this
      ->any())
      ->method('hasPermission')
      ->will($this
      ->returnValueMap([
      [
        'allowed',
        TRUE,
      ],
      [
        'denied',
        FALSE,
      ],
      [
        'other',
        FALSE,
      ],
    ]));
    $route = new Route('', [], $requirements);
    $this
      ->assertEquals($access_result, $this->accessCheck
      ->access($route, $user));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PermissionAccessCheckTest::$accessCheck public property The tested access checker.
PermissionAccessCheckTest::$container protected property The dependency injection container.
PermissionAccessCheckTest::providerTestAccess public function Provides data for the testAccess method.
PermissionAccessCheckTest::setUp protected function Overrides UnitTestCase::setUp
PermissionAccessCheckTest::testAccess public function Tests the access check method.
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.