1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
<?php
namespace MediaWiki\Tests\Block;
use MediaWiki\Block\DatabaseBlock;
use MediaWiki\MainConfigNames;
use MediaWikiIntegrationTestCase;
/**
* @group Blocking
* @group Database
* @coversDefaultClass \MediaWiki\Block\BlockPermissionChecker
*/
class BlockPermissionCheckerTest extends MediaWikiIntegrationTestCase {
/**
* Moved from tests for old SpecialBlock::checkUnblockSelf
*
* @covers ::checkBlockPermissions
* @dataProvider provideCheckUnblockSelf
*/
public function testCheckUnblockSelf(
$blockedUser,
$blockPerformer,
$adjustPerformer,
$adjustTarget,
$sitewide,
$expectedResult,
$reason
) {
$this->overrideConfigValue( MainConfigNames::BlockDisablesLogin, false );
$this->setGroupPermissions( 'sysop', 'unblockself', true );
$this->setGroupPermissions( 'user', 'block', true );
// Getting errors about creating users in db in provider.
// Need to use mutable to ensure different named testusers.
$users = [
'u1' => $this->getMutableTestUser( 'sysop' )->getUser(),
'u2' => $this->getMutableTestUser( 'sysop' )->getUser(),
'u3' => $this->getMutableTestUser( 'sysop' )->getUser(),
'u4' => $this->getMutableTestUser( 'sysop' )->getUser(),
'nonsysop' => $this->getTestUser()->getUser()
];
foreach ( [ 'blockedUser', 'blockPerformer', 'adjustPerformer', 'adjustTarget' ] as $var ) {
$$var = $users[$$var];
}
$block = new DatabaseBlock( [
'address' => $blockedUser,
'by' => $blockPerformer,
'expiry' => 'infinity',
'sitewide' => $sitewide,
'enableAutoblock' => true,
] );
$this->getServiceContainer()->getDatabaseBlockStore()->insertBlock( $block );
$this->assertSame(
$expectedResult,
$this->getServiceContainer()
->getBlockPermissionCheckerFactory()
->newBlockPermissionChecker( $adjustTarget, $adjustPerformer )
->checkBlockPermissions(),
$reason
);
}
public static function provideCheckUnblockSelf() {
// 'blockedUser', 'blockPerformer', 'adjustPerformer', 'adjustTarget'
return [
[ 'u1', 'u2', 'u3', 'u4', 1, true, 'Unrelated users' ],
[ 'u1', 'u2', 'u1', 'u4', 1, 'ipbblocked', 'Block unrelated while blocked' ],
[ 'u1', 'u2', 'u1', 'u4', 0, true, 'Block unrelated while partial blocked' ],
[ 'u1', 'u2', 'u1', 'u1', 1, true, 'Has unblockself' ],
[ 'nonsysop', 'u2', 'nonsysop', 'nonsysop', 1, 'ipbnounblockself', 'no unblockself' ],
[
'nonsysop', 'nonsysop', 'nonsysop', 'nonsysop', 1, true,
'no unblockself but can de-selfblock'
],
[ 'u1', 'u2', 'u1', 'u2', 1, true, 'Can block user who blocked' ],
];
}
}
|