wiki.techinc.nl/tests/phpunit/includes/config/GlobalVarConfigTest.php
James D. Forrester c1599c91b3 Namespace Config-related classes under \MediaWiki\Config
Bug: T166010
Change-Id: I4066885a7ea071d22497abcdb3f95e73e154d08c
2023-09-21 05:41:58 +00:00

82 lines
2.1 KiB
PHP

<?php
use MediaWiki\Config\ConfigException;
use MediaWiki\Config\GlobalVarConfig;
/**
* @covers \MediaWiki\Config\GlobalVarConfig
*/
class GlobalVarConfigTest extends MediaWikiIntegrationTestCase {
public function testNewInstance() {
$config = GlobalVarConfig::newInstance();
$this->assertInstanceOf( GlobalVarConfig::class, $config );
$this->setMwGlobals( 'wgBaz', 'somevalue' );
// Check prefix is set to 'wg'
$this->assertEquals( 'somevalue', $config->get( 'Baz' ) );
}
/**
* @dataProvider provideConstructor
*/
public function testConstructor( $prefix ) {
$var = $prefix . 'GlobalVarConfigTest';
$this->setMwGlobals( $var, 'testvalue' );
$config = new GlobalVarConfig( $prefix );
$this->assertInstanceOf( GlobalVarConfig::class, $config );
$this->assertEquals( 'testvalue', $config->get( 'GlobalVarConfigTest' ) );
}
public static function provideConstructor() {
return [
[ 'wg' ],
[ 'ef' ],
[ 'smw' ],
[ 'blahblahblahblah' ],
[ '' ],
];
}
public function testHas() {
$this->setMwGlobals( 'wgGlobalVarConfigTestHas', 'testvalue' );
$config = new GlobalVarConfig();
$this->assertTrue( $config->has( 'GlobalVarConfigTestHas' ) );
$this->assertFalse( $config->has( 'GlobalVarConfigTestNotHas' ) );
}
public static function provideGet() {
$set = [
'wgSomething' => 'default1',
'wgFoo' => 'default2',
'efVariable' => 'default3',
'BAR' => 'default4',
];
foreach ( $set as $var => $value ) {
$GLOBALS[$var] = $value;
}
return [
[ 'Something', 'wg', 'default1' ],
[ 'Foo', 'wg', 'default2' ],
[ 'Variable', 'ef', 'default3' ],
[ 'BAR', '', 'default4' ],
[ 'ThisGlobalWasNotSetAbove', 'wg', false ]
];
}
/**
* @dataProvider provideGet
* @param string $name
* @param string $prefix
* @param string $expected
*/
public function testGet( $name, $prefix, $expected ) {
$config = new GlobalVarConfig( $prefix );
if ( $expected === false ) {
$this->expectException( ConfigException::class );
$this->expectExceptionMessage( 'GlobalVarConfig::get: undefined option:' );
}
$this->assertEquals( $expected, $config->get( $name ) );
}
}