function LinkNotExistingInternalConstraintValidatorTest::testValidateFromRoute

Same name and namespace in other branches
  1. 11.x core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidatorTest.php \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkNotExistingInternalConstraintValidatorTest::testValidateFromRoute()

@covers ::validate

File

core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidatorTest.php, line 44

Class

LinkNotExistingInternalConstraintValidatorTest
@coversDefaultClass \Drupal\link\Plugin\Validation\Constraint\LinkNotExistingInternalConstraintValidator[[api-linebreak]] @group Link

Namespace

Drupal\Tests\link\Unit\Plugin\Validation\Constraint

Code

public function testValidateFromRoute() : void {
  $url = Url::fromRoute('example.existing_route');
  $urlGenerator = $this->createMock(UrlGeneratorInterface::class);
  $urlGenerator->expects($this->any())
    ->method('generateFromRoute')
    ->with('example.existing_route', [], [])
    ->willReturn('/example/existing');
  $url->setUrlGenerator($urlGenerator);
  $link = $this->createMock(LinkItemInterface::class);
  $link->expects($this->any())
    ->method('getUrl')
    ->willReturn($url);
  $context = $this->createMock(ExecutionContextInterface::class);
  $context->expects($this->never())
    ->method('addViolation');
  $this->validate($link, $context);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.