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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<?php
class GlobalVarConfigTest extends MediaWikiTestCase {
/**
* @covers GlobalVarConfig::newInstance
*/
public function testNewInstance() {
$config = GlobalVarConfig::newInstance();
$this->assertInstanceOf( 'GlobalVarConfig', $config );
$this->maybeStashGlobal( 'wgBaz' );
$GLOBALS['wgBaz'] = 'somevalue';
// Check prefix is set to 'wg'
$this->assertEquals( 'somevalue', $config->get( 'Baz' ) );
}
/**
* @covers GlobalVarConfig::__construct
* @dataProvider provideConstructor
*/
public function testConstructor( $prefix ) {
$var = $prefix . 'GlobalVarConfigTest';
$rand = wfRandomString();
$this->maybeStashGlobal( $var );
$GLOBALS[$var] = $rand;
$config = new GlobalVarConfig( $prefix );
$this->assertInstanceOf( 'GlobalVarConfig', $config );
$this->assertEquals( $rand, $config->get( 'GlobalVarConfigTest' ) );
}
public static function provideConstructor() {
return array(
array( 'wg' ),
array( 'ef' ),
array( 'smw' ),
array( 'blahblahblahblah' ),
array( '' ),
);
}
/**
* @covers GlobalVarConfig::has
*/
public function testHas() {
$this->maybeStashGlobal( 'wgGlobalVarConfigTestHas' );
$GLOBALS['wgGlobalVarConfigTestHas'] = wfRandomString();
$this->maybeStashGlobal( 'wgGlobalVarConfigTestNotHas' );
$config = new GlobalVarConfig();
$this->assertTrue( $config->has( 'GlobalVarConfigTestHas' ) );
$this->assertFalse( $config->has( 'GlobalVarConfigTestNotHas' ) );
}
public static function provideGet() {
$set = array(
'wgSomething' => 'default1',
'wgFoo' => 'default2',
'efVariable' => 'default3',
'BAR' => 'default4',
);
foreach ( $set as $var => $value ) {
$GLOBALS[$var] = $value;
}
return array(
array( 'Something', 'wg', 'default1' ),
array( 'Foo', 'wg', 'default2' ),
array( 'Variable', 'ef', 'default3' ),
array( 'BAR', '', 'default4' ),
array( 'ThisGlobalWasNotSetAbove', 'wg', false )
);
}
/**
* @param string $name
* @param string $prefix
* @param string $expected
* @dataProvider provideGet
* @covers GlobalVarConfig::get
* @covers GlobalVarConfig::getWithPrefix
*/
public function testGet( $name, $prefix, $expected ) {
$config = new GlobalVarConfig( $prefix );
if ( $expected === false ) {
$this->setExpectedException( 'ConfigException', 'GlobalVarConfig::get: undefined option:' );
}
$this->assertEquals( $config->get( $name ), $expected );
}
private function maybeStashGlobal( $var ) {
if ( array_key_exists( $var, $GLOBALS ) ) {
// Will be reset after this test is over
$this->stashMwGlobals( $var );
}
}
}
|