You are here

public function BlazyViewsGridTest::testBlazyViews in Blazy 8

Make sure that the HTML list style markup is correct.

File

tests/src/Kernel/Views/BlazyViewsGridTest.php, line 40

Class

BlazyViewsGridTest
Test Blazy Views Grid integration.

Namespace

Drupal\Tests\blazy\Kernel\Views

Code

public function testBlazyViews() {
  $view = Views::getView('test_blazy_file');
  $this
    ->executeView($view);
  $view
    ->setDisplay('default');
  $style_plugin = $view->style_plugin;
  $style_plugin->options['grid'] = 4;
  $style_plugin->options['grid_medium'] = 3;
  $style_plugin->options['grid_small'] = 1;
  $this
    ->assertInstanceOf('\\Drupal\\blazy\\BlazyManagerInterface', $style_plugin
    ->blazyManager(), 'BlazyManager implements interface.');
  $this
    ->assertInstanceOf('\\Drupal\\blazy\\Form\\BlazyAdminInterface', $style_plugin
    ->admin(), 'BlazyAdmin implements interface.');
  $form = [];
  $form_state = new FormState();
  $style_plugin
    ->buildOptionsForm($form, $form_state);
  $this
    ->assertArrayHasKey('closing', $form);
  $style_plugin
    ->submitOptionsForm($form, $form_state);
  $view
    ->destroy();

  // @todo: Fields.
  $view = Views::getView('test_blazy_file');
  $this
    ->executeView($view);
  $view
    ->setDisplay('default');

  // @todo 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();
}