
| Current Path : /var/www/html/rocksensor/web/core/modules/system/tests/src/Functional/Render/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor/web/core/modules/system/tests/src/Functional/Render/DisplayVariantTest.php |
<?php
declare(strict_types=1);
namespace Drupal\Tests\system\Functional\Render;
use Drupal\Tests\BrowserTestBase;
/**
* Tests selecting a display variant.
*
* @group Render
*/
class DisplayVariantTest extends BrowserTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['display_variant_test'];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Tests selecting the variant and passing configuration.
*/
public function testPageDisplayVariantSelectionEvent(): void {
// Tests that our display variant was selected, and that its configuration
// was passed correctly. If the configuration wasn't passed, we'd get an
// error page here.
$this->drupalGet('<front>');
$this->assertSession()->pageTextContains('A very important, required value.');
$this->assertSession()->pageTextContains('Explicitly passed in context.');
$this->assertSession()->responseHeaderContains('X-Drupal-Cache-Tags', 'custom_cache_tag');
}
}