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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
|
<?php
namespace MediaWiki\Tests\Unit\Permissions;
use MediaWiki\Block\Block;
use MediaWiki\Block\BlockErrorFormatter;
use MediaWiki\Block\SystemBlock;
use MediaWiki\Context\IContextSource;
use MediaWiki\Language\Language;
use MediaWiki\Message\Message;
use MediaWiki\Permissions\Authority;
use MediaWiki\Permissions\PermissionManager;
use MediaWiki\Permissions\PermissionStatus;
use MediaWiki\Permissions\RateLimiter;
use MediaWiki\Permissions\RateLimitSubject;
use MediaWiki\Permissions\SimpleAuthority;
use MediaWiki\Permissions\UltimateAuthority;
use MediaWiki\Permissions\UserAuthority;
use MediaWiki\Request\FauxRequest;
use MediaWiki\Request\WebRequest;
use MediaWiki\User\User;
use MediaWiki\User\UserIdentity;
use MediaWiki\User\UserIdentityValue;
use PHPUnit\Framework\MockObject\MockObject;
use StatusValue;
/**
* Various useful Authority mocks.
* @stable to use (since 1.37)
*/
trait MockAuthorityTrait {
/**
* Create mock ultimate Authority for anon user.
*
* @return Authority
*/
private function mockAnonUltimateAuthority(): Authority {
return new UltimateAuthority( new UserIdentityValue( 0, '127.0.0.1' ) );
}
/**
* Create mock ultimate Authority for a temp user.
*
* @return Authority
*/
private function mockTempUltimateAuthority(): Authority {
return new UltimateAuthority( new UserIdentityValue( 42, '~2024-1' ), true );
}
/**
* Create mock ultimate Authority for registered user.
*
* @return Authority
*/
private function mockRegisteredUltimateAuthority(): Authority {
return new UltimateAuthority( new UserIdentityValue( 9999, 'Petr' ) );
}
/**
* Create mock Authority for anon user with no permissions.
*
* @return Authority
*/
private function mockAnonNullAuthority(): Authority {
return new SimpleAuthority( new UserIdentityValue( 0, '127.0.0.1' ), [] );
}
/**
* Create mock Authority for a temp user with no permissions.
*
* @return Authority
*/
private function mockTempNullAuthority(): Authority {
return new SimpleAuthority( new UserIdentityValue( 42, '~2024-1' ), [], true );
}
/**
* Create mock Authority for a registered user with no permissions.
*
* @return Authority
*/
private function mockRegisteredNullAuthority(): Authority {
return new SimpleAuthority( new UserIdentityValue( 9999, 'Petr' ), [] );
}
/**
* Create a mock Authority for anon user with $permissions.
*
* @param array $permissions
* @return Authority
*/
private function mockAnonAuthorityWithPermissions( array $permissions ): Authority {
return new SimpleAuthority( new UserIdentityValue( 0, '127.0.0.1' ), $permissions );
}
/**
* Create a mock Authority for a temp user with $permissions.
*
* @param array $permissions
* @return Authority
*/
private function mockTempAuthorityWithPermissions( array $permissions ): Authority {
return new SimpleAuthority( new UserIdentityValue( 42, '~2024-1' ), $permissions, true );
}
/**
* Create a mock Authority for a registered user with $permissions.
*
* @param array $permissions
* @return Authority
*/
private function mockRegisteredAuthorityWithPermissions( array $permissions ): Authority {
return new SimpleAuthority( new UserIdentityValue( 9999, 'Petr' ), $permissions );
}
/**
* Create a mock Authority for a $user with $permissions.
*
* @param UserIdentity $user
* @param array $permissions
* @param bool $isTemp
* @return Authority
*/
private function mockUserAuthorityWithPermissions(
UserIdentity $user,
array $permissions,
bool $isTemp = false
): Authority {
return new SimpleAuthority( $user, $permissions, $isTemp );
}
/**
* Create a mock Authority for $user with $block and $permissions.
*
* @param UserIdentity $user
* @param Block $block
* @param array $permissions
* @param bool $isTemp
*
* @return Authority
*/
private function mockUserAuthorityWithBlock(
UserIdentity $user,
Block $block,
array $permissions = [],
bool $isTemp = false
): Authority {
return $this->mockAuthority(
$user,
static function ( $permission ) use ( $permissions ) {
return in_array( $permission, $permissions );
},
$block,
$isTemp
);
}
/**
* Create a mock Authority for an anon user with all but $permissions
* @param array $permissions
* @return Authority
*/
private function mockAnonAuthorityWithoutPermissions( array $permissions ): Authority {
return $this->mockUserAuthorityWithoutPermissions(
new UserIdentityValue( 0, '127.0.0.1' ),
$permissions
);
}
/**
* Create a mock Authority for a temp user with all but $permissions
* @param array $permissions
* @return Authority
*/
private function mockTempAuthorityWithoutPermissions( array $permissions ): Authority {
return $this->mockUserAuthorityWithoutPermissions(
new UserIdentityValue( 42, '~2024-1' ),
$permissions,
true
);
}
/**
* Create a mock Authority for a registered user with all but $permissions
* @param array $permissions
* @return Authority
*/
private function mockRegisteredAuthorityWithoutPermissions( array $permissions ): Authority {
return $this->mockUserAuthorityWithoutPermissions(
new UserIdentityValue( 9999, 'Petr' ),
$permissions
);
}
/**
* Create a mock Authority for a $user with all but $permissions
* @param UserIdentity $user
* @param array $permissions
* @param bool $isTemp
* @return Authority
*/
private function mockUserAuthorityWithoutPermissions(
UserIdentity $user,
array $permissions,
bool $isTemp = false
): Authority {
return $this->mockAuthority(
$user,
static function ( $permission ) use ( $permissions ) {
return !in_array( $permission, $permissions );
},
null,
$isTemp
);
}
/**
* Create mock Authority for anon user where permissions are determined by $callback.
*
* @param callable $permissionCallback
* @return Authority
*/
private function mockAnonAuthority( callable $permissionCallback ): Authority {
return $this->mockAuthority(
new UserIdentityValue( 0, '127.0.0.1' ),
$permissionCallback
);
}
/**
* Create mock Authority for a temp user where permissions are determined by $callback.
*
* @param callable $permissionCallback
* @return Authority
*/
private function mockTempAuthority( callable $permissionCallback ): Authority {
return $this->mockAuthority(
new UserIdentityValue( 42, '~2024-1' ),
$permissionCallback,
null,
true
);
}
/**
* Create mock Authority for registered user where permissions are determined by $callback.
*
* @param callable $permissionCallback
* @return Authority
*/
private function mockRegisteredAuthority( callable $permissionCallback ): Authority {
return $this->mockAuthority(
new UserIdentityValue( 9999, 'Petr' ),
$permissionCallback
);
}
/**
* Create mock Authority for $user where permissions are determined by $callback.
*
* @param UserIdentity $user
* @param callable $permissionCallback ( string $permission, PageIdentity $page = null )
* @param Block|null $block
* @param bool $isTemp
*
* @return Authority
*/
private function mockAuthority(
UserIdentity $user,
callable $permissionCallback,
?Block $block = null,
bool $isTemp = false
): Authority {
$mock = $this->createMock( Authority::class );
$mock->method( 'getUser' )->willReturn( $user );
$methods = [ 'isAllowed', 'probablyCan', 'definitelyCan', 'authorizeRead', 'authorizeWrite' ];
foreach ( $methods as $method ) {
$mock->method( $method )->willReturnCallback( $permissionCallback );
}
$mock->method( 'isAllowedAny' )
->willReturnCallback( static function ( ...$permissions ) use ( $permissionCallback ) {
foreach ( $permissions as $permission ) {
if ( $permissionCallback( $permission ) ) {
return true;
}
}
return false;
} );
$mock->method( 'isAllowedAll' )
->willReturnCallback( static function ( ...$permissions ) use ( $permissionCallback ) {
foreach ( $permissions as $permission ) {
if ( !$permissionCallback( $permission ) ) {
return false;
}
}
return true;
} );
$mock->method( 'getBlock' )->willReturn( $block );
$mock->method( 'isTemp' )->willReturn( $isTemp );
$mock->method( 'isNamed' )->willReturn( $user->isRegistered() && !$isTemp );
return $mock;
}
/** @return string[] Some dummy message parameters to test error message formatting. */
private function getFakeBlockMessageParams(): array {
return [
'[[User:Blocker|Blocker]]',
'Block reason that can contain {{templates}}',
'192.168.0.1',
'Blocker',
];
}
/**
* @param bool $limited
* @return RateLimiter
*/
private function newRateLimiter( $limited = false ): RateLimiter {
/** @var RateLimiter&MockObject $rateLimiter */
$rateLimiter = $this->createNoOpMock(
RateLimiter::class,
[ 'limit', 'isLimitable' ]
);
$rateLimiter->method( 'limit' )->willReturn( $limited );
$rateLimiter->method( 'isLimitable' )->willReturn( true );
return $rateLimiter;
}
/**
* @param string[] $permissions
* @return PermissionManager
*/
private function newPermissionsManager( array $permissions ): PermissionManager {
/** @var PermissionManager&MockObject $permissionManager */
$permissionManager = $this->createNoOpMock(
PermissionManager::class,
[
'userHasRight',
'userHasAnyRight',
'userHasAllRights',
'userCan',
'getPermissionStatus',
'getPermissionErrors',
'isBlockedFrom',
'getApplicableBlock',
'newFatalPermissionDeniedStatus',
]
);
$permissionManager->method( 'userHasRight' )->willReturnCallback(
static function ( $user, $permission ) use ( $permissions ) {
return in_array( $permission, $permissions );
}
);
$permissionManager->method( 'userHasAnyRight' )->willReturnCallback(
static function ( $user, ...$actions ) use ( $permissions ) {
return array_diff( $actions, $permissions ) != $actions;
}
);
$permissionManager->method( 'userHasAllRights' )->willReturnCallback(
static function ( $user, ...$actions ) use ( $permissions ) {
return !array_diff( $actions, $permissions );
}
);
$permissionManager->method( 'userCan' )->willReturnCallback(
static function ( $permission, $user ) use ( $permissionManager ) {
return $permissionManager->userHasRight( $user, $permission );
}
);
$fakeBlockMessageParams = $this->getFakeBlockMessageParams();
// If the user has a block, the block applies to all actions except for 'read'
$permissionManager->method( 'getPermissionStatus' )->willReturnCallback(
static function ( $permission, $user, $target ) use ( $permissionManager, $fakeBlockMessageParams ) {
$status = PermissionStatus::newEmpty();
if ( !$permissionManager->userCan( $permission, $user, $target ) ) {
$status->fatal( 'permissionserrors' );
}
if ( $user->getBlock() && $permission !== 'read' ) {
$status->fatal( 'blockedtext-partial', ...$fakeBlockMessageParams );
}
return $status;
}
);
$permissionManager->method( 'getPermissionErrors' )->willReturnCallback(
static function ( $permission, $user, $target ) use ( $permissionManager, $fakeBlockMessageParams ) {
return $permissionManager
->getPermissionStatus( $permission, $user, $target )
->toLegacyErrorArray();
}
);
$permissionManager->method( 'newFatalPermissionDeniedStatus' )->willReturnCallback(
static function ( $permission, $context ) use ( $permissionManager ) {
return StatusValue::newFatal( 'permissionserrors' );
}
);
// If the page's title is "Forbidden", will return a SystemBlock. Likewise,
// if the action is 'blocked', this will return a SystemBlock.
$permissionManager->method( 'getApplicableBlock' )->willReturnCallback(
static function ( $action, User $user, $rigor, $page ) {
if ( $page && $page->getDBkey() === 'Forbidden' ) {
return new SystemBlock();
}
if ( $action === 'blocked' ) {
return new SystemBlock();
}
return null;
}
);
$permissionManager->method( 'isBlockedFrom' )->willReturnCallback(
static function ( User $user, $page ) {
return $page->getDBkey() === 'Forbidden';
}
);
return $permissionManager;
}
private function newUser( ?Block $block = null, bool $isTemp = false ): User {
/** @var User&MockObject $actor */
$actor = $this->createNoOpMock( User::class, [ 'getBlock', 'isNewbie', 'toRateLimitSubject' ] );
$actor->method( 'getBlock' )->willReturn( $block );
$actor->method( 'isNewbie' )->willReturn( false );
$actor->method( 'isTemp' )->willReturn( $isTemp );
$actor->method( 'isNamed' )->willReturn( !$isTemp );
$subject = new RateLimitSubject( $actor, '::1', [] );
$actor->method( 'toRateLimitSubject' )->willReturn( $subject );
return $actor;
}
private function newBlockErrorFormatter(): BlockErrorFormatter {
$blockErrorFormatter = $this->createNoOpMock( BlockErrorFormatter::class, [ 'getMessages' ] );
$blockErrorFormatter->method( 'getMessages' )->willReturn( [ new Message( 'blocked' ) ] );
return $blockErrorFormatter;
}
private function newContext(): IContextSource {
$language = $this->createNoOpMock( Language::class, [ 'getCode' ] );
$language->method( 'getCode' )->willReturn( 'en' );
$context = $this->createNoOpMock( IContextSource::class, [ 'getLanguage' ] );
$context->method( 'getLanguage' )->willReturn( $language );
return $context;
}
private function newRequest(): WebRequest {
$request = new FauxRequest();
$request->setIP( '1.2.3.4' );
return $request;
}
private function newUserAuthority( array $options = [] ): UserAuthority {
$permissionManager = $options['permissionManager']
?? $this->newPermissionsManager( $options['permissions'] ?? [] );
$rateLimiter = $options['rateLimiter']
?? $this->newRateLimiter( $options['limited'] ?? false );
$blockErrorFormatter = $options['blockErrorFormatter']
?? $this->newBlockErrorFormatter();
return new UserAuthority(
$options['actor'] ?? $this->newUser(),
$options['request'] ?? $this->newRequest(),
$options['context'] ?? $this->newContext(),
$permissionManager,
$rateLimiter,
$blockErrorFormatter
);
}
}
|