public function ConfirmFormTest::testConfirmFormWithExternalDestination in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/tests/src/Functional/Form/ConfirmFormTest.php \Drupal\Tests\system\Functional\Form\ConfirmFormTest::testConfirmFormWithExternalDestination()
Tests that the confirm form does not use external destinations.
File
- core/
modules/ system/ tests/ src/ Functional/ Form/ ConfirmFormTest.php, line 58
Class
- ConfirmFormTest
- Tests confirmation forms.
Namespace
Drupal\Tests\system\Functional\FormCode
public function testConfirmFormWithExternalDestination() {
$this
->drupalGet('form-test/confirm-form');
$this
->assertCancelLinkUrl(Url::fromRoute('form_test.route8'));
$this
->drupalGet('form-test/confirm-form', [
'query' => [
'destination' => 'node',
],
]);
$this
->assertCancelLinkUrl(Url::fromUri('internal:/node'));
$this
->drupalGet('form-test/confirm-form', [
'query' => [
'destination' => 'http://example.com',
],
]);
$this
->assertCancelLinkUrl(Url::fromRoute('form_test.route8'));
$this
->drupalGet('form-test/confirm-form', [
'query' => [
'destination' => '<front>',
],
]);
$this
->assertCancelLinkUrl(Url::fromRoute('<front>'));
// Other invalid destinations, should fall back to the form default.
$this
->drupalGet('form-test/confirm-form', [
'query' => [
'destination' => '/http://example.com',
],
]);
$this
->assertCancelLinkUrl(Url::fromRoute('form_test.route8'));
}