-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4173 from BenMorel/2.10.x-fix-third-parameter
Fix Third parameter not allowed for PDO::FETCH_COLUMN
- Loading branch information
Showing
3 changed files
with
103 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
tests/Doctrine/Tests/DBAL/Functional/ExternalPDOInstanceTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?php | ||
|
||
namespace Doctrine\Tests\DBAL\Functional; | ||
|
||
use Doctrine\DBAL\Connection; | ||
use Doctrine\DBAL\Driver\PDO\SQLite\Driver as PDOSqliteDriver; | ||
use Doctrine\DBAL\FetchMode; | ||
use Doctrine\DBAL\Schema\Table; | ||
use Doctrine\Tests\DbalTestCase; | ||
use Doctrine\Tests\TestUtil; | ||
use PDO; | ||
|
||
class ExternalPDOInstanceTest extends DbalTestCase | ||
{ | ||
/** @var Connection */ | ||
protected $connection; | ||
|
||
protected function setUp(): void | ||
{ | ||
if (! TestUtil::getConnection()->getDriver() instanceof PDOSqliteDriver) { | ||
$this->markTestSkipped('External PDO instance tests are only run on PDO SQLite for now'); | ||
} | ||
|
||
$pdo = new PDO('sqlite::memory:'); | ||
|
||
$this->connection = new Connection(['pdo' => $pdo], new PDOSqliteDriver()); | ||
|
||
$table = new Table('stmt_fetch_all'); | ||
$table->addColumn('a', 'integer'); | ||
$table->addColumn('b', 'integer'); | ||
|
||
$this->connection->getSchemaManager()->createTable($table); | ||
|
||
$this->connection->insert('stmt_fetch_all', [ | ||
'a' => 1, | ||
'b' => 2, | ||
]); | ||
} | ||
|
||
public function testFetchAllWithOneArgument(): void | ||
{ | ||
$stmt = $this->connection->prepare('SELECT a, b FROM stmt_fetch_all'); | ||
$stmt->execute(); | ||
|
||
self::assertEquals([[1, 2]], $stmt->fetchAll(FetchMode::NUMERIC)); | ||
} | ||
|
||
public function testFetchAllWithTwoArguments(): void | ||
{ | ||
$stmt = $this->connection->prepare('SELECT a, b FROM stmt_fetch_all'); | ||
$stmt->execute(); | ||
|
||
self::assertEquals([2], $stmt->fetchAll(FetchMode::COLUMN, 1)); | ||
} | ||
|
||
public function testFetchAllWithThreeArguments(): void | ||
{ | ||
$stmt = $this->connection->prepare('SELECT a, b FROM stmt_fetch_all'); | ||
$stmt->execute(); | ||
|
||
[$obj] = $stmt->fetchAll(FetchMode::CUSTOM_OBJECT, StatementTestModel::class, ['foo', 'bar']); | ||
|
||
$this->assertInstanceOf(StatementTestModel::class, $obj); | ||
|
||
self::assertEquals(1, $obj->a); | ||
self::assertEquals(2, $obj->b); | ||
self::assertEquals('foo', $obj->x); | ||
self::assertEquals('bar', $obj->y); | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
tests/Doctrine/Tests/DBAL/Functional/StatementTestModel.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
namespace Doctrine\Tests\DBAL\Functional; | ||
|
||
class StatementTestModel | ||
{ | ||
public function __construct(string $x, string $y) | ||
{ | ||
$this->x = $x; | ||
$this->y = $y; | ||
} | ||
|
||
/** @var int */ | ||
public $a; | ||
|
||
/** @var int */ | ||
public $b; | ||
|
||
/** @var string */ | ||
public $x; | ||
|
||
/** @var string */ | ||
public $y; | ||
} |