mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks
synced 2024-11-14 10:34:45 +00:00
c697355f04
Changes to the use statements done automatically via script Addition of missing use statement done manually Change-Id: I230ada2f4ad95f86593759e8320d47acdf06a749
128 lines
2.8 KiB
PHP
128 lines
2.8 KiB
PHP
<?php
|
|
|
|
use MediaWiki\Api\ApiMain;
|
|
use MediaWiki\Block\DatabaseBlock;
|
|
use MediaWiki\Extension\Thanks\Api\ApiCoreThank;
|
|
use MediaWiki\Tests\Api\ApiTestCase;
|
|
use MediaWiki\User\User;
|
|
use MediaWiki\User\UserIdentityValue;
|
|
|
|
/**
|
|
* Unit tests for the Thanks API module
|
|
*
|
|
* @group Thanks
|
|
* @group API
|
|
* @group Database
|
|
*
|
|
* @author Addshore
|
|
*/
|
|
class ApiCoreThankUnitTest extends ApiTestCase {
|
|
|
|
protected function getModule() {
|
|
$services = $this->getServiceContainer();
|
|
return new ApiCoreThank(
|
|
new ApiMain(),
|
|
'thank',
|
|
$services->getPermissionManager(),
|
|
$services->getRevisionStore(),
|
|
$services->getUserFactory(),
|
|
$services->getService( 'ThanksLogStore' )
|
|
);
|
|
}
|
|
|
|
private static function createBlock( $options ) {
|
|
$options = array_merge( [
|
|
'address' => 'Test user',
|
|
'by' => new UserIdentityValue( 1, 'TestUser' ),
|
|
'reason' => __METHOD__,
|
|
'timestamp' => wfTimestamp( TS_MW ),
|
|
'expiry' => 'infinity',
|
|
], $options );
|
|
return new DatabaseBlock( $options );
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideDieOnBadUser
|
|
* @covers \MediaWiki\Extension\Thanks\Api\ApiThank::dieOnBadUser
|
|
* @covers \MediaWiki\Extension\Thanks\Api\ApiThank::dieOnUserBlockedFromThanks
|
|
*/
|
|
public function testDieOnBadUser(
|
|
$mockisNamed,
|
|
$mockPingLimited,
|
|
$mockBlock,
|
|
$dieMethod,
|
|
$expectedError
|
|
) {
|
|
$user = $this->createMock( User::class );
|
|
if ( $mockisNamed !== null ) {
|
|
$user->expects( $this->once() )
|
|
->method( 'isNamed' )
|
|
->willReturn( $mockisNamed );
|
|
}
|
|
if ( $mockPingLimited !== null ) {
|
|
$user->expects( $this->once() )
|
|
->method( 'pingLimiter' )
|
|
->willReturn( $mockPingLimited );
|
|
}
|
|
if ( $mockBlock !== null ) {
|
|
$user->expects( $this->once() )
|
|
->method( 'getBlock' )
|
|
->willReturn( $mockBlock );
|
|
}
|
|
|
|
$module = $this->getModule();
|
|
$method = new ReflectionMethod( $module, $dieMethod );
|
|
$method->setAccessible( true );
|
|
|
|
if ( $expectedError ) {
|
|
$this->expectApiErrorCode( $expectedError );
|
|
}
|
|
|
|
$method->invoke( $module, $user );
|
|
// perhaps the method should return true.. For now we must do this
|
|
$this->assertTrue( true );
|
|
}
|
|
|
|
public static function provideDieOnBadUser() {
|
|
return [
|
|
'anon' => [
|
|
false,
|
|
null,
|
|
null,
|
|
'dieOnBadUser',
|
|
'notloggedin'
|
|
],
|
|
'ping' => [
|
|
true,
|
|
true,
|
|
null,
|
|
'dieOnBadUser',
|
|
'ratelimited'
|
|
],
|
|
'sitewide blocked' => [
|
|
null,
|
|
null,
|
|
self::createBlock( [] ),
|
|
'dieOnUserBlockedFromThanks',
|
|
'blocked'
|
|
],
|
|
'partial blocked' => [
|
|
null,
|
|
null,
|
|
self::createBlock( [ 'sitewide' => false ] ),
|
|
'dieOnUserBlockedFromThanks',
|
|
false
|
|
],
|
|
];
|
|
}
|
|
|
|
// @todo test userAlreadySentThanksForRevision
|
|
// @todo test getRevisionFromParams
|
|
// @todo test getTitleFromRevision
|
|
// @todo test getSourceFromParams
|
|
// @todo test getUserIdFromRevision
|
|
// @todo test markResultSuccess
|
|
// @todo test sendThanks
|
|
|
|
}
|