function MultipleDistributionsProfileTest::testInstalled
Same name in other branches
- 9 core/tests/Drupal/FunctionalTests/Installer/MultipleDistributionsProfileTest.php \Drupal\FunctionalTests\Installer\MultipleDistributionsProfileTest::testInstalled()
- 8.9.x core/tests/Drupal/FunctionalTests/Installer/MultipleDistributionsProfileTest.php \Drupal\FunctionalTests\Installer\MultipleDistributionsProfileTest::testInstalled()
- 11.x core/tests/Drupal/FunctionalTests/Installer/MultipleDistributionsProfileTest.php \Drupal\FunctionalTests\Installer\MultipleDistributionsProfileTest::testInstalled()
Confirms that the installation succeeded.
File
-
core/
tests/ Drupal/ FunctionalTests/ Installer/ MultipleDistributionsProfileTest.php, line 79
Class
- MultipleDistributionsProfileTest
- Tests multiple distribution profile support.
Namespace
Drupal\FunctionalTests\InstallerCode
public function testInstalled() : void {
$this->assertSession()
->addressEquals('user/1');
$this->assertSession()
->statusCodeEquals(200);
// Confirm that we are logged-in after installation.
$this->assertSession()
->pageTextContains($this->rootUser
->getAccountName());
// Confirm that Drupal recognizes this distribution as the current profile.
$this->assertEquals('distribution_one', \Drupal::installProfile());
$this->assertEquals('distribution_one', $this->config('core.extension')
->get('profile'), 'The install profile has been written to core.extension configuration.');
$this->rebuildContainer();
$this->assertEquals('distribution_one', \Drupal::installProfile());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.