function EntityUrlTest::testToUrlDefaultException

Same name and namespace in other branches
  1. 10 core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php \Drupal\Tests\Core\Entity\EntityUrlTest::testToUrlDefaultException()

Tests the toUrl() method without specifying the $rel parameter.

It should throw an exception when neither canonical and edit-form link templates exist if no parameters are passed in.

@covers ::toUrl

File

core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php, line 114

Class

EntityUrlTest
Tests URL handling of the <a href="/api/drupal/core%21lib%21Drupal%21Core%21Entity%21EntityBase.php/class/EntityBase/11.x" title="Defines a base entity class." class="local">\Drupal\Core\Entity\EntityBase</a> class.

Namespace

Drupal\Tests\Core\Entity

Code

public function testToUrlDefaultException() : void {
    $values = [
        'id' => static::ENTITY_ID,
    ];
    $entity = $this->getEntity(UrlTestEntity::class, $values);
    $this->entityType
        ->getUriCallback()
        ->willReturn(NULL);
    $this->expectException(UndefinedLinkTemplateException::class);
    $this->expectExceptionMessage("Cannot generate default URL because no link template 'canonical' or 'edit-form' was found for the '" . static::ENTITY_TYPE_ID . "' entity type");
    $entity->toUrl();
}

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