You are here

public function RestrictIpServiceTest::testUserHasRoleBypassPermission in Restrict IP 8.2

Same name and namespace in other branches
  1. 8 tests/src/Unit/Service/RestrictIpServiceTest.php \Drupal\Tests\restrict_ip\Unit\Service\RestrictIpServiceTest::testUserHasRoleBypassPermission()
  2. 3.x tests/src/Unit/Service/RestrictIpServiceTest.php \Drupal\Tests\restrict_ip\Unit\Service\RestrictIpServiceTest::testUserHasRoleBypassPermission()

* @covers ::userIsBlocked

File

tests/src/Unit/Service/RestrictIpServiceTest.php, line 63

Class

RestrictIpServiceTest
@coversDefaultClass \Drupal\restrict_ip\Service\RestrictIpService @group restrict_ip

Namespace

Drupal\Tests\restrict_ip\Unit\Service

Code

public function testUserHasRoleBypassPermission() {
  $this->currentUser
    ->expects($this
    ->at(0))
    ->method('hasPermission')
    ->with('bypass ip restriction')
    ->willReturn(TRUE);
  $this->currentPathStack
    ->expects($this
    ->at(0))
    ->method('getPath')
    ->willReturn('/restricted/path');
  $this->request
    ->expects($this
    ->at(0))
    ->method('getClientIp')
    ->willReturn('::1');
  $this->requestStack
    ->expects($this
    ->at(0))
    ->method('getCurrentRequest')
    ->willReturn($this->request);
  $configFactory = $this
    ->getConfigFactory([
    'allow_role_bypass' => TRUE,
  ]);
  $restrictIpService = new RestrictIpService($this->currentUser, $this->currentPathStack, $configFactory, $this->requestStack, $this->mapper, $this->pathMatcher);
  $user_is_blocked = $restrictIpService
    ->userIsBlocked();
  $this
    ->assertFalse($user_is_blocked, 'User is not blocked when they have the permission bypass access restriction');
}