public function ConnectionTest::testPerTablePrefixOption in Drupal 10
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/Core/Database/ConnectionTest.php \Drupal\KernelTests\Core\Database\ConnectionTest::testPerTablePrefixOption()
Tests per-table prefix connection option.
File
- core/
tests/ Drupal/ KernelTests/ Core/ Database/ ConnectionTest.php, line 123
Class
- ConnectionTest
- Tests of the core database system.
Namespace
Drupal\KernelTests\Core\DatabaseCode
public function testPerTablePrefixOption() {
$connection_info = Database::getConnectionInfo('default');
$new_connection_info = $connection_info['default'];
$new_connection_info['prefix'] = [
'default' => $connection_info['default']['prefix'],
'test_table' => $connection_info['default']['prefix'] . '_bar',
];
Database::addConnectionInfo('default', 'foo', $new_connection_info);
$this
->expectError();
$foo_connection = Database::getConnection('foo', 'default');
}