The main object cache is disabled during testing. Some integration tests need it though. This provides a clean way to enable it, to replace the hacks that were used so far. Note that we may want to enable the main cache during testing soon. When that happens, this method is still useful to disable the cache in certain tests, and to set a specific cache instance. Change-Id: I04ae1bf1b6b2c8f6310acd2edf89459d01a9c870
343 lines
10 KiB
PHP
343 lines
10 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Tests\Integration\Permissions;
|
|
|
|
use CentralIdLookup;
|
|
use HashBagOStuff;
|
|
use MediaWiki\Config\ServiceOptions;
|
|
use MediaWiki\MainConfigNames;
|
|
use MediaWiki\Permissions\RateLimiter;
|
|
use MediaWiki\Permissions\RateLimitSubject;
|
|
use MediaWiki\User\UserIdentity;
|
|
use MediaWiki\User\UserIdentityValue;
|
|
use MediaWikiIntegrationTestCase;
|
|
use MWTimestamp;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use Wikimedia\TestingAccessWrapper;
|
|
|
|
/**
|
|
* @coversDefaultClass \MediaWiki\Permissions\RateLimiter
|
|
*/
|
|
class RateLimiterTest extends MediaWikiIntegrationTestCase {
|
|
|
|
/**
|
|
* @return MockObject|CentralIdLookup
|
|
*/
|
|
private function getMockContralIdProvider() {
|
|
$mockCentralIdLookup = $this->createNoOpMock(
|
|
CentralIdLookup::class,
|
|
[ 'centralIdFromLocalUser', 'getProviderId' ]
|
|
);
|
|
|
|
$mockCentralIdLookup->method( 'centralIdFromLocalUser' )
|
|
->willReturnCallback( static function ( UserIdentity $user ) {
|
|
return $user->getId() % 100;
|
|
} );
|
|
$mockCentralIdLookup->method( 'getProviderId' )
|
|
->willReturn( 'test' );
|
|
|
|
return $mockCentralIdLookup;
|
|
}
|
|
|
|
/**
|
|
* @covers \MediaWiki\Permissions\RateLimiter::limit
|
|
*/
|
|
public function testPingLimiterGlobal() {
|
|
$limits = [
|
|
'edit' => [
|
|
'anon' => [ 1, 60 ],
|
|
],
|
|
'purge' => [
|
|
'ip' => [ 1, 60 ],
|
|
'subnet' => [ 1, 60 ],
|
|
],
|
|
'rollback' => [
|
|
'user' => [ 1, 60 ],
|
|
],
|
|
'move' => [
|
|
'user-global' => [ 1, 60 ],
|
|
],
|
|
'delete' => [
|
|
'ip-all' => [ 1, 60 ],
|
|
'subnet-all' => [ 1, 60 ],
|
|
],
|
|
];
|
|
|
|
// Set up a fake cache for storing limits
|
|
$cache = new HashBagOStuff( [ 'keyspace' => 'xwiki' ] );
|
|
|
|
$cacheAccess = TestingAccessWrapper::newFromObject( $cache );
|
|
$cacheAccess->keyspace = 'xwiki';
|
|
|
|
$limiter = $this->newRateLimiter( $limits, [], $cache );
|
|
|
|
// Set up some fake users
|
|
$anon1 = $this->newFakeAnon( '1.2.3.4' );
|
|
$anon2 = $this->newFakeAnon( '1.2.3.8' );
|
|
$anon3 = $this->newFakeAnon( '6.7.8.9' );
|
|
$anon4 = $this->newFakeAnon( '6.7.8.1' );
|
|
|
|
// The mock ContralIdProvider uses the local id MOD 10 as the global ID.
|
|
// So Frank has global ID 11, and Jane has global ID 56.
|
|
// Kara's global ID is 0, which means no global ID.
|
|
$frankX1 = $this->newFakeUser( 'Frank', '1.2.3.4', 111 );
|
|
$frankX2 = $this->newFakeUser( 'Frank', '1.2.3.8', 111 );
|
|
$frankY1 = $this->newFakeUser( 'Frank', '1.2.3.4', 211 );
|
|
$janeX1 = $this->newFakeUser( 'Jane', '1.2.3.4', 456 );
|
|
$janeX3 = $this->newFakeUser( 'Jane', '6.7.8.9', 456 );
|
|
$janeY1 = $this->newFakeUser( 'Jane', '1.2.3.4', 756 );
|
|
$karaX1 = $this->newFakeUser( 'Kara', '5.5.5.5', 100 );
|
|
$karaY1 = $this->newFakeUser( 'Kara', '5.5.5.5', 200 );
|
|
|
|
// Test limits on wiki X
|
|
$this->assertFalse( $limiter->limit( $anon1, 'edit' ), 'First anon edit' );
|
|
$this->assertTrue( $limiter->limit( $anon2, 'edit' ), 'Second anon edit' );
|
|
|
|
$this->assertFalse( $limiter->limit( $anon1, 'purge' ), 'Anon purge' );
|
|
$this->assertTrue( $limiter->limit( $anon1, 'purge' ), 'Anon purge via same IP' );
|
|
|
|
$this->assertFalse( $limiter->limit( $anon3, 'purge' ), 'Anon purge via different subnet' );
|
|
$this->assertTrue( $limiter->limit( $anon2, 'purge' ), 'Anon purge via same subnet' );
|
|
|
|
$this->assertFalse( $limiter->limit( $frankX1, 'rollback' ), 'First rollback' );
|
|
$this->assertTrue( $limiter->limit( $frankX2, 'rollback' ), 'Second rollback via different IP' );
|
|
$this->assertFalse( $limiter->limit( $janeX1, 'rollback' ), 'Rlbk by different user, same IP' );
|
|
|
|
$this->assertFalse( $limiter->limit( $frankX1, 'move' ), 'First move' );
|
|
$this->assertTrue( $limiter->limit( $frankX2, 'move' ), 'Second move via different IP' );
|
|
$this->assertFalse( $limiter->limit( $janeX1, 'move' ), 'Move by different user, same IP' );
|
|
$this->assertFalse( $limiter->limit( $karaX1, 'move' ), 'Move by another user' );
|
|
$this->assertTrue( $limiter->limit( $karaX1, 'move' ), 'Second move by another user' );
|
|
|
|
$this->assertFalse( $limiter->limit( $frankX1, 'delete' ), 'First delete' );
|
|
$this->assertTrue( $limiter->limit( $janeX1, 'delete' ), 'Delete via same IP' );
|
|
|
|
$this->assertTrue( $limiter->limit( $frankX2, 'delete' ), 'Delete via same subnet' );
|
|
$this->assertFalse( $limiter->limit( $janeX3, 'delete' ), 'Delete via different subnet' );
|
|
|
|
// Now test how limits carry over to wiki Y
|
|
$cacheAccess->keyspace = 'ywiki';
|
|
|
|
$this->assertFalse( $limiter->limit( $anon3, 'edit' ), 'Anon edit on wiki Y' );
|
|
$this->assertTrue( $limiter->limit( $anon4, 'purge' ), 'Anon purge on wiki Y, same subnet' );
|
|
$this->assertFalse( $limiter->limit( $frankY1, 'rollback' ), 'Rollback on wiki Y, same name' );
|
|
$this->assertTrue( $limiter->limit( $frankY1, 'move' ), 'Move on wiki Y, same name' );
|
|
$this->assertTrue( $limiter->limit( $janeY1, 'move' ), 'Move on wiki Y, different user' );
|
|
$this->assertTrue( $limiter->limit( $frankY1, 'delete' ), 'Delete on wiki Y, same IP' );
|
|
|
|
// For a user without a global ID, user-global acts as a local restriction
|
|
$this->assertFalse( $limiter->limit( $karaY1, 'move' ), 'Move by another user' );
|
|
$this->assertTrue( $limiter->limit( $karaY1, 'move' ), 'Second move by another user' );
|
|
}
|
|
|
|
/**
|
|
* @covers \MediaWiki\Permissions\RateLimiter::limit
|
|
*/
|
|
public function testPingLimiterWithStaleCache() {
|
|
$limits = [
|
|
'edit' => [
|
|
'user' => [ 1, 60 ],
|
|
],
|
|
];
|
|
|
|
$bagTime = 1600000000.0;
|
|
$appTime = 1600000000;
|
|
$bag = new HashBagOStuff();
|
|
|
|
$this->setMainCache( $bag );
|
|
|
|
$bag->setMockTime( $bagTime ); // this is a reference!
|
|
MWTimestamp::setFakeTime( static function () use ( &$appTime ) {
|
|
return (int)$appTime;
|
|
} );
|
|
|
|
$user = $this->newFakeUser( 'Frank', '1.2.3.4', 111 );
|
|
$limiter = $this->newRateLimiter( $limits, [], $bag );
|
|
|
|
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'limit not reached' );
|
|
$this->assertTrue( $limiter->limit( $user, 'edit' ), 'limit reached' );
|
|
|
|
// Make it so that rate limits are expired according to MWTimestamp::time(),
|
|
// but not according to $cache->getCurrentTime(), emulating the conditions
|
|
// that trigger T246991.
|
|
$bagTime += 10;
|
|
$appTime += 100;
|
|
|
|
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'limit expired' );
|
|
$this->assertTrue( $limiter->limit( $user, 'edit' ), 'limit functional after expiry' );
|
|
}
|
|
|
|
/**
|
|
* @covers \MediaWiki\Permissions\RateLimiter::limit
|
|
*/
|
|
public function testPingLimiterRate() {
|
|
$limits = [
|
|
'edit' => [
|
|
'user' => [ 3, 60 ],
|
|
],
|
|
];
|
|
|
|
$fakeTime = 1600000000;
|
|
$cache = new HashBagOStuff();
|
|
|
|
$this->setMainCache( $cache );
|
|
|
|
$cache->setMockTime( $fakeTime ); // this is a reference!
|
|
MWTimestamp::setFakeTime( static function () use ( &$fakeTime ) {
|
|
return (int)$fakeTime;
|
|
} );
|
|
|
|
$user = $this->newFakeUser( 'Frank', '1.2.3.4', 111 );
|
|
$limiter = $this->newRateLimiter( $limits, [], $cache );
|
|
|
|
// The limit is 3 per 60 second. Do 5 edits at an emulated 50 second interval.
|
|
// They should all pass. This tests that the counter doesn't just keeps increasing
|
|
// but gets reset in an appropriate way.
|
|
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'first ping should pass' );
|
|
|
|
$fakeTime += 50;
|
|
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'second ping should pass' );
|
|
|
|
$fakeTime += 50;
|
|
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'third ping should pass' );
|
|
|
|
$fakeTime += 50;
|
|
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'fourth ping should pass' );
|
|
|
|
$fakeTime += 50;
|
|
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'fifth ping should pass' );
|
|
}
|
|
|
|
/**
|
|
* @covers \MediaWiki\Permissions\RateLimiter::limit
|
|
*/
|
|
public function testPingLimiterHook() {
|
|
$limits = [
|
|
'edit' => [
|
|
'user' => [ 3, 60 ],
|
|
],
|
|
];
|
|
|
|
$user = $this->newFakeUser( 'Frank', '1.2.3.4', 111 );
|
|
$limiter = $this->newRateLimiter( $limits, [] );
|
|
|
|
// Hook leaves $result false
|
|
$this->setTemporaryHook(
|
|
'PingLimiter',
|
|
static function ( &$user, $action, &$result, $incrBy ) {
|
|
return false;
|
|
}
|
|
);
|
|
$this->assertFalse(
|
|
$limiter->limit( $user, 'edit' ),
|
|
'Hooks that just return false leave $result false'
|
|
);
|
|
$this->removeTemporaryHook( 'PingLimiter' );
|
|
|
|
// Hook sets $result to true
|
|
$this->setTemporaryHook(
|
|
'PingLimiter',
|
|
static function ( &$user, $action, &$result, $incrBy ) {
|
|
$result = true;
|
|
return false;
|
|
}
|
|
);
|
|
$this->assertTrue(
|
|
$limiter->limit( $user, 'edit' ),
|
|
'Hooks can set $result to true'
|
|
);
|
|
$this->removeTemporaryHook( 'PingLimiter' );
|
|
|
|
// Unknown action
|
|
$this->assertFalse(
|
|
$limiter->limit( $user, 'FakeActionWithNoRateLimit' ),
|
|
'Actions with no rate limit set do not trip the rate limiter'
|
|
);
|
|
}
|
|
|
|
public function provideIsPingLimitable() {
|
|
$user = new UserIdentityValue( 123, 'Foo' );
|
|
|
|
yield 'IP not excluded'
|
|
=> [ [], new RateLimitSubject( $user, '1.2.3.4', [] ), false ];
|
|
|
|
yield 'IP excluded'
|
|
=> [ [ '1.2.3.4' ], new RateLimitSubject( $user, '1.2.3.4', [] ), true ];
|
|
|
|
yield 'IP subnet excluded'
|
|
=> [ [ '1.2.3.0/8' ], new RateLimitSubject( $user, '1.2.3.4', [] ), true ];
|
|
|
|
$flags = [ RateLimitSubject::EXEMPT => true ];
|
|
yield 'noratelimit right'
|
|
=> [ [], new RateLimitSubject( $user, '1.2.3.4', $flags ), true ];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideIsPingLimitable
|
|
* @covers \MediaWiki\Permissions\RateLimiter::isExempt
|
|
*
|
|
* @param array $rateLimitExcludeIps
|
|
* @param RateLimitSubject $subject
|
|
* @param bool $expected
|
|
*/
|
|
public function testIsExempt(
|
|
array $rateLimitExcludeIps,
|
|
RateLimitSubject $subject,
|
|
bool $expected
|
|
) {
|
|
$limiter = $this->newRateLimiter( [], $rateLimitExcludeIps );
|
|
|
|
$this->assertSame( $expected, $limiter->isExempt( $subject ) );
|
|
}
|
|
|
|
private function newFakeAnon( string $ip ) {
|
|
return new RateLimitSubject(
|
|
new UserIdentityValue( 0, $ip ),
|
|
$ip,
|
|
[ RateLimitSubject::NEWBIE => true ]
|
|
);
|
|
}
|
|
|
|
private function newFakeUser( string $name, string $ip, int $id ) {
|
|
return new RateLimitSubject(
|
|
new UserIdentityValue( $id, $name ),
|
|
$ip,
|
|
[]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param array $limits
|
|
* @param array $excludedIPs
|
|
* @param HashBagOStuff|null $cache
|
|
*
|
|
* @return RateLimiter
|
|
* @throws \Exception
|
|
*/
|
|
protected function newRateLimiter(
|
|
array $limits,
|
|
array $excludedIPs,
|
|
HashBagOStuff $cache = null
|
|
): RateLimiter {
|
|
if ( $cache === null ) {
|
|
$cache = new HashBagOStuff();
|
|
}
|
|
|
|
$services = $this->getServiceContainer();
|
|
|
|
$limiter = new RateLimiter(
|
|
new ServiceOptions( RateLimiter::CONSTRUCTOR_OPTIONS, [
|
|
MainConfigNames::RateLimits => $limits,
|
|
MainConfigNames::RateLimitsExcludedIPs => $excludedIPs,
|
|
] ),
|
|
$cache,
|
|
$this->getMockContralIdProvider(),
|
|
$services->getUserFactory(),
|
|
$services->getUserGroupManager(),
|
|
$services->getHookContainer()
|
|
);
|
|
|
|
return $limiter;
|
|
}
|
|
|
|
}
|