function ConfirmFormHelperTest::testCancelLinkRoute

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Form/ConfirmFormHelperTest.php \Drupal\Tests\Core\Form\ConfirmFormHelperTest::testCancelLinkRoute()
  2. 8.9.x core/tests/Drupal/Tests/Core/Form/ConfirmFormHelperTest.php \Drupal\Tests\Core\Form\ConfirmFormHelperTest::testCancelLinkRoute()
  3. 10 core/tests/Drupal/Tests/Core/Form/ConfirmFormHelperTest.php \Drupal\Tests\Core\Form\ConfirmFormHelperTest::testCancelLinkRoute()

Tests a cancel link route.

@covers ::buildCancelLink

File

core/tests/Drupal/Tests/Core/Form/ConfirmFormHelperTest.php, line 41

Class

ConfirmFormHelperTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Form%21ConfirmFormHelper.php/class/ConfirmFormHelper/11.x" title="Provides common functionality to confirmation forms." class="local">\Drupal\Core\Form\ConfirmFormHelper</a> @group Form

Namespace

Drupal\Tests\Core\Form

Code

public function testCancelLinkRoute() : void {
    $route_name = 'foo_bar';
    $cancel_route = new Url($route_name);
    $form = $this->createMock('Drupal\\Core\\Form\\ConfirmFormInterface');
    $form->expects($this->any())
        ->method('getCancelUrl')
        ->willReturn($cancel_route);
    $link = ConfirmFormHelper::buildCancelLink($form, new Request());
    $this->assertEquals(Url::fromRoute($route_name), $link['#url']);
    $this->assertSame([
        'contexts' => [
            'url.query_args:destination',
        ],
    ], $link['#cache']);
}

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