
| Current Path : /var/www/html1/bbp/web/core/modules/system/tests/src/Functional/System/ |
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/html1/bbp/web/core/modules/system/tests/src/Functional/System/MainContentFallbackTest.php |
<?php
namespace Drupal\Tests\system\Functional\System;
use Drupal\Tests\BrowserTestBase;
/**
* Test SimplePageVariant main content rendering fallback page display variant.
*
* @group system
*/
class MainContentFallbackTest extends BrowserTestBase {
/**
* Modules to enable.
*
* @var array
*/
protected static $modules = ['block', 'system_test'];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
protected $adminUser;
protected $webUser;
protected function setUp(): void {
parent::setUp();
// Create and log in admin user.
$this->adminUser = $this->drupalCreateUser([
'access administration pages',
'administer site configuration',
'administer modules',
]);
$this->drupalLogin($this->adminUser);
// Create a web user.
$this->webUser = $this->drupalCreateUser(['access user profiles']);
}
/**
* Test availability of main content: Drupal falls back to SimplePageVariant.
*/
public function testMainContentFallback() {
$edit = [];
// Uninstall the block module.
$edit['uninstall[block]'] = 'block';
$this->drupalPostForm('admin/modules/uninstall', $edit, 'Uninstall');
$this->submitForm([], 'Uninstall');
$this->assertText('The selected modules have been uninstalled.', 'Modules status has been updated.');
$this->rebuildContainer();
$this->assertFalse(\Drupal::moduleHandler()->moduleExists('block'), 'Block module uninstall.');
// When Block module is not installed and BlockPageVariant is not available,
// Drupal should fall back to SimplePageVariant. Both for the admin and the
// front-end theme.
$this->drupalGet('admin/config/system/site-information');
$this->assertSession()->fieldExists('site_name');
$this->drupalGet('system-test/main-content-fallback');
$this->assertText('Content to test main content fallback', 'Fallback to SimplePageVariant works for front-end theme.');
// Request a user* page and see if it is displayed.
$this->drupalLogin($this->webUser);
$this->drupalGet('user/' . $this->webUser->id() . '/edit');
$this->assertSession()->fieldExists('mail');
// Enable the block module again.
$this->drupalLogin($this->adminUser);
$edit = [];
$edit['modules[block][enable]'] = 'block';
$this->drupalPostForm('admin/modules', $edit, 'Install');
$this->assertText('Module Block has been enabled.', 'Modules status has been updated.');
$this->rebuildContainer();
$this->assertTrue(\Drupal::moduleHandler()->moduleExists('block'), 'Block module re-enabled.');
}
}