From 725356f0fdc519f3d116e6f7ba8ff48fcaae2921 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Tue, 2 May 2017 12:35:06 +0100 Subject: [PATCH] Issue #2867700 by erozqba, mondrake, mradcliffe, cilefen: ConnectionUnitTest::testConnectionOpen fails if the driver is not implementing a PDO connection --- .../Drupal/KernelTests/Core/Database/ConnectionUnitTest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/tests/Drupal/KernelTests/Core/Database/ConnectionUnitTest.php b/core/tests/Drupal/KernelTests/Core/Database/ConnectionUnitTest.php index 6edcef821aa8..1539889ca2fa 100644 --- a/core/tests/Drupal/KernelTests/Core/Database/ConnectionUnitTest.php +++ b/core/tests/Drupal/KernelTests/Core/Database/ConnectionUnitTest.php @@ -233,6 +233,12 @@ public function testConnectionOpen() { $reflection = new \ReflectionObject($connection); $connection_property = $reflection->getProperty('connection'); $connection_property->setAccessible(TRUE); + // Skip this test when a database driver does not implement PDO. + // An alternative database driver that does not implement PDO + // should implement its own connection test." + if (get_class($connection_property->getValue($connection)) !== 'PDO') { + $this->markTestSkipped('Ignored PDO connection unit test for this driver because it does not implement PDO.'); + } $error_mode = $connection_property->getValue($connection) ->getAttribute(\PDO::ATTR_ERRMODE); $this->assertEqual($error_mode, \PDO::ERRMODE_SILENT, 'Ensure PDO connection options can be overridden.'); -- GitLab