mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-12 16:05:09 +00:00
049a747143
Changes to the use statements done automatically via script Addition of missing use statement done manually Change-Id: Ifcc9113bc1d2cf79d21871abe7652d7ed8dde20a
38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Math\Tests;
|
|
|
|
use MediaWiki\Context\RequestContext;
|
|
use MediaWiki\Title\Title;
|
|
use MediaWikiIntegrationTestCase;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\Math\HookHandlers\PreferencesHooksHandler
|
|
* @group Database
|
|
*/
|
|
class PreferencesIntegrationTest extends MediaWikiIntegrationTestCase {
|
|
|
|
public function testInvalidDefaultOptionFixed() {
|
|
$this->mergeMwGlobalArrayValue( 'wgDefaultUserOptions', [ 'math' => 'garbage' ] );
|
|
$this->assertContains(
|
|
$this->getServiceContainer()->getUserOptionsLookup()->getDefaultOption( 'math' ),
|
|
$this->getServiceContainer()->get( 'Math.Config' )->getValidRenderingModes()
|
|
);
|
|
}
|
|
|
|
public function testMathOptionRegistered() {
|
|
$context = new RequestContext();
|
|
$context->setTitle( Title::makeTitle( NS_MAIN, 'Dummy' ) );
|
|
$allPreferences = $this->getServiceContainer()
|
|
->getPreferencesFactory()
|
|
->getFormDescriptor( $this->getTestUser()->getUser(), $context );
|
|
$this->assertArrayHasKey( 'math', $allPreferences );
|
|
$mathPrefs = $allPreferences['math'];
|
|
$this->assertSame( 'radio', $mathPrefs['type'] );
|
|
$this->assertSame(
|
|
$this->getServiceContainer()->getUserOptionsLookup()->getDefaultOption( 'math' ),
|
|
$mathPrefs['default']
|
|
);
|
|
}
|
|
}
|