function DevelWebAssertHelper::assertLocalTasks
Same name in other branches
- 4.x tests/src/Functional/DevelWebAssertHelper.php \Drupal\Tests\devel\Functional\DevelWebAssertHelper::assertLocalTasks()
Asserts local tasks in the page output.
Parameters
array $routes: A list of expected local tasks, prepared as an array of route names and their associated route parameters, to assert on the page (in the given order).
int $level: (optional) The local tasks level to assert; 0 for primary, 1 for secondary. Defaults to 0.
1 call to DevelWebAssertHelper::assertLocalTasks()
- DevelContainerInfoTest::assertContainerInfoLocalTasks in tests/
src/ Functional/ DevelContainerInfoTest.php - Asserts that container info local tasks are present.
File
-
tests/
src/ Functional/ DevelWebAssertHelper.php, line 23
Class
- DevelWebAssertHelper
- Provides convenience methods for assertions in browser tests.
Namespace
Drupal\Tests\devel\FunctionalCode
protected function assertLocalTasks(array $routes, $level = 0) {
$tab_label = $level == 0 ? 'Primary tabs' : 'Secondary tabs';
$elements = $this->xpath('//h2[text()="' . $tab_label . '"]/following-sibling::ul//a');
$this->assertNotEmpty($elements, 'Local tasks not found.');
foreach ($routes as $index => $route_info) {
[
$route_name,
$route_parameters,
] = $route_info;
$expected = Url::fromRoute($route_name, $route_parameters)->toString();
$this->assertEquals($expected, $elements[$index]->getAttribute('href'));
}
}