public function BlazyViewsFileTest::testBlazyViewsForm in Blazy 8
Same name and namespace in other branches
- 8.2 tests/src/Kernel/Views/BlazyViewsFileTest.php \Drupal\Tests\blazy\Kernel\Views\BlazyViewsFileTest::testBlazyViewsForm()
Make sure that the HTML list style markup is correct.
File
- tests/
src/ Kernel/ Views/ BlazyViewsFileTest.php, line 210
Class
- BlazyViewsFileTest
- Test Blazy Views integration.
Namespace
Drupal\Tests\blazy\Kernel\ViewsCode
public function testBlazyViewsForm() {
$view = Views::getView('test_blazy_entity_2');
$this
->executeView($view);
$view
->setDisplay('default');
$style_plugin = $view->style_plugin;
$style_plugin->options['grid'] = 0;
$form = [];
$form_state = new FormState();
$style_plugin
->buildOptionsForm($form, $form_state);
$this
->assertArrayHasKey('closing', $form);
$style_plugin
->submitOptionsForm($form, $form_state);
// Render.
$render = $view
->getStyle()
->render();
$this
->assertArrayHasKey('data-blazy', $render['#attributes']);
$output = $view
->preview();
$output = $this->blazyManager
->getRenderer()
->renderRoot($output);
$this
->assertTrue(strpos($output, 'data-blazy') !== FALSE, 'Blazy attribute is added to DIV.');
$view
->destroy();
}