function RedirectTest::testRedirect
Same name in this branch
- 11.x core/modules/system/tests/src/Functional/Form/RedirectTest.php \Drupal\Tests\system\Functional\Form\RedirectTest::testRedirect()
Same name in other branches
- 9 core/modules/system/tests/src/Functional/Form/RedirectTest.php \Drupal\Tests\system\Functional\Form\RedirectTest::testRedirect()
- 9 core/modules/views_ui/tests/src/Functional/RedirectTest.php \Drupal\Tests\views_ui\Functional\RedirectTest::testRedirect()
- 8.9.x core/modules/system/tests/src/Functional/Form/RedirectTest.php \Drupal\Tests\system\Functional\Form\RedirectTest::testRedirect()
- 8.9.x core/modules/views_ui/tests/src/Functional/RedirectTest.php \Drupal\Tests\views_ui\Functional\RedirectTest::testRedirect()
- 10 core/modules/system/tests/src/Functional/Form/RedirectTest.php \Drupal\Tests\system\Functional\Form\RedirectTest::testRedirect()
- 10 core/modules/views_ui/tests/src/Functional/RedirectTest.php \Drupal\Tests\views_ui\Functional\RedirectTest::testRedirect()
Tests the redirecting.
File
-
core/
modules/ views_ui/ tests/ src/ Functional/ RedirectTest.php, line 29
Class
- RedirectTest
- Tests the redirecting after saving a views.
Namespace
Drupal\Tests\views_ui\FunctionalCode
public function testRedirect() : void {
$view_name = 'test_view';
$random_destination = $this->randomMachineName();
$edit_path = "admin/structure/views/view/{$view_name}/edit";
// Verify that the user gets redirected to the expected page defined in the
// destination.
$this->drupalGet($edit_path, [
'query' => [
'destination' => $random_destination,
],
]);
$this->submitForm([], 'Save');
$this->assertSession()
->addressEquals($random_destination);
// Setup a view with a certain page display path. If you change the path
// but have the old URL in the destination the user should be redirected to
// the new path.
$view_name = 'test_redirect_view';
$new_path = $this->randomMachineName();
$edit_path = "admin/structure/views/view/{$view_name}/edit";
$path_edit_path = "admin/structure/views/nojs/display/{$view_name}/page_1/path";
$this->drupalGet($path_edit_path);
$this->submitForm([
'path' => $new_path,
], 'Apply');
$this->drupalGet($edit_path, [
'query' => [
'destination' => 'test-redirect-view',
],
]);
$this->submitForm([], 'Save');
// Verify that the user gets redirected to the expected page after changing
// the URL of a page display.
$this->assertSession()
->addressEquals($new_path);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.