public function ViewElementTest::testViewElement in Drupal 10
Same name in this branch
- 10 core/modules/views/tests/src/Functional/ViewElementTest.php \Drupal\Tests\views\Functional\ViewElementTest::testViewElement()
- 10 core/modules/views/tests/src/Kernel/ViewElementTest.php \Drupal\Tests\views\Kernel\ViewElementTest::testViewElement()
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Kernel/ViewElementTest.php \Drupal\Tests\views\Kernel\ViewElementTest::testViewElement()
- 9 core/modules/views/tests/src/Kernel/ViewElementTest.php \Drupal\Tests\views\Kernel\ViewElementTest::testViewElement()
Tests the rendered output and form output of a view element.
File
- core/
modules/ views/ tests/ src/ Kernel/ ViewElementTest.php, line 25
Class
- ViewElementTest
- Tests the view render element.
Namespace
Drupal\Tests\views\KernelCode
public function testViewElement() {
/** @var \Drupal\Core\Render\RendererInterface $renderer */
$renderer = $this->container
->get('renderer');
$view = Views::getView('test_view_embed');
// Get the render array, #embed must be FALSE since this is the default
// display.
$render = $view
->buildRenderable();
$this
->assertFalse($render['#embed']);
$this
->setRawContent($renderer
->renderRoot($render));
$xpath = $this
->xpath('//div[@class="views-element-container"]');
$this
->assertNotEmpty($xpath, 'The view container has been found in the rendered output.');
// There should be 5 rows in the results.
$xpath = $this
->xpath('//div[@class="views-row"]');
$this
->assertCount(5, $xpath);
// Add an argument and save the view.
$view->displayHandlers
->get('default')
->overrideOption('arguments', [
'age' => [
'default_action' => 'ignore',
'title' => '',
'default_argument_type' => 'fixed',
'validate' => [
'type' => 'none',
'fail' => 'not found',
],
'break_phrase' => FALSE,
'not' => FALSE,
'id' => 'age',
'table' => 'views_test_data',
'field' => 'age',
'plugin_id' => 'numeric',
],
]);
$view
->save();
// Test the render array again.
$view = Views::getView('test_view_embed');
$render = $view
->buildRenderable(NULL, [
25,
]);
$this
->setRawContent($renderer
->renderRoot($render));
// There should be 1 row in the results, 'John' arg 25.
$xpath = $this
->xpath('//div[@class="views-row"]');
$this
->assertCount(1, $xpath);
}