ParagonIE\EasyDB\Tests\EmulatePreparesDisabledTest::testEmulatePreparesDisabled PHP Method

testEmulatePreparesDisabled() public method

public testEmulatePreparesDisabled ( $dsn, null $username = null, null $password = null, array $options = [] )
$dsn
$username null
$password null
$options array
    public function testEmulatePreparesDisabled($dsn, $username = null, $password = null, $options = [])
    {
        $db = Factory::create($dsn, $username, $password, $options);
        $recheckWithForcedFalse = false;
        try {
            $this->assertFalse($db->getPdo()->getAttribute(PDO::ATTR_EMULATE_PREPARES));
            $recheckWithForcedFalse = true;
        } catch (PDOException $e) {
            $this->assertStringEndsWith(': Driver does not support this function: driver does not support that attribute', $e->getMessage());
        }
        $options[PDO::ATTR_EMULATE_PREPARES] = true;
        $db = Factory::create($dsn, $username, $password, $options);
        try {
            $this->assertFalse($db->getPdo()->getAttribute(PDO::ATTR_EMULATE_PREPARES));
        } catch (PDOException $e) {
            $this->assertStringEndsWith(': Driver does not support this function: driver does not support that attribute', $e->getMessage());
        }
        if ($recheckWithForcedFalse) {
            $options[PDO::ATTR_EMULATE_PREPARES] = false;
            $db = Factory::create($dsn, $username, $password, $options);
            $this->assertFalse($db->getPdo()->getAttribute(PDO::ATTR_EMULATE_PREPARES));
        }
    }
EmulatePreparesDisabledTest