ViewsThemeIntegrationTest.php

Same filename and directory in other branches
  1. 9 core/modules/views/tests/src/Functional/ViewsThemeIntegrationTest.php
  2. 8.9.x core/modules/views/tests/src/Functional/ViewsThemeIntegrationTest.php
  3. 10 core/modules/views/tests/src/Functional/ViewsThemeIntegrationTest.php

Namespace

Drupal\Tests\views\Functional

File

core/modules/views/tests/src/Functional/ViewsThemeIntegrationTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\views\Functional;


/**
 * Tests the Views theme integration.
 *
 * We test against test_base_theme and test_subtheme provided by theme_test
 *
 * @group views
 */
class ViewsThemeIntegrationTest extends ViewTestBase {
  
  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = [
    'test_page_display',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * {@inheritdoc}
   *
   * We need theme_test for testing against test_base_theme and test_subtheme.
   *
   * @var array
   *
   * {@inheritdoc}
   */
  protected static $modules = [
    'views',
    'theme_test',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp($import_test_views = TRUE, $modules = [
    'views_test_config',
  ]) : void {
    parent::setUp($import_test_views, $modules);
    $this->enableViewsTestModule();
  }
  
  /**
   * Tests pre_render and post_render hooks in a theme and sub-theme.
   */
  public function testThemedViewPage() : void {
    \Drupal::service('theme_installer')->install([
      'test_base_theme',
      'test_subtheme',
    ]);
    // Make base theme default then test for hook invocations.
    $this->config('system.theme')
      ->set('default', 'test_base_theme')
      ->save();
    $this->assertEquals('test_base_theme', $this->config('system.theme')
      ->get('default'));
    // Make sure a views rendered page is touched.
    $this->drupalGet('test_page_display_200');
    $this->assertSession()
      ->responseContains("test_base_theme_views_pre_render");
    $this->assertSession()
      ->responseContains("test_base_theme_views_post_render");
    // Make sub theme default to test for hook invocation
    // from both sub and base theme.
    $this->config('system.theme')
      ->set('default', 'test_subtheme')
      ->save();
    $this->assertEquals('test_subtheme', $this->config('system.theme')
      ->get('default'));
    // Make sure a views rendered page is touched.
    $this->drupalGet('test_page_display_200');
    $this->assertSession()
      ->responseContains("test_subtheme_views_pre_render");
    $this->assertSession()
      ->responseContains("test_subtheme_views_post_render");
    $this->assertSession()
      ->responseContains("test_base_theme_views_pre_render");
    $this->assertSession()
      ->responseContains("test_base_theme_views_post_render");
    // Verify that the views group title is added.
    $this->assertSession()
      ->responseContains('<em class="placeholder">' . count($this->dataSet()) . '</em> items found.');
  }

}

Classes

Title Deprecated Summary
ViewsThemeIntegrationTest Tests the Views theme integration.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.