mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RevisionSlider
synced 2024-11-23 23:13:29 +00:00
Add missing PHPUnit tests for hook handlers
Bug: T345620 Change-Id: I98283917644116da2a9668a5618bac086c863227
This commit is contained in:
parent
00f247d661
commit
75ea1a1e21
114
tests/phpunit/RevisionSliderHooksTest.php
Normal file
114
tests/phpunit/RevisionSliderHooksTest.php
Normal file
|
@ -0,0 +1,114 @@
|
|||
<?php
|
||||
|
||||
use MediaWiki\Extension\RevisionSlider\RevisionSliderHooks;
|
||||
use MediaWiki\Revision\RevisionRecord;
|
||||
use MediaWiki\User\StaticUserOptionsLookup;
|
||||
|
||||
/**
|
||||
* @covers \MediaWiki\Extension\RevisionSlider\RevisionSliderHooks
|
||||
*/
|
||||
class RevisionSliderHooksTest extends \MediaWikiIntegrationTestCase {
|
||||
|
||||
public function testShouldNotLoadWithoutRevisions() {
|
||||
// Assert
|
||||
$output = null;
|
||||
|
||||
// Arrange
|
||||
$diffEngine = $this->newDiffEngine( null, $output );
|
||||
|
||||
// Act
|
||||
$this->newInstance()->onDifferenceEngineViewHeader( $diffEngine );
|
||||
}
|
||||
|
||||
public function testShouldNotLoadOnMobileDiff() {
|
||||
// Arrange
|
||||
$title = $this->createMock( Title::class );
|
||||
$title->method( 'isSpecial' )
|
||||
->with( 'MobileDiff' )
|
||||
->willReturn( true );
|
||||
|
||||
$output = $this->createMock( OutputPage::class );
|
||||
$output->method( 'getTitle' )
|
||||
->willReturn( $title );
|
||||
|
||||
$revision = $this->createMock( RevisionRecord::class );
|
||||
$diffEngine = $this->newDiffEngine( $revision, $output );
|
||||
|
||||
// Assert
|
||||
$output->expects( $this->never() )
|
||||
->method( 'addModules' );
|
||||
|
||||
// Act
|
||||
$this->newInstance()->onDifferenceEngineViewHeader( $diffEngine );
|
||||
}
|
||||
|
||||
public function testShouldNotLoadWhenUserIsLoggedInAndDisabledExtension() {
|
||||
// Arrange
|
||||
$options = [ 'revisionslider-disable' => true ];
|
||||
$user = $this->createMock( User::class );
|
||||
$user->method( 'isNamed' )
|
||||
->willReturn( true );
|
||||
|
||||
$output = $this->createMock( OutputPage::class );
|
||||
$output->method( 'getTitle' )
|
||||
->willReturn( $this->createMock( Title::class ) );
|
||||
|
||||
$revision = $this->createMock( RevisionRecord::class );
|
||||
$diffEngine = $this->newDiffEngine( $revision, $output, $user );
|
||||
|
||||
// Assert
|
||||
$output->expects( $this->never() )
|
||||
->method( 'addModules' );
|
||||
|
||||
// Act
|
||||
$this->newInstance( $options )->onDifferenceEngineViewHeader( $diffEngine );
|
||||
}
|
||||
|
||||
public function testOnGetPreferences() {
|
||||
// Arrange
|
||||
$user = $this->createMock( User::class );
|
||||
$preferences = [];
|
||||
|
||||
// Act
|
||||
$this->newInstance()->onGetPreferences( $user, $preferences );
|
||||
|
||||
// Assert
|
||||
$this->assertArrayHasKey( 'revisionslider-disable', $preferences );
|
||||
$item = $preferences['revisionslider-disable'];
|
||||
$this->assertSame( 'toggle', $item['type'] );
|
||||
$this->assertSame( 'revisionslider-preference-disable', $item['label-message'] );
|
||||
$this->assertSame( 'rendering/diffs', $item['section'] );
|
||||
}
|
||||
|
||||
public function newInstance( array $options = [] ): RevisionSliderHooks {
|
||||
$configFactory = $this->createMock( ConfigFactory::class );
|
||||
$configFactory->method( 'makeConfig' )
|
||||
->willReturn( new HashConfig() );
|
||||
|
||||
return new RevisionSliderHooks(
|
||||
$configFactory,
|
||||
new StaticUserOptionsLookup( [], $options ),
|
||||
new NullStatsdDataFactory()
|
||||
);
|
||||
}
|
||||
|
||||
private function newDiffEngine(
|
||||
?RevisionRecord $revision,
|
||||
?OutputPage $output,
|
||||
?User $user = null
|
||||
): DifferenceEngine {
|
||||
$diffEngine = $this->createMock( DifferenceEngine::class );
|
||||
$diffEngine->method( 'getOldRevision' )
|
||||
->willReturn( $revision );
|
||||
$diffEngine->method( 'getNewRevision' )
|
||||
->willReturn( $revision );
|
||||
$diffEngine->expects( $output ? $this->atLeastOnce() : $this->never() )
|
||||
->method( 'getOutput' )
|
||||
->willReturn( $output );
|
||||
$diffEngine->expects( $user ? $this->once() : $this->never() )
|
||||
->method( 'getUser' )
|
||||
->willReturn( $user );
|
||||
return $diffEngine;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue