Per wikitech-l consensus: https://lists.wikimedia.org/pipermail/wikitech-l/2016-February/084821.html Notes: * Disabled CallTimePassByReference due to false positives (T127163) Change-Id: I2c8ce713ce6600a0bb7bf67537c87044c7a45c4b
70 lines
2 KiB
PHP
70 lines
2 KiB
PHP
<?php
|
|
|
|
class ConfigFactoryTest extends MediaWikiTestCase {
|
|
|
|
public function tearDown() {
|
|
// Reset this since we mess with it a bit
|
|
ConfigFactory::destroyDefaultInstance();
|
|
parent::tearDown();
|
|
}
|
|
|
|
/**
|
|
* @covers ConfigFactory::register
|
|
*/
|
|
public function testRegister() {
|
|
$factory = new ConfigFactory();
|
|
$factory->register( 'unittest', 'GlobalVarConfig::newInstance' );
|
|
$this->assertTrue( true ); // No exception thrown
|
|
$this->setExpectedException( 'InvalidArgumentException' );
|
|
$factory->register( 'invalid', 'Invalid callback' );
|
|
}
|
|
|
|
/**
|
|
* @covers ConfigFactory::makeConfig
|
|
*/
|
|
public function testMakeConfig() {
|
|
$factory = new ConfigFactory();
|
|
$factory->register( 'unittest', 'GlobalVarConfig::newInstance' );
|
|
$conf = $factory->makeConfig( 'unittest' );
|
|
$this->assertInstanceOf( 'Config', $conf );
|
|
}
|
|
|
|
/**
|
|
* @covers ConfigFactory::makeConfig
|
|
*/
|
|
public function testMakeConfigWithNoBuilders() {
|
|
$factory = new ConfigFactory();
|
|
$this->setExpectedException( 'ConfigException' );
|
|
$factory->makeConfig( 'nobuilderregistered' );
|
|
}
|
|
|
|
/**
|
|
* @covers ConfigFactory::makeConfig
|
|
*/
|
|
public function testMakeConfigWithInvalidCallback() {
|
|
$factory = new ConfigFactory();
|
|
$factory->register( 'unittest', function () {
|
|
return true; // Not a Config object
|
|
} );
|
|
$this->setExpectedException( 'UnexpectedValueException' );
|
|
$factory->makeConfig( 'unittest' );
|
|
}
|
|
|
|
/**
|
|
* @covers ConfigFactory::getDefaultInstance
|
|
*/
|
|
public function testGetDefaultInstance() {
|
|
// Set $wgConfigRegistry, and check the default
|
|
// instance read from it
|
|
$this->setMwGlobals( 'wgConfigRegistry', [
|
|
'conf1' => 'GlobalVarConfig::newInstance',
|
|
'conf2' => 'GlobalVarConfig::newInstance',
|
|
] );
|
|
ConfigFactory::destroyDefaultInstance();
|
|
$factory = ConfigFactory::getDefaultInstance();
|
|
$this->assertInstanceOf( 'Config', $factory->makeConfig( 'conf1' ) );
|
|
$this->assertInstanceOf( 'Config', $factory->makeConfig( 'conf2' ) );
|
|
$this->setExpectedException( 'ConfigException' );
|
|
$factory->makeConfig( 'conf3' );
|
|
}
|
|
}
|