function DbCommandBaseTest::testSpecifyDbUrl
Tests supplying database connection as a url.
File
- 
              core/
modules/ system/ tests/ src/ Kernel/ Scripts/ DbCommandBaseTest.php, line 60  
Class
- DbCommandBaseTest
 - Test that the DbToolsApplication works correctly.
 
Namespace
Drupal\Tests\system\Kernel\ScriptsCode
public function testSpecifyDbUrl() {
  $command = new DbCommandBaseTester();
  $command_tester = new CommandTester($command);
  $command_tester->execute([
    '-db-url' => Database::getConnectionInfoAsUrl(),
  ]);
  $this->assertEquals('db-tools', $command->getDatabaseConnection($command_tester->getInput())
    ->getKey());
  Database::removeConnection('db-tools');
  $command_tester->execute([
    '--database-url' => Database::getConnectionInfoAsUrl(),
  ]);
  $this->assertEquals('db-tools', $command->getDatabaseConnection($command_tester->getInput())
    ->getKey());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.