value ] to build a variable holder with * @param ?array $expectedValues Null to use $variables * @covers \MediaWiki\Extension\AbuseFilter\Variables\VariablesBlobStore * @covers \MediaWiki\Extension\AbuseFilter\Variables\VariablesManager::dumpAllVars * @dataProvider provideVariables */ public function testVarDump( array $variables, array $expectedValues = null ) { $varBlobStore = AbuseFilterServices::getVariablesBlobStore(); $holder = AbuseFilterVariableHolder::newFromArray( $variables ); $insertID = $varBlobStore->storeVarDump( $holder ); $dump = $varBlobStore->loadVarDump( $insertID ); $expected = $expectedValues ? AbuseFilterVariableHolder::newFromArray( $expectedValues ) : $holder; $this->assertEquals( $expected, $dump, 'The var dump is not saved correctly' ); } /** * Data provider for testVarDump * * @return array */ public function provideVariables() { return [ 'Only basic variables' => [ [ 'action' => 'edit', 'old_wikitext' => 'Old text', 'new_wikitext' => 'New text' ] ], 'Normal case' => [ [ 'action' => 'edit', 'old_wikitext' => 'Old text', 'new_wikitext' => 'New text', 'user_editcount' => 15, 'added_lines' => [ 'Foo', '', 'Bar' ] ] ], 'Deprecated variables' => [ [ 'action' => 'edit', 'old_wikitext' => 'Old text', 'new_wikitext' => 'New text', 'article_articleid' => 11745, 'article_first_contributor' => 'Good guy' ], [ 'action' => 'edit', 'old_wikitext' => 'Old text', 'new_wikitext' => 'New text', 'page_id' => 11745, 'page_first_contributor' => 'Good guy' ] ], 'Move action' => [ [ 'action' => 'move', 'old_wikitext' => 'Old text', 'new_wikitext' => 'New text', 'all_links' => [ 'https://en.wikipedia.org' ], 'moved_to_id' => 156, 'moved_to_prefixedtitle' => 'MediaWiki:Foobar.js', 'new_content_model' => CONTENT_MODEL_JAVASCRIPT ] ], 'Delete action' => [ [ 'old_wikitext' => 'Old text', 'new_wikitext' => 'New text', 'timestamp' => 1546000295, 'action' => 'delete', 'page_namespace' => 114 ] ], 'Disabled vars' => [ [ 'action' => 'edit', 'old_wikitext' => 'Old text', 'new_wikitext' => 'New text', 'old_html' => 'Foo bar lol.', 'old_text' => 'Foobar' ] ], 'Account creation' => [ [ 'action' => 'createaccount', 'accountname' => 'XXX' ] ] ]; } /** * Test for the wiki_name variable. * * @covers \MediaWiki\Extension\AbuseFilter\Variables\LazyVariableComputer::compute */ public function testWikiNameVar() { $name = 'foo'; $prefix = 'bar'; $this->setMwGlobals( [ 'wgDBname' => $name, 'wgDBprefix' => $prefix ] ); $vars = new AbuseFilterVariableHolder(); $vars->setLazyLoadVar( 'wiki_name', 'get-wiki-name', [] ); $manager = AbuseFilterServices::getVariablesManager(); $this->assertSame( "$name-$prefix", $manager->getVar( $vars, 'wiki_name' )->toNative() ); } /** * Test for the wiki_language variable. * * @covers \MediaWiki\Extension\AbuseFilter\Variables\LazyVariableComputer::compute */ public function testWikiLanguageVar() { $fakeCode = 'foobar'; $fakeLang = $this->getMockBuilder( Language::class ) ->setMethods( [ 'getCode' ] ) ->getMock(); $fakeLang->method( 'getCode' )->willReturn( $fakeCode ); $this->setService( 'ContentLanguage', $fakeLang ); $vars = new AbuseFilterVariableHolder(); $vars->setLazyLoadVar( 'wiki_language', 'get-wiki-language', [] ); $manager = AbuseFilterServices::getVariablesManager(); $this->assertSame( $fakeCode, $manager->getVar( $vars, 'wiki_language' )->toNative() ); } /** * @param RevisionRecord $revRec * @param bool $privileged * @param bool $expected * @dataProvider provideUserCanViewRev * @covers AbuseFilter::userCanViewRev */ public function testUserCanViewRev( RevisionRecord $revRec, bool $privileged, bool $expected ) { $user = $privileged ? $this->getTestUser( 'suppress' )->getUser() : $this->getTestUser()->getUser(); $this->assertSame( $expected, AbuseFilter::userCanViewRev( $revRec, $user ) ); } /** * @return Generator|array */ public function provideUserCanViewRev() { $title = Title::newFromText( __METHOD__ ); $visible = new MutableRevisionRecord( $title ); yield 'Visible, not privileged' => [ $visible, false, true ]; yield 'Visible, privileged' => [ $visible, true, true ]; $userSup = new MutableRevisionRecord( $title ); $userSup->setVisibility( RevisionRecord::SUPPRESSED_USER ); yield 'User suppressed, not privileged' => [ $userSup, false, false ]; yield 'User suppressed, privileged' => [ $userSup, true, true ]; $allSupp = new MutableRevisionRecord( $title ); $allSupp->setVisibility( RevisionRecord::SUPPRESSED_ALL ); yield 'All suppressed, not privileged' => [ $allSupp, false, false ]; yield 'All suppressed, privileged' => [ $allSupp, true, true ]; } /** * @param array $rawConsequences A raw, unfiltered list of consequences * @param array $expectedKeys * @param Title $title * @covers \MediaWiki\Extension\AbuseFilter\Consequences\ConsequencesExecutor * @dataProvider provideConsequences */ public function testGetFilteredConsequences( $rawConsequences, $expectedKeys, Title $title ) { $locallyDisabledActions = [ 'flag' => false, 'throttle' => false, 'warn' => false, 'disallow' => false, 'blockautopromote' => true, 'block' => true, 'rangeblock' => true, 'degroup' => true, 'tag' => false ]; $options = $this->createMock( ServiceOptions::class ); $options->method( 'get' ) ->with( 'AbuseFilterLocallyDisabledGlobalActions' ) ->willReturn( $locallyDisabledActions ); $fakeFilter = $this->createMock( Filter::class ); $fakeFilter->method( 'getName' )->willReturn( 'unused name' ); $fakeFilter->method( 'getID' )->willReturn( 1 ); $fakeLookup = $this->createMock( FilterLookup::class ); $fakeLookup->method( 'getFilter' )->willReturn( $fakeFilter ); $this->setService( FilterLookup::SERVICE_NAME, $fakeLookup ); $user = $this->getTestUser()->getUser(); $vars = AbuseFilterVariableHolder::newFromArray( [ 'action' => 'edit' ] ); $executor = new ConsequencesExecutor( $this->createMock( ConsequencesLookup::class ), AbuseFilterServices::getConsequencesFactory(), AbuseFilterServices::getConsequencesRegistry(), $fakeLookup, new NullLogger, $options, $user, $title, $vars ); $actual = $executor->getFilteredConsequences( $executor->replaceArraysWithConsequences( $rawConsequences ) ); $actualKeys = []; foreach ( $actual as $filter => $actions ) { $actualKeys[$filter] = array_keys( $actions ); } $this->assertEquals( $expectedKeys, $actualKeys ); } /** * Data provider for testGetFilteredConsequences * @todo Split these * @return array */ public function provideConsequences() { $pageName = 'TestFilteredConsequences'; $title = $this->createMock( Title::class ); $title->method( 'getPrefixedText' )->willReturn( $pageName ); return [ 'warn and throttle exclude other actions' => [ [ 2 => [ 'warn' => [ 'abusefilter-warning' ], 'tag' => [ 'some tag' ] ], 13 => [ 'throttle' => [ '13', '14,15', 'user' ], 'disallow' => [] ], 168 => [ 'degroup' => [] ] ], [ 2 => [ 'warn' ], 13 => [ 'throttle' ], 168 => [ 'degroup' ] ], $title ], 'warn excludes other actions, block excludes disallow' => [ [ 3 => [ 'tag' => [ 'some tag' ] ], 'global-2' => [ 'warn' => [ 'abusefilter-beautiful-warning' ], 'degroup' => [] ], 4 => [ 'disallow' => [], 'block' => [ 'blocktalk', '15 minutes', 'indefinite' ] ] ], [ 3 => [ 'tag' ], 'global-2' => [ 'warn' ], 4 => [ 'block' ] ], $title ], 'some global actions are disabled locally, the longest block is chosen' => [ [ 'global-1' => [ 'blockautopromote' => [], 'block' => [ 'blocktalk', 'indefinite', 'indefinite' ] ], 1 => [ 'block' => [ 'blocktalk', '4 hours', '4 hours' ] ], 2 => [ 'degroup' => [], 'block' => [ 'blocktalk', 'infinity', 'never' ] ] ], [ 'global-1' => [], 1 => [], 2 => [ 'degroup', 'block' ] ], $title ], ]; } }