MainContentFallbackTest.php in Drupal 8
File
core/modules/system/tests/src/Functional/System/MainContentFallbackTest.php
View source
<?php
namespace Drupal\Tests\system\Functional\System;
use Drupal\Tests\BrowserTestBase;
class MainContentFallbackTest extends BrowserTestBase {
public static $modules = [
'block',
'system_test',
];
protected $defaultTheme = 'stark';
protected $adminUser;
protected $webUser;
protected function setUp() {
parent::setUp();
$this->adminUser = $this
->drupalCreateUser([
'access administration pages',
'administer site configuration',
'administer modules',
]);
$this
->drupalLogin($this->adminUser);
$this->webUser = $this
->drupalCreateUser([
'access user profiles',
]);
}
public function testMainContentFallback() {
$edit = [];
$edit['uninstall[block]'] = 'block';
$this
->drupalPostForm('admin/modules/uninstall', $edit, t('Uninstall'));
$this
->drupalPostForm(NULL, NULL, t('Uninstall'));
$this
->assertText(t('The selected modules have been uninstalled.'), 'Modules status has been updated.');
$this
->rebuildContainer();
$this
->assertFalse(\Drupal::moduleHandler()
->moduleExists('block'), 'Block module uninstall.');
$this
->drupalGet('admin/config/system/site-information');
$this
->assertField('site_name', 'Fallback to SimplePageVariant works for admin theme.');
$this
->drupalGet('system-test/main-content-fallback');
$this
->assertText(t('Content to test main content fallback'), 'Fallback to SimplePageVariant works for front-end theme.');
$this
->drupalLogin($this->webUser);
$this
->drupalGet('user/' . $this->webUser
->id() . '/edit');
$this
->assertField('mail', 'User interface still available.');
$this
->drupalLogin($this->adminUser);
$edit = [];
$edit['modules[block][enable]'] = 'block';
$this
->drupalPostForm('admin/modules', $edit, t('Install'));
$this
->assertText(t('Module Block has been enabled.'), 'Modules status has been updated.');
$this
->rebuildContainer();
$this
->assertTrue(\Drupal::moduleHandler()
->moduleExists('block'), 'Block module re-enabled.');
}
}