You are here

protected function TestSiteApplicationTest::addTestDatabase in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php \Drupal\Tests\Scripts\TestSiteApplicationTest::addTestDatabase()
  2. 9 core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php \Drupal\Tests\Scripts\TestSiteApplicationTest::addTestDatabase()

Adds the installed test site to the database connection info.

Parameters

string $db_prefix: The prefix of the installed test site.

Return value

string The database key of the added connection.

5 calls to TestSiteApplicationTest::addTestDatabase()
TestSiteApplicationTest::testInstallInDifferentLanguage in core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php
@coversNothing
TestSiteApplicationTest::testInstallScript in core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php
@coversNothing
TestSiteApplicationTest::testInstallWithFileWithNoClass in core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php
@coversNothing
TestSiteApplicationTest::testInstallWithNonExistingFile in core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php
@coversNothing
TestSiteApplicationTest::testInstallWithNonSetupClass in core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php
@coversNothing

File

core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php, line 319

Class

TestSiteApplicationTest
Tests core/scripts/test-site.php.

Namespace

Drupal\Tests\Scripts

Code

protected function addTestDatabase($db_prefix) {
  $database = Database::convertDbUrlToConnectionInfo(getenv('SIMPLETEST_DB'), $this->root);
  $database['prefix'] = $db_prefix;
  $target = __CLASS__ . $db_prefix;
  Database::addConnectionInfo($target, 'default', $database);
  return $target;
}