summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/config/ConfigFactoryTest.php
blob: 3902858d617f8aa889e0b5959abe70e79d137ee7 (plain)
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
<?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', array(
			'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' );
	}
}