You are here

public function UrlConversionTest::testGetInvalidArgumentGetConnectionInfoAsUrl in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Database/UrlConversionTest.php \Drupal\Tests\Core\Database\UrlConversionTest::testGetInvalidArgumentGetConnectionInfoAsUrl()

Test ::getConnectionInfoAsUrl() exception for invalid arguments.

@covers ::getConnectionInfoAsUrl

@dataProvider providerInvalidArgumentGetConnectionInfoAsUrl

Parameters

array $connection_options: The database connection information.

string $expected_exception_message: The expected exception message.

File

core/tests/Drupal/Tests/Core/Database/UrlConversionTest.php, line 371

Class

UrlConversionTest
Tests for database URL to/from database connection array coversions.

Namespace

Drupal\Tests\Core\Database

Code

public function testGetInvalidArgumentGetConnectionInfoAsUrl(array $connection_options, $expected_exception_message) {
  Database::addConnectionInfo('default', 'default', $connection_options);
  $this
    ->expectException(\InvalidArgumentException::class);
  $this
    ->expectExceptionMessage($expected_exception_message);
  $url = Database::getConnectionInfoAsUrl();
}