mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-28 01:10:09 +00:00
b97ef597e0
Changes to the use statements done automatically via script Addition of missing use statement done manually Change-Id: I8fad94b215664fb77acf8cd8140232271d2c2837
40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
namespace MediaWiki\Extension\Math\Tests;
|
|
|
|
use ExtensionRegistry;
|
|
use MediaWiki\Config\HashConfig;
|
|
use MediaWiki\Config\ServiceOptions;
|
|
use MediaWiki\Extension\Math\Math;
|
|
use MediaWiki\Extension\Math\MathConfig;
|
|
use MediaWiki\MediaWikiServices;
|
|
use MediaWikiUnitTestCase;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\Math\Math
|
|
*/
|
|
class MathTest extends MediaWikiUnitTestCase {
|
|
private const DUMMY_URL = 'https://example.com/api.php';
|
|
|
|
public function testGetMathConfigService() {
|
|
$config = new HashConfig( [
|
|
'MathDisableTexFilter' => MathConfig::NEW,
|
|
'MathValidModes' => [ MathConfig::MODE_SOURCE ],
|
|
'MathEntitySelectorFallbackUrl' => self::DUMMY_URL,
|
|
] );
|
|
$services = new MediaWikiServices( $config );
|
|
$services->defineService( 'Math.Config',
|
|
function ( MediaWikiServices $services ) use ( $config ) {
|
|
return new MathConfig(
|
|
new ServiceOptions(
|
|
MathConfig::CONSTRUCTOR_OPTIONS,
|
|
$config
|
|
),
|
|
$this->createMock( ExtensionRegistry::class )
|
|
);
|
|
}
|
|
);
|
|
$mathConfig = Math::getMathConfig( $services );
|
|
$this->assertStringContainsString( 'new', $mathConfig->texCheckDisabled() );
|
|
}
|
|
}
|