public function ViewExecutableTest::testGetUrlWithPlaceholdersAndArgs in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Unit/ViewExecutableTest.php \Drupal\Tests\views\Unit\ViewExecutableTest::testGetUrlWithPlaceholdersAndArgs()
@covers ::getUrl
File
- core/
modules/ views/ tests/ src/ Unit/ ViewExecutableTest.php, line 211
Class
- ViewExecutableTest
- @coversDefaultClass \Drupal\views\ViewExecutable @group views
Namespace
Drupal\Tests\views\UnitCode
public function testGetUrlWithPlaceholdersAndArgs() {
$this->displayHandler
->expects($this
->any())
->method('getRoutedDisplay')
->willReturn($this->displayHandler);
$this->displayHandlers
->expects($this
->any())
->method('get')
->willReturn($this->displayHandler);
$this->displayHandler
->expects($this
->any())
->method('getUrlInfo')
->willReturn(Url::fromRoute('views.test.page_1'));
$this->displayHandler
->expects($this
->any())
->method('getPath')
->willReturn('test-path/%');
$route = new Route('/test-path/{arg_0}');
$this->routeProvider
->expects($this
->any())
->method('getRouteByName')
->with('views.test.page_1')
->willReturn($route);
$this
->assertEquals(Url::fromRoute('views.test.page_1', [
'arg_0' => 'test',
]), $this->executable
->getUrl([
'test',
]));
}