mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
synced 2024-12-13 14:48:16 +00:00
81eb401a75
Change-Id: Ia72968e53373d136efb75e6f82fb7bd27665f83d
46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\CodeMirror\Tests;
|
|
|
|
use MediaWiki\Extension\CodeMirror\Hooks;
|
|
use MediaWiki\User\UserOptionsLookup;
|
|
use MediaWikiIntegrationTestCase;
|
|
use RequestContext;
|
|
|
|
/**
|
|
* @group CodeMirror
|
|
*/
|
|
class HookTest extends MediaWikiIntegrationTestCase {
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\CodeMirror\Hooks::isCodeMirrorOnPage
|
|
* @covers \MediaWiki\Extension\CodeMirror\Hooks::onBeforePageDisplay
|
|
*/
|
|
public function testOnBeforePageDisplay() {
|
|
$userOptionsLookup = $this->createMock( UserOptionsLookup::class );
|
|
$userOptionsLookup->method( 'getOption' )->willReturn( true );
|
|
$this->setService( 'UserOptionsLookup', $userOptionsLookup );
|
|
|
|
$out = $this->createMock( \OutputPage::class );
|
|
$out->method( 'getModules' )->willReturn( [] );
|
|
$out->method( 'getUser' )->willReturn( $this->createMock( \User::class ) );
|
|
$out->method( 'getActionName' )->willReturn( 'edit' );
|
|
$out->method( 'getTitle' )->willReturn( \Title::makeTitle( NS_MAIN, __METHOD__ ) );
|
|
$out->expects( $this->exactly( 2 ) )->method( 'addModules' );
|
|
|
|
( new Hooks( $userOptionsLookup ) )
|
|
->onBeforePageDisplay( $out, $this->createMock( \Skin::class ) );
|
|
}
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\CodeMirror\Hooks::onGetPreferences
|
|
*/
|
|
public function testPreferenceRegistered() {
|
|
$user = self::getTestUser()->getUser();
|
|
$this->setMwGlobals( 'wgTitle', \Title::newFromText( __METHOD__ ) );
|
|
$kinds = $this->getServiceContainer()->getUserOptionsManager()
|
|
->getOptionKinds( $user, RequestContext::getMain(), [ 'usecodemirror' => 1 ] );
|
|
self::assertEquals( 'registered', $kinds['usecodemirror'] );
|
|
}
|
|
}
|