function SqlQueryTest::testGetConnection
Same name in other branches
- 9 core/modules/views/tests/src/Kernel/Plugin/SqlQueryTest.php \Drupal\Tests\views\Kernel\Plugin\SqlQueryTest::testGetConnection()
- 11.x core/modules/views/tests/src/Kernel/Plugin/SqlQueryTest.php \Drupal\Tests\views\Kernel\Plugin\SqlQueryTest::testGetConnection()
Tests the method \Drupal\views\Plugin\views\query\Sql::getConnection().
@covers \Drupal\views\Plugin\views\query\Sql::getConnection
This needs to be a kernel test because the tested method uses the method \Drupal\Core\Database\Database::getConnection() which is a 'final' method and therefore cannot be mocked.
File
-
core/
modules/ views/ tests/ src/ Kernel/ Plugin/ SqlQueryTest.php, line 94
Class
- SqlQueryTest
- Tests the sql query plugin.
Namespace
Drupal\Tests\views\Kernel\PluginCode
public function testGetConnection() : void {
$view = Views::getView('test_view');
$view->setDisplay();
// Add 3 database connections for the different options that the method
// getConnection() supports.
$connection_info = Database::getConnectionInfo('default');
Database::addConnectionInfo('default', 'replica', $connection_info['default']);
Database::addConnectionInfo('core_fake', 'default', $connection_info['default']);
Database::addConnectionInfo('core_fake', 'replica', $connection_info['default']);
// Test the database connection with no special options set.
$this->assertSame('default', $view->getQuery()
->getConnection()
->getKey());
$this->assertSame('default', $view->getQuery()
->getConnection()
->getTarget());
// Test the database connection with the option 'replica' set to TRUE;
$view->getQuery()->options['replica'] = TRUE;
$this->assertSame('default', $view->getQuery()
->getConnection()
->getKey());
$this->assertSame('replica', $view->getQuery()
->getConnection()
->getTarget());
// Test the database connection with the view 'base_database' set.
$view->getQuery()->options['replica'] = FALSE;
$view->base_database = 'core_fake';
$this->assertSame('core_fake', $view->getQuery()
->getConnection()
->getKey());
$this->assertSame('default', $view->getQuery()
->getConnection()
->getTarget());
// Test the database connection with the view 'base_database' set and the
// option 'replica' set to TRUE.
$view->getQuery()->options['replica'] = TRUE;
$this->assertSame('core_fake', $view->getQuery()
->getConnection()
->getKey());
$this->assertSame('replica', $view->getQuery()
->getConnection()
->getTarget());
// Clean up the created database connections.
Database::closeConnection('replica', 'default');
Database::closeConnection('default', 'core_fake');
Database::closeConnection('replica', 'core_fake');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.