Merge "rdbms: avoid LoadBalancer::getConnection waste when using $groups"
[lhc/web/wiklou.git] / tests / phpunit / includes / libs / rdbms / connectionmanager / SessionConsistentConnectionManagerTest.php
1 <?php
2
3 namespace Wikimedia\Tests\Rdbms;
4
5 use Wikimedia\Rdbms\IDatabase;
6 use Wikimedia\Rdbms\LoadBalancer;
7 use PHPUnit_Framework_MockObject_MockObject;
8 use Wikimedia\Rdbms\SessionConsistentConnectionManager;
9
10 /**
11 * @covers Wikimedia\Rdbms\SessionConsistentConnectionManager
12 *
13 * @author Daniel Kinzler
14 */
15 class SessionConsistentConnectionManagerTest extends \PHPUnit\Framework\TestCase {
16
17 /**
18 * @return IDatabase|PHPUnit_Framework_MockObject_MockObject
19 */
20 private function getIDatabaseMock() {
21 return $this->getMockBuilder( IDatabase::class )
22 ->getMock();
23 }
24
25 /**
26 * @return LoadBalancer|PHPUnit_Framework_MockObject_MockObject
27 */
28 private function getLoadBalancerMock() {
29 $lb = $this->getMockBuilder( LoadBalancer::class )
30 ->disableOriginalConstructor()
31 ->getMock();
32
33 return $lb;
34 }
35
36 public function testGetReadConnection() {
37 $database = $this->getIDatabaseMock();
38 $lb = $this->getLoadBalancerMock();
39
40 $lb->expects( $this->once() )
41 ->method( 'getConnection' )
42 ->with( DB_REPLICA )
43 ->will( $this->returnValue( $database ) );
44
45 $manager = new SessionConsistentConnectionManager( $lb );
46 $actual = $manager->getReadConnection();
47
48 $this->assertSame( $database, $actual );
49 }
50
51 public function testGetReadConnectionReturnsWriteDbOnForceMatser() {
52 $database = $this->getIDatabaseMock();
53 $lb = $this->getLoadBalancerMock();
54
55 $lb->expects( $this->once() )
56 ->method( 'getConnection' )
57 ->with( DB_MASTER )
58 ->will( $this->returnValue( $database ) );
59
60 $manager = new SessionConsistentConnectionManager( $lb );
61 $manager->prepareForUpdates();
62 $actual = $manager->getReadConnection();
63
64 $this->assertSame( $database, $actual );
65 }
66
67 public function testGetWriteConnection() {
68 $database = $this->getIDatabaseMock();
69 $lb = $this->getLoadBalancerMock();
70
71 $lb->expects( $this->once() )
72 ->method( 'getConnection' )
73 ->with( DB_MASTER )
74 ->will( $this->returnValue( $database ) );
75
76 $manager = new SessionConsistentConnectionManager( $lb );
77 $actual = $manager->getWriteConnection();
78
79 $this->assertSame( $database, $actual );
80 }
81
82 public function testForceMaster() {
83 $database = $this->getIDatabaseMock();
84 $lb = $this->getLoadBalancerMock();
85
86 $lb->expects( $this->once() )
87 ->method( 'getConnection' )
88 ->with( DB_MASTER )
89 ->will( $this->returnValue( $database ) );
90
91 $manager = new SessionConsistentConnectionManager( $lb );
92 $manager->prepareForUpdates();
93 $manager->getReadConnection();
94 }
95
96 public function testReleaseConnection() {
97 $database = $this->getIDatabaseMock();
98 $lb = $this->getLoadBalancerMock();
99
100 $lb->expects( $this->once() )
101 ->method( 'reuseConnection' )
102 ->with( $database )
103 ->will( $this->returnValue( null ) );
104
105 $manager = new SessionConsistentConnectionManager( $lb );
106 $manager->releaseConnection( $database );
107 }
108 }