function EntityUrlTest::testToUrlLinkTemplateNoId

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php \Drupal\Tests\Core\Entity\EntityUrlTest::testToUrlLinkTemplateNoId()
  2. 10 core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php \Drupal\Tests\Core\Entity\EntityUrlTest::testToUrlLinkTemplateNoId()
  3. 11.x core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php \Drupal\Tests\Core\Entity\EntityUrlTest::testToUrlLinkTemplateNoId()

Tests the toUrl() method with link templates without an entity ID.

@dataProvider providerTestToUrlLinkTemplateNoId

@covers ::toUrl @covers ::linkTemplates @covers ::urlRouteParameters

Parameters

string $link_template: The link template to test.

string $expected_route_name: The expected route name of the generated URL.

File

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

Class

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

Namespace

Drupal\Tests\Core\Entity

Code

public function testToUrlLinkTemplateNoId($link_template, $expected_route_name) {
    $entity = $this->getEntity(EntityBase::class, [
        'id' => $this->entityId,
    ]);
    $this->registerLinkTemplate($link_template);
    
    /** @var \Drupal\Core\Url $url */
    $url = $entity->toUrl($link_template);
    $this->assertUrl($expected_route_name, [], $entity, FALSE, $url);
}

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