This makes it easier for IDEs to find usage This works even for non-existing classes Change-Id: I4a6389a9bc0b3c212633841d69bd4f48a7ed6f56
647 lines
19 KiB
PHP
647 lines
19 KiB
PHP
<?php
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use Wikimedia\TestingAccessWrapper;
|
|
use Wikimedia\Timestamp\ConvertibleTimestamp;
|
|
|
|
/**
|
|
* @covers WatchAction
|
|
*
|
|
* @group Action
|
|
*/
|
|
class WatchActionTest extends MediaWikiIntegrationTestCase {
|
|
|
|
/**
|
|
* @var WatchAction
|
|
*/
|
|
private $watchAction;
|
|
|
|
/**
|
|
* @var WikiPage
|
|
*/
|
|
private $testWikiPage;
|
|
|
|
/**
|
|
* @var IContextSource
|
|
*/
|
|
private $context;
|
|
|
|
protected function setUp() : void {
|
|
parent::setUp();
|
|
|
|
$testTitle = Title::newFromText( 'UTTest' );
|
|
$this->testWikiPage = new WikiPage( $testTitle );
|
|
$testContext = new DerivativeContext( RequestContext::getMain() );
|
|
$testContext->setTitle( $testTitle );
|
|
$this->context = $testContext;
|
|
$this->watchAction = new WatchAction(
|
|
Article::newFromWikiPage( $this->testWikiPage, $testContext ),
|
|
$testContext
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @throws MWException
|
|
*/
|
|
protected function tearDown() : void {
|
|
parent::tearDown();
|
|
|
|
$this->hideDeprecated( 'Hooks::clear' );
|
|
Hooks::clear( 'WatchArticle' );
|
|
Hooks::clear( 'UnwatchArticle' );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::getName()
|
|
*/
|
|
public function testGetName() {
|
|
$this->assertEquals( 'watch', $this->watchAction->getName() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::requiresUnblock()
|
|
*/
|
|
public function testRequiresUnlock() {
|
|
$this->assertFalse( $this->watchAction->requiresUnblock() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doesWrites()
|
|
*/
|
|
public function testDoesWrites() {
|
|
$this->assertTrue( $this->watchAction->doesWrites() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::onSubmit()
|
|
* @covers WatchAction::doWatch()
|
|
*/
|
|
public function testOnSubmit() {
|
|
/** @var Status $actual */
|
|
$actual = $this->watchAction->onSubmit( [] );
|
|
|
|
$this->assertTrue( $actual->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::onSubmit()
|
|
* @covers WatchAction::doWatch()
|
|
*/
|
|
public function testOnSubmitHookAborted() {
|
|
// WatchlistExpiry feature flag.
|
|
$this->setMwGlobals( 'wgWatchlistExpiry', true );
|
|
|
|
$testContext = $this->getMockBuilder( DerivativeContext::class )
|
|
->onlyMethods( [ 'getRequest' ] )
|
|
->setConstructorArgs( [ $this->watchAction->getContext() ] )
|
|
->getMock();
|
|
|
|
// Change the context to have a logged in user with correct permission.
|
|
$testContext->setUser( $this->getUser( true, true, [ 'editmywatchlist' ] ) );
|
|
|
|
/** @var MockObject|WebRequest $testRequest */
|
|
$testRequest = $this->createMock( WebRequest::class );
|
|
$testRequest->expects( $this->once() )
|
|
->method( 'getVal' )
|
|
->willReturn( '6 months' );
|
|
$testContext->method( 'getRequest' )->willReturn( $testRequest );
|
|
|
|
$this->watchAction = new WatchAction(
|
|
Article::newFromWikiPage( $this->testWikiPage, $testContext ),
|
|
$testContext
|
|
);
|
|
|
|
Hooks::register( 'WatchArticle', function () {
|
|
return false;
|
|
} );
|
|
|
|
/** @var Status $actual */
|
|
$actual = $this->watchAction->onSubmit( [] );
|
|
|
|
$this->assertInstanceOf( Status::class, $actual );
|
|
$this->assertTrue( $actual->hasMessage( 'hookaborted' ) );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::checkCanExecute()
|
|
*/
|
|
public function testShowUserNotLoggedIn() {
|
|
$notLoggedInUser = new User();
|
|
$testContext = new DerivativeContext( $this->watchAction->getContext() );
|
|
$testContext->setUser( $notLoggedInUser );
|
|
$watchAction = new WatchAction(
|
|
Article::newFromWikiPage( $this->testWikiPage, $testContext ),
|
|
$testContext
|
|
);
|
|
$this->expectException( UserNotLoggedIn::class );
|
|
|
|
$watchAction->show();
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::checkCanExecute()
|
|
*/
|
|
public function testShowUserLoggedInNoException() {
|
|
$loggedInUser = $this->createMock( User::class );
|
|
$loggedInUser->method( 'isLoggedIn' )->willReturn( true );
|
|
$testContext = new DerivativeContext( $this->watchAction->getContext() );
|
|
$testContext->setUser( $loggedInUser );
|
|
$watchAction = new WatchAction(
|
|
Article::newFromWikiPage( $this->testWikiPage, $testContext ),
|
|
$testContext
|
|
);
|
|
|
|
$exception = null;
|
|
try {
|
|
$watchAction->show();
|
|
} catch ( UserNotLoggedIn $e ) {
|
|
$exception = $e;
|
|
}
|
|
$this->assertNull( $exception,
|
|
'UserNotLoggedIn exception should not be thrown if user is logged in.' );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::onSuccess()
|
|
*/
|
|
public function testOnSuccessMainNamespaceTitle() {
|
|
/** @var MockObject|IContextSource $testContext */
|
|
$testContext = $this->getMockBuilder( DerivativeContext::class )
|
|
->setMethods( [ 'msg' ] )
|
|
->setConstructorArgs( [ $this->watchAction->getContext() ] )
|
|
->getMock();
|
|
$testOutput = new OutputPage( $testContext );
|
|
$testContext->setOutput( $testOutput );
|
|
$testContext->method( 'msg' )->willReturnCallback( function ( $msgKey ) {
|
|
return new RawMessage( $msgKey );
|
|
} );
|
|
$watchAction = new WatchAction(
|
|
Article::newFromWikiPage( $this->testWikiPage, $testContext ),
|
|
$testContext
|
|
);
|
|
|
|
$watchAction->onSuccess();
|
|
|
|
$this->assertEquals( '<p>addedwatchtext
|
|
</p>', $testOutput->getHTML() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::onSuccess()
|
|
*/
|
|
public function testOnSuccessTalkPage() {
|
|
/** @var MockObject|IContextSource $testContext */
|
|
$testContext = $this->getMockBuilder( DerivativeContext::class )
|
|
->setMethods( [ 'getOutput', 'msg' ] )
|
|
->setConstructorArgs( [ $this->watchAction->getContext() ] )
|
|
->getMock();
|
|
$testOutput = new OutputPage( $testContext );
|
|
$testContext->method( 'getOutput' )->willReturn( $testOutput );
|
|
$testContext->method( 'msg' )->willReturnCallback( function ( $msgKey ) {
|
|
return new RawMessage( $msgKey );
|
|
} );
|
|
$talkPageTitle = Title::newFromText( 'Talk:UTTest' );
|
|
$testContext->setTitle( $talkPageTitle );
|
|
$watchAction = new WatchAction(
|
|
Article::newFromTitle( $talkPageTitle, $testContext ),
|
|
$testContext
|
|
);
|
|
|
|
$watchAction->onSuccess();
|
|
|
|
$this->assertEquals( '<p>addedwatchtext-talk
|
|
</p>', $testOutput->getHTML() );
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideOnSuccessDifferentMessages
|
|
*/
|
|
public function testOnSuccessDifferentMessages(
|
|
$watchlistExpiry, $msg, $prefixedTitle, $submittedExpiry, $expiryLabel
|
|
) {
|
|
// Fake current time to be 2020-09-17 12:00:00 UTC.
|
|
ConvertibleTimestamp::setFakeTime( '20200917120000' );
|
|
|
|
// WatchlistExpiry feature flag.
|
|
$this->setMwGlobals( 'wgWatchlistExpiry', $watchlistExpiry );
|
|
|
|
// Set up context, request, and output.
|
|
/** @var MockObject|IContextSource $testContext */
|
|
$testContext = $this->getMockBuilder( DerivativeContext::class )
|
|
->onlyMethods( [ 'getOutput', 'getRequest', 'getLanguage' ] )
|
|
->setConstructorArgs( [ $this->watchAction->getContext() ] )
|
|
->getMock();
|
|
/** @var MockObject|OutputPage $testOutput */
|
|
$testOutput = $this->createMock( OutputPage::class );
|
|
$testOutput->expects( $this->once() )
|
|
->method( 'addWikiMsg' )
|
|
->with( $msg, $prefixedTitle, $expiryLabel );
|
|
$testContext->method( 'getOutput' )->willReturn( $testOutput );
|
|
// Set language to anything non-English/default, to catch assumptions.
|
|
$langDe = MediaWikiServices::getInstance()->getLanguageFactory()->getLanguage( 'de' );
|
|
$testContext->method( 'getLanguage' )->willReturn( $langDe );
|
|
/** @var MockObject|WebRequest $testRequest */
|
|
$testRequest = $this->createMock( WebRequest::class );
|
|
$testRequest->expects( $this->once() )
|
|
->method( 'getText' )
|
|
->willReturn( $submittedExpiry );
|
|
$testContext->method( 'getRequest' )->willReturn( $testRequest );
|
|
|
|
// Call the onSuccess method, and the above mocks will confirm it's correct.
|
|
/** @var WatchAction $watchAction */
|
|
$watchAction = TestingAccessWrapper::newFromObject(
|
|
new WatchAction(
|
|
Article::newFromTitle( Title::newFromText( $prefixedTitle ), $testContext ),
|
|
$testContext
|
|
)
|
|
);
|
|
$watchAction->onSuccess();
|
|
}
|
|
|
|
public function provideOnSuccessDifferentMessages() {
|
|
return [
|
|
[
|
|
'wgWatchlistExpiry' => false,
|
|
'msg' => 'addedwatchtext',
|
|
'prefixedTitle' => 'Foo',
|
|
'submittedExpiry' => null,
|
|
'expiryLabel' => null,
|
|
],
|
|
[
|
|
'wgWatchlistExpiry' => false,
|
|
'msg' => 'addedwatchtext-talk',
|
|
'prefixedTitle' => 'Talk:Foo',
|
|
'submittedExpiry' => null,
|
|
'expiryLabel' => null,
|
|
],
|
|
[
|
|
'wgWatchlistExpiry' => true,
|
|
'msg' => 'addedwatchindefinitelytext',
|
|
'prefixedTitle' => 'Foo',
|
|
'submittedExpiry' => 'infinite',
|
|
'expiryLabel' => 'Dauerhaft',
|
|
],
|
|
[
|
|
'wgWatchlistExpiry' => true,
|
|
'msg' => 'addedwatchindefinitelytext-talk',
|
|
'prefixedTitle' => 'Talk:Foo',
|
|
'submittedExpiry' => 'infinite',
|
|
'expiryLabel' => 'Dauerhaft',
|
|
],
|
|
[
|
|
'wgWatchlistExpiry' => true,
|
|
'msg' => 'addedwatchexpirytext',
|
|
'prefixedTitle' => 'Foo',
|
|
'submittedExpiry' => '1 week',
|
|
'expiryLabel' => '1 Woche',
|
|
],
|
|
[
|
|
'wgWatchlistExpiry' => true,
|
|
'msg' => 'addedwatchexpirytext-talk',
|
|
'prefixedTitle' => 'Talk:Foo',
|
|
'submittedExpiry' => '1 week',
|
|
'expiryLabel' => '1 Woche',
|
|
],
|
|
[
|
|
'wgWatchlistExpiry' => true,
|
|
'msg' => 'addedwatchexpiryhours',
|
|
'prefixedTitle' => 'Foo',
|
|
'submittedExpiry' => '2020-09-17T14:00:00Z',
|
|
'expiryLabel' => null,
|
|
],
|
|
[
|
|
'wgWatchlistExpiry' => true,
|
|
'msg' => 'addedwatchexpiryhours-talk',
|
|
'prefixedTitle' => 'Talk:Foo',
|
|
'submittedExpiry' => '2020-09-17T14:00:00Z',
|
|
'expiryLabel' => null,
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doWatch()
|
|
* @throws Exception
|
|
*/
|
|
public function testDoWatchNoCheckRights() {
|
|
$notPermittedUser = $this->getUser( null, null, [] );
|
|
$actual = WatchAction::doWatch( $this->testWikiPage->getTitle(), $notPermittedUser, false );
|
|
$this->assertTrue( $actual->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doWatch()
|
|
* @throws Exception
|
|
*/
|
|
public function testDoWatchUserNotPermittedStatusNotGood() {
|
|
$notPermittedUser = $this->getUser( null, null, [] );
|
|
$actual = WatchAction::doWatch( $this->testWikiPage->getTitle(), $notPermittedUser, true );
|
|
$this->assertFalse( $actual->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doWatch()
|
|
* @throws Exception
|
|
*/
|
|
public function testDoWatchCallsUserAddWatch() {
|
|
$permittedUser = $this->getUser( null, null, [ 'editmywatchlist' ] );
|
|
$permittedUser->expects( $this->once() )
|
|
->method( 'addWatch' )
|
|
->with( $this->equalTo( $this->testWikiPage->getTitle() ), $this->equalTo( true ) );
|
|
|
|
$actual = WatchAction::doWatch( $this->testWikiPage->getTitle(), $permittedUser );
|
|
|
|
$this->assertTrue( $actual->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doUnWatch()
|
|
* @throws Exception
|
|
*/
|
|
public function testDoUnWatchWithoutRights() {
|
|
$notPermittedUser = $this->getUser( null, null, [] );
|
|
$actual = WatchAction::doUnwatch( $this->testWikiPage->getTitle(), $notPermittedUser );
|
|
|
|
$this->assertFalse( $actual->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doUnWatch()
|
|
*/
|
|
public function testDoUnWatchUserHookAborted() {
|
|
$permittedUser = $this->getUser( null, null, [ 'editmywatchlist' ] );
|
|
Hooks::register( 'UnwatchArticle', function () {
|
|
return false;
|
|
} );
|
|
|
|
$status = WatchAction::doUnwatch( $this->testWikiPage->getTitle(), $permittedUser );
|
|
|
|
$this->assertFalse( $status->isGood() );
|
|
$errors = $status->getErrors();
|
|
$this->assertCount( 1, $errors );
|
|
$this->assertEquals( 'hookaborted', $errors[0]['message'] );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doUnWatch()
|
|
* @throws Exception
|
|
*/
|
|
public function testDoUnWatchCallsUserRemoveWatch() {
|
|
$permittedUser = $this->getUser( null, null, [ 'editmywatchlist' ] );
|
|
$permittedUser->expects( $this->once() )
|
|
->method( 'removeWatch' )
|
|
->with( $this->equalTo( $this->testWikiPage->getTitle() ) );
|
|
|
|
$actual = WatchAction::doUnwatch( $this->testWikiPage->getTitle(), $permittedUser );
|
|
|
|
$this->assertTrue( $actual->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::getWatchToken()
|
|
* @throws Exception
|
|
*/
|
|
public function testGetWatchTokenNormalizesToWatch() {
|
|
$user = $this->getUser( null, null );
|
|
$user->expects( $this->once() )
|
|
->method( 'getEditToken' )
|
|
->with( $this->equalTo( 'watch' ) );
|
|
|
|
WatchAction::getWatchToken( $this->watchAction->getTitle(), $user, 'INVALID_ACTION' );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::getWatchToken()
|
|
* @throws Exception
|
|
*/
|
|
public function testGetWatchTokenProxiesUserGetEditToken() {
|
|
$user = $this->getUser( null, null );
|
|
$user->expects( $this->once() )->method( 'getEditToken' );
|
|
|
|
WatchAction::getWatchToken( $this->watchAction->getTitle(), $user );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doWatchOrUnwatch()
|
|
* @throws Exception
|
|
*/
|
|
public function testDoWatchOrUnwatchUserNotLoggedIn() {
|
|
$user = $this->getUser( false );
|
|
$user->expects( $this->never() )->method( 'removeWatch' );
|
|
$user->expects( $this->never() )->method( 'addWatch' );
|
|
|
|
$status = WatchAction::doWatchOrUnwatch( true, $this->watchAction->getTitle(), $user );
|
|
|
|
$this->assertTrue( $status->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doWatchOrUnwatch()
|
|
* @throws Exception
|
|
*/
|
|
public function testDoWatchOrUnwatchSkipsIfAlreadyWatched() {
|
|
$user = $this->getUser( true, '99990123000000' );
|
|
|
|
$user->addWatch( $this->watchAction->getTitle() );
|
|
$user->expects( $this->never() )->method( 'removeWatch' );
|
|
$user->expects( $this->never() )->method( 'addWatch' );
|
|
|
|
$status = WatchAction::doWatchOrUnwatch(
|
|
true,
|
|
$this->watchAction->getTitle(),
|
|
$user,
|
|
'99990123000000' // Same expiry
|
|
);
|
|
$this->assertTrue( $status->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doWatchOrUnwatch()
|
|
* @throws Exception
|
|
*/
|
|
public function testDoWatchOrUnwatchSkipsIfExpiryChanged() {
|
|
$user = $this->getUser( true, '99990123000000' );
|
|
|
|
$user->addWatch( $this->watchAction->getTitle() );
|
|
$user->expects( $this->never() )->method( 'removeWatch' );
|
|
$user->expects( $this->once() )->method( 'addWatch' );
|
|
|
|
$status = WatchAction::doWatchOrUnwatch(
|
|
true,
|
|
$this->watchAction->getTitle(),
|
|
$user,
|
|
'88880123000000' // Different expiry
|
|
);
|
|
$this->assertTrue( $status->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doWatchOrUnwatch()
|
|
* @throws Exception
|
|
*/
|
|
public function testDoWatchOrUnwatchSkipsIfAlreadyUnWatched() {
|
|
$user = $this->getUser( true, false );
|
|
$user->expects( $this->never() )->method( 'removeWatch' );
|
|
$user->expects( $this->never() )->method( 'addWatch' );
|
|
|
|
$status = WatchAction::doWatchOrUnwatch( false, $this->watchAction->getTitle(), $user );
|
|
|
|
$this->assertTrue( $status->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doWatchOrUnwatch()
|
|
* @throws Exception
|
|
*/
|
|
public function testDoWatchOrUnwatchWatchesIfWatch() {
|
|
$user = $this->getUser( true, false );
|
|
$user->expects( $this->never() )->method( 'removeWatch' );
|
|
$user->expects( $this->once() )
|
|
->method( 'addWatch' )
|
|
->with( $this->equalTo( $this->testWikiPage->getTitle() ), $this->equalTo( false ) );
|
|
|
|
$status = WatchAction::doWatchOrUnwatch( true, $this->watchAction->getTitle(), $user );
|
|
|
|
$this->assertTrue( $status->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doWatchOrUnwatch()
|
|
* @throws Exception
|
|
*/
|
|
public function testDoWatchOrUnwatchUnwatchesIfUnwatch() {
|
|
$user = $this->getUser( true, true, [ 'editmywatchlist' ] );
|
|
|
|
$user->expects( $this->never() )->method( 'addWatch' );
|
|
$user->expects( $this->once() )
|
|
->method( 'removeWatch' )
|
|
->with( $this->equalTo( $this->testWikiPage->getTitle() ) );
|
|
|
|
$status = WatchAction::doWatchOrUnwatch( false, $this->watchAction->getTitle(), $user );
|
|
|
|
$this->assertTrue( $status->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::getExpiryOptions()
|
|
*/
|
|
public function testGetExpiryOptions() {
|
|
// Fake current time to be 2020-06-10T00:00:00Z
|
|
ConvertibleTimestamp::setFakeTime( '20200610000000' );
|
|
$user = $this->getUser();
|
|
$target = new TitleValue( 0, 'SomeDbKey' );
|
|
|
|
$optionsNoExpiry = WatchAction::getExpiryOptions( $this->context, false );
|
|
$expectedNoExpiry = [
|
|
'options' => [
|
|
'Permanent' => 'infinite',
|
|
'1 week' => '1 week',
|
|
'1 month' => '1 month',
|
|
'3 months' => '3 months',
|
|
'6 months' => '6 months'
|
|
],
|
|
'default' => 'infinite'
|
|
];
|
|
|
|
$this->assertSame( $expectedNoExpiry, $optionsNoExpiry );
|
|
|
|
// Adding a watched item with an expiry a month from the frozen time
|
|
$watchedItemMonth = new WatchedItem( $user, $target, null, '20200710000000' );
|
|
$optionsExpiryOneMonth = WatchAction::getExpiryOptions( $this->context, $watchedItemMonth );
|
|
$expectedExpiryOneMonth = [
|
|
'options' => [
|
|
'30 days left' => '2020-07-10T00:00:00Z',
|
|
'Permanent' => 'infinite',
|
|
'1 week' => '1 week',
|
|
'1 month' => '1 month',
|
|
'3 months' => '3 months',
|
|
'6 months' => '6 months'
|
|
],
|
|
'default' => '2020-07-10T00:00:00Z'
|
|
];
|
|
|
|
$this->assertSame( $expectedExpiryOneMonth, $optionsExpiryOneMonth );
|
|
|
|
// Adding a watched item with an expiry 7 days from the frozen time
|
|
$watchedItemWeek = new WatchedItem( $user, $target, null, '20200617000000' );
|
|
$optionsExpiryOneWeek = WatchAction::getExpiryOptions( $this->context, $watchedItemWeek );
|
|
$expectedOneWeek = [
|
|
'options' => [
|
|
'7 days left' => '2020-06-17T00:00:00Z',
|
|
'Permanent' => 'infinite',
|
|
'1 week' => '1 week',
|
|
'1 month' => '1 month',
|
|
'3 months' => '3 months',
|
|
'6 months' => '6 months'
|
|
],
|
|
'default' => '2020-06-17T00:00:00Z'
|
|
];
|
|
|
|
$this->assertSame( $expectedOneWeek, $optionsExpiryOneWeek );
|
|
|
|
// Case for when WatchedItem is true
|
|
$optionsNoExpiryWIFalse = WatchAction::getExpiryOptions( $this->context, true );
|
|
$expectedNoExpiryWIFalse = [
|
|
'options' => [
|
|
'Permanent' => 'infinite',
|
|
'1 week' => '1 week',
|
|
'1 month' => '1 month',
|
|
'3 months' => '3 months',
|
|
'6 months' => '6 months'
|
|
],
|
|
'default' => 'infinite'
|
|
];
|
|
|
|
$this->assertSame( $expectedNoExpiryWIFalse, $optionsNoExpiryWIFalse );
|
|
}
|
|
|
|
/**
|
|
* @covers WatchAction::doWatchOrUnwatch()
|
|
*/
|
|
public function testDoWatchOrUnwatchWithExpiry() {
|
|
// Already watched, but we're adding an expiry so 'addWatch' should be called.
|
|
$user = $this->getUser( true, true, [ 'editmywatchlist' ] );
|
|
$user->expects( $this->once() )->method( 'addWatch' );
|
|
$status = WatchAction::doWatchOrUnwatch( true, $this->watchAction->getTitle(), $user, '1 week' );
|
|
$this->assertTrue( $status->isGood() );
|
|
}
|
|
|
|
/**
|
|
* @param bool $isLoggedIn Whether the user should be "marked" as logged in
|
|
* @param bool|string $isWatched The value any call to isWatched should return.
|
|
* A string value is the expiry that should be used.
|
|
* @param array $permissions The permissions of the user
|
|
* @return MockObject|User
|
|
* @throws Exception
|
|
*/
|
|
private function getUser(
|
|
$isLoggedIn = true,
|
|
$isWatched = true,
|
|
$permissions = []
|
|
) {
|
|
$user = $this->createMock( User::class );
|
|
$user->method( 'getId' )->willReturn( 42 );
|
|
$user->method( 'isLoggedIn' )->willReturn( $isLoggedIn );
|
|
$user->method( 'isWatched' )->willReturn( $isWatched );
|
|
|
|
// Override WatchedItemStore to think the page is watched, if applicable.
|
|
if ( $isWatched ) {
|
|
$this->overrideMwServices();
|
|
$mock = $this->createMock( WatchedItemStore::class );
|
|
$mock->method( 'getWatchedItem' )->willReturn( new WatchedItem(
|
|
$user,
|
|
$this->watchAction->getTitle(),
|
|
null,
|
|
is_string( $isWatched ) ? $isWatched : null
|
|
) );
|
|
$this->setService( 'WatchedItemStore', $mock );
|
|
}
|
|
|
|
// Note this must happen after calling $this->overrideMwServices().
|
|
$this->overrideUserPermissions( $user, $permissions );
|
|
|
|
return $user;
|
|
}
|
|
|
|
}
|