MediaWiki REL1_33
CategoryMembershipChangeJobTest.php
Go to the documentation of this file.
1<?php
2
13
14 const TITLE_STRING = 'UTCatChangeJobPage';
15
19 private $title;
20
21 public function setUp() {
22 parent::setUp();
23 $this->setMwGlobals( 'wgRCWatchCategoryMembership', true );
24 $this->setContentLang( 'qqx' );
25 }
26
27 public function addDBDataOnce() {
28 parent::addDBDataOnce();
29 $insertResult = $this->insertPage( self::TITLE_STRING, 'UT Content' );
30 $this->title = $insertResult['title'];
31 }
32
33 private function runJobs() {
34 JobQueueGroup::destroySingletons();
35 $jobs = new RunJobs;
36 $jobs->loadParamsAndArgs( null, [ 'quiet' => true ], null );
37 $jobs->execute();
38 }
39
45 private function editPageText( $text ) {
46 $page = WikiPage::factory( $this->title );
47 $editResult = $page->doEditContent(
48 ContentHandler::makeContent( $text, $this->title ),
49 __METHOD__
50 );
52 $revision = $editResult->value['revision'];
53 $this->runJobs();
54
55 return $revision->getId();
56 }
57
63 private function getCategorizeRecentChangeForRevId( $revId ) {
64 $rc = RecentChange::newFromConds(
65 [
66 'rc_type' => RC_CATEGORIZE,
67 'rc_this_oldid' => $revId,
68 ],
69 __METHOD__
70 );
71
72 $this->assertNotNull( $rc, 'rev__id = ' . $revId );
73 return $rc;
74 }
75
77 $addedRevId = $this->editPageText( '[[Category:Normal]]' );
78 $removedRevId = $this->editPageText( 'Blank' );
79
80 $this->assertEquals(
81 '(recentchanges-page-added-to-category: ' . self::TITLE_STRING . ')',
82 $this->getCategorizeRecentChangeForRevId( $addedRevId )->getAttribute( 'rc_comment' )
83 );
84 $this->assertEquals(
85 '(recentchanges-page-removed-from-category: ' . self::TITLE_STRING . ')',
86 $this->getCategorizeRecentChangeForRevId( $removedRevId )->getAttribute( 'rc_comment' )
87 );
88 }
89
90}
loadParamsAndArgs( $self=null, $opts=null, $args=null)
Process command line arguments $mOptions becomes an array with keys set to the option names $mArgs be...
setMwGlobals( $pairs, $value=null)
Sets a global, maintaining a stashed version of the previous global to be restored in tearDown.
insertPage( $pageName, $text='Sample page for unit test.', $namespace=null, User $user=null)
Insert a new page.
Maintenance script that runs pending jobs.
Definition runJobs.php:36
Represents a title within MediaWiki.
Definition Title.php:40
const RC_CATEGORIZE
Definition Defines.php:155
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
title