function LinkFormatterTest::testFormatterLinkItemUrlMalformed
Tests when LinkItem::getUrl with malformed URL renders empty link.
LinkItem::getUrl will throw \InvalidArgumentException.
File
- 
              core/modules/ link/ tests/ src/ Unit/ LinkFormatterTest.php, line 29 
Class
- LinkFormatterTest
- Tests the Field Formatter for the link field type.
Namespace
Drupal\Tests\link\UnitCode
public function testFormatterLinkItemUrlMalformed() {
  $entity = $this->createMock(EntityInterface::class);
  $linkItem = $this->createMock(LinkItemInterface::class);
  $exception = new \InvalidArgumentException();
  $linkItem->expects($this->any())
    ->method('getParent')
    ->willReturn($entity);
  $linkItem->expects($this->once())
    ->method('getUrl')
    ->willThrowException($exception);
  $linkItem->expects($this->any())
    ->method('__get')
    ->with('options')
    ->willReturn([]);
  $fieldDefinition = $this->createMock(FieldDefinitionInterface::class);
  $fieldList = new FieldItemList($fieldDefinition, '', $linkItem);
  $fieldTypePluginManager = $this->createMock(FieldTypePluginManagerInterface::class);
  $fieldTypePluginManager->expects($this->once())
    ->method('createFieldItem')
    ->will($this->returnValue($linkItem));
  $urlGenerator = $this->createMock(UrlGenerator::class);
  $urlGenerator->expects($this->once())
    ->method('generateFromRoute')
    ->with('<none>', [], [], FALSE)
    ->willReturn('http://example.com');
  $container = new ContainerBuilder();
  $container->set('plugin.manager.field.field_type', $fieldTypePluginManager);
  $container->set('url_generator', $urlGenerator);
  \Drupal::setContainer($container);
  $fieldList->setValue([
    $linkItem,
  ]);
  $pathValidator = $this->createMock(PathValidatorInterface::class);
  $linkFormatter = new LinkFormatter('', [], $fieldDefinition, [], '', '', [], $pathValidator);
  $elements = $linkFormatter->viewElements($fieldList, 'es');
  $this->assertEquals('link', $elements[0]['#type']);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
