function TestSiteApplicationTest::addTestDatabase

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php \Drupal\Tests\Scripts\TestSiteApplicationTest::addTestDatabase()
  2. 8.9.x core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php \Drupal\Tests\Scripts\TestSiteApplicationTest::addTestDatabase()
  3. 10 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.

1 call to TestSiteApplicationTest::addTestDatabase()
TestSiteApplicationTest::testInstallScript in core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php
@coversNothing

File

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

Class

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

Namespace

Drupal\Tests\Scripts

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.