2020-12-09 15:51:59 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use MediaWiki\Extension\AbuseFilter\BlockAutopromoteStore;
|
|
|
|
use MediaWiki\Extension\AbuseFilter\Consequences\Consequence\BlockAutopromote;
|
|
|
|
use MediaWiki\Extension\AbuseFilter\Consequences\Parameters;
|
|
|
|
use MediaWiki\Extension\AbuseFilter\Filter\Filter;
|
|
|
|
use MediaWiki\Linker\LinkTarget;
|
|
|
|
use MediaWiki\User\UserIdentityValue;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @coversDefaultClass \MediaWiki\Extension\AbuseFilter\Consequences\Consequence\BlockAutopromote
|
|
|
|
* @covers ::__construct
|
|
|
|
* @todo with MessageLocalizer injected, this can be a unit test
|
|
|
|
*/
|
|
|
|
class BlockAutopromoteTest extends MediaWikiIntegrationTestCase {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers ::execute
|
|
|
|
*/
|
|
|
|
public function testExecute_anonymous() {
|
|
|
|
$params = new Parameters(
|
|
|
|
$this->createMock( Filter::class ),
|
|
|
|
false,
|
|
|
|
new UserIdentityValue( 0, 'Anonymous user', 1 ),
|
|
|
|
$this->createMock( LinkTarget::class ),
|
|
|
|
'edit'
|
|
|
|
);
|
|
|
|
$blockAutopromoteStore = $this->createMock( BlockAutopromoteStore::class );
|
|
|
|
$blockAutopromoteStore->expects( $this->never() )
|
|
|
|
->method( 'blockAutoPromote' );
|
|
|
|
$blockAutopromote = new BlockAutopromote(
|
|
|
|
$params,
|
|
|
|
5 * 86400,
|
|
|
|
$blockAutopromoteStore
|
|
|
|
);
|
|
|
|
$this->assertFalse( $blockAutopromote->execute() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers ::execute
|
|
|
|
* @dataProvider provideExecute
|
|
|
|
*/
|
|
|
|
public function testExecute( bool $success ) {
|
2020-11-29 15:18:32 +00:00
|
|
|
$target = new UserIdentityValue( 1, 'A new user', 2 );
|
2020-12-09 15:51:59 +00:00
|
|
|
$params = new Parameters(
|
|
|
|
$this->createMock( Filter::class ),
|
|
|
|
false,
|
2020-11-29 15:18:32 +00:00
|
|
|
$target,
|
2020-12-09 15:51:59 +00:00
|
|
|
$this->createMock( LinkTarget::class ),
|
|
|
|
'edit'
|
|
|
|
);
|
2020-11-29 15:18:32 +00:00
|
|
|
$duration = 5 * 86400;
|
2020-12-09 15:51:59 +00:00
|
|
|
$blockAutopromoteStore = $this->createMock( BlockAutopromoteStore::class );
|
|
|
|
$blockAutopromoteStore->expects( $this->once() )
|
|
|
|
->method( 'blockAutoPromote' )
|
2020-11-29 15:18:32 +00:00
|
|
|
->with( $target, $this->anything(), $duration )
|
2020-12-09 15:51:59 +00:00
|
|
|
->willReturn( $success );
|
2020-11-29 15:18:32 +00:00
|
|
|
$blockAutopromote = new BlockAutopromote( $params, $duration, $blockAutopromoteStore );
|
2020-12-09 15:51:59 +00:00
|
|
|
$this->assertSame( $success, $blockAutopromote->execute() );
|
|
|
|
}
|
|
|
|
|
|
|
|
public function provideExecute() : array {
|
|
|
|
return [
|
|
|
|
[ true ],
|
|
|
|
[ false ]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2020-11-29 15:18:32 +00:00
|
|
|
/**
|
|
|
|
* @covers ::revert
|
|
|
|
* @dataProvider provideExecute
|
|
|
|
*/
|
|
|
|
public function testRevert( bool $success ) {
|
|
|
|
$target = new UserIdentityValue( 1, 'A new user', 2 );
|
|
|
|
$performer = new UserIdentityValue( 2, 'Reverting user', 3 );
|
|
|
|
$params = new Parameters(
|
|
|
|
$this->createMock( Filter::class ),
|
|
|
|
false,
|
|
|
|
$target,
|
|
|
|
$this->createMock( LinkTarget::class ),
|
|
|
|
'edit'
|
|
|
|
);
|
|
|
|
$blockAutopromoteStore = $this->createMock( BlockAutopromoteStore::class );
|
|
|
|
$blockAutopromoteStore->expects( $this->once() )
|
|
|
|
->method( 'unblockAutoPromote' )
|
|
|
|
->with( $target, $performer, $this->anything() )
|
|
|
|
->willReturn( $success );
|
|
|
|
$blockAutopromote = new BlockAutopromote( $params, 0, $blockAutopromoteStore );
|
|
|
|
$this->assertSame( $success, $blockAutopromote->revert( [], $performer, 'reason' ) );
|
|
|
|
}
|
|
|
|
|
2020-12-09 15:51:59 +00:00
|
|
|
}
|