-
-
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 #4308 from kralos/4295-connection-params-bc-break
#4295 Keep master, slaves, keepReplica params in MasterSlaveConnection
- Loading branch information
Showing
2 changed files
with
39 additions
and
3 deletions.
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
39 changes: 39 additions & 0 deletions
39
tests/Doctrine/Tests/DBAL/Connections/MasterSlaveConnectionTest.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,39 @@ | ||
<?php | ||
|
||
namespace Doctrine\Tests\DBAL\Connections; | ||
|
||
use Doctrine\DBAL\Connections\MasterSlaveConnection; | ||
use Doctrine\DBAL\Driver; | ||
use Doctrine\Tests\DbalTestCase; | ||
|
||
class MasterSlaveConnectionTest extends DbalTestCase | ||
{ | ||
public function testConnectionParamsRemainAvailable(): void | ||
{ | ||
$constructionParams = [ | ||
'driver' => 'pdo_mysql', | ||
'keepSlave' => true, | ||
'master' => [ | ||
'host' => 'master.host', | ||
'user' => 'root', | ||
'password' => 'password', | ||
'port' => '1234', | ||
], | ||
'slaves' => [ | ||
[ | ||
'host' => 'slave1.host', | ||
'user' => 'root', | ||
'password' => 'password', | ||
'port' => '1234', | ||
], | ||
], | ||
]; | ||
|
||
$connection = new MasterSlaveConnection($constructionParams, $this->createStub(Driver::class)); | ||
|
||
$connectionParams = $connection->getParams(); | ||
foreach ($constructionParams as $key => $value) { | ||
self::assertSame($value, $connectionParams[$key]); | ||
} | ||
} | ||
} |