You are here

public function PathValidatorTest::testIsValidWithResourceNotFound in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Path/PathValidatorTest.php \Drupal\Tests\Core\Path\PathValidatorTest::testIsValidWithResourceNotFound()

@covers ::isValid @covers ::getPathAttributes

File

core/tests/Drupal/Tests/Core/Path/PathValidatorTest.php, line 214

Class

PathValidatorTest
@coversDefaultClass \Drupal\Core\Path\PathValidator @group Routing

Namespace

Drupal\Tests\Core\Path

Code

public function testIsValidWithResourceNotFound() {
  $this->account
    ->expects($this
    ->once())
    ->method('hasPermission')
    ->with('link to any page')
    ->willReturn(FALSE);
  $this->accessUnawareRouter
    ->expects($this
    ->never())
    ->method('match');
  $this->accessAwareRouter
    ->expects($this
    ->once())
    ->method('match')
    ->with('/test-path')
    ->willThrowException(new ResourceNotFoundException());
  $this->pathProcessor
    ->expects($this
    ->once())
    ->method('processInbound')
    ->willReturnArgument(0);
  $this
    ->assertFalse($this->pathValidator
    ->isValid('test-path'));
}