function DisplayPageWebTest::assertPagePath
Same name in other branches
- 9 core/modules/views/tests/src/Functional/Plugin/DisplayPageWebTest.php \Drupal\Tests\views\Functional\Plugin\DisplayPageWebTest::assertPagePath()
- 8.9.x core/modules/views/tests/src/Functional/Plugin/DisplayPageWebTest.php \Drupal\Tests\views\Functional\Plugin\DisplayPageWebTest::assertPagePath()
- 10 core/modules/views/tests/src/Functional/Plugin/DisplayPageWebTest.php \Drupal\Tests\views\Functional\Plugin\DisplayPageWebTest::assertPagePath()
Tests that we can successfully change a view page display path.
@internal
Parameters
string $path: Path that will be set as the view page display path.
1 call to DisplayPageWebTest::assertPagePath()
- DisplayPageWebTest::testPagePaths in core/
modules/ views/ tests/ src/ Functional/ Plugin/ DisplayPageWebTest.php - Tests the views page path functionality.
File
-
core/
modules/ views/ tests/ src/ Functional/ Plugin/ DisplayPageWebTest.php, line 189
Class
- DisplayPageWebTest
- Tests the views page display plugin.
Namespace
Drupal\Tests\views\Functional\PluginCode
public function assertPagePath(string $path) : void {
$view = Views::getView('test_page_display_path');
$view->initDisplay('page_1');
$view->displayHandlers
->get('page_1')
->overrideOption('path', $path);
$view->save();
$this->container
->get('router.builder')
->rebuild();
// Check if we successfully changed the path.
$this->drupalGet($path);
$this->assertSession()
->statusCodeEquals(200);
// Check if we don't get any error on the view edit page.
$this->drupalGet('admin/structure/views/view/test_page_display_path');
$this->assertSession()
->statusCodeEquals(200);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.