mediawiki-extensions-Echo/tests/phpunit/EchoDbFactoryTest.php
Thiemo Kreuz c36d2bd0e8 Prefer the …::class feature over hard-coded strings in all tests
The codebase already used the …::class feature in many places. So this
is more for consistency than anything. The …::class feature makes it
much easier to do refactoring in the future.

Note this patch is exclusively touching tests. That should make it
relatively easy to review this. As long as the CI is fine with it, it
should be ok. Right? ;-)

Change-Id: I4d2adee76b4adbc83b2061161fd4e863ba833fcb
2019-02-19 14:35:14 +00:00

37 lines
898 B
PHP

<?php
use Wikimedia\Rdbms\IDatabase;
use Wikimedia\Rdbms\ILoadBalancer;
/**
* @covers MWEchoDbFactory
*/
class MWEchoDbFactoryTest extends MediaWikiTestCase {
public function testNewFromDefault() {
$db = MWEchoDbFactory::newFromDefault();
$this->assertInstanceOf( MWEchoDbFactory::class, $db );
return $db;
}
/**
* @depends testNewFromDefault
*/
public function testGetEchoDb( MWEchoDbFactory $db ) {
$this->assertInstanceOf( IDatabase::class, $db->getEchoDb( DB_MASTER ) );
$this->assertInstanceOf( IDatabase::class, $db->getEchoDb( DB_REPLICA ) );
}
/**
* @depends testNewFromDefault
*/
public function testGetLB( MWEchoDbFactory $db ) {
$reflection = new ReflectionClass( MWEchoDbFactory::class );
$method = $reflection->getMethod( 'getLB' );
$method->setAccessible( true );
$this->assertInstanceOf( ILoadBalancer::class, $method->invoke( $db ) );
}
}