1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
<?php
namespace Wikimedia\Tests\Rdbms;
use MediaWikiUnitTestCase;
use Wikimedia\Rdbms\ConnectionManager;
use Wikimedia\Rdbms\IDatabase;
use Wikimedia\Rdbms\ILoadBalancer;
use Wikimedia\Rdbms\LoadBalancer;
/**
* @covers \Wikimedia\Rdbms\ConnectionManager
*
* @author Daniel Kinzler
*/
class ConnectionManagerTest extends MediaWikiUnitTestCase {
public function testGetReadConnection_nullGroups() {
$database = $this->createMock( IDatabase::class );
$lb = $this->createMock( LoadBalancer::class );
$lb->expects( $this->once() )
->method( 'getConnection' )
->with( DB_REPLICA, [ 'group1' ], 'someDbName' )
->willReturn( $database );
$manager = new ConnectionManager( $lb, 'someDbName', [ 'group1' ] );
$actual = $manager->getReadConnection();
$this->assertSame( $database, $actual );
}
public function testGetReadConnection_withGroupsAndFlags() {
$database = $this->createMock( IDatabase::class );
$lb = $this->createMock( LoadBalancer::class );
$lb->expects( $this->once() )
->method( 'getConnection' )
->with( DB_REPLICA, [ 'group2' ], 'someDbName', ILoadBalancer::CONN_SILENCE_ERRORS )
->willReturn( $database );
$manager = new ConnectionManager( $lb, 'someDbName', [ 'group1' ] );
$actual = $manager->getReadConnection( [ 'group2' ], ILoadBalancer::CONN_SILENCE_ERRORS );
$this->assertSame( $database, $actual );
}
public function testGetWriteConnection() {
$database = $this->createMock( IDatabase::class );
$lb = $this->createMock( LoadBalancer::class );
$lb->expects( $this->once() )
->method( 'getConnection' )
->with( DB_PRIMARY, [ 'group1' ], 'someDbName' )
->willReturn( $database );
$manager = new ConnectionManager( $lb, 'someDbName', [ 'group1' ] );
$actual = $manager->getWriteConnection();
$this->assertSame( $database, $actual );
}
public function testGetWriteConnection_withFlags() {
$database = $this->createMock( IDatabase::class );
$lb = $this->createMock( LoadBalancer::class );
$lb->expects( $this->once() )
->method( 'getConnection' )
->with( DB_PRIMARY, [ 'group1' ], 'someDbName', ILoadBalancer::CONN_TRX_AUTOCOMMIT )
->willReturn( $database );
$manager = new ConnectionManager( $lb, 'someDbName', [ 'group1' ] );
$actual = $manager->getWriteConnection( ILoadBalancer::CONN_TRX_AUTOCOMMIT );
$this->assertSame( $database, $actual );
}
}
|