You are here

public function ConnectionTest::testPrefixArrayOption in Drupal 9

Same name and namespace in other branches
  1. 10 core/tests/Drupal/KernelTests/Core/Database/ConnectionTest.php \Drupal\KernelTests\Core\Database\ConnectionTest::testPrefixArrayOption()

Tests the prefix connection option in array form.

File

core/tests/Drupal/KernelTests/Core/Database/ConnectionTest.php, line 191

Class

ConnectionTest
Tests of the core database system.

Namespace

Drupal\KernelTests\Core\Database

Code

public function testPrefixArrayOption() {
  $connection_info = Database::getConnectionInfo('default');
  $new_connection_info = $connection_info['default'];
  $new_connection_info['prefix'] = [
    'default' => $connection_info['default']['prefix'],
  ];
  Database::addConnectionInfo('default', 'foo', $new_connection_info);
  $foo_connection = Database::getConnection('foo', 'default');
  $this
    ->assertInstanceOf(Connection::class, $foo_connection);
  $this
    ->assertIsString($foo_connection
    ->getConnectionOptions()['prefix']);
  $this
    ->assertSame($connection_info['default']['prefix'], $foo_connection
    ->getConnectionOptions()['prefix']);
  $this
    ->assertArrayNotHasKey('extra_prefix', $foo_connection
    ->getConnectionOptions());
}