MediaWiki REL1_28
OldChangesListTest.php
Go to the documentation of this file.
1<?php
2
15
20
21 public function __construct( $name = null, array $data = [], $dataName = '' ) {
22 parent::__construct( $name, $data, $dataName );
23
24 $this->testRecentChangesHelper = new TestRecentChangesHelper();
25 }
26
27 protected function setUp() {
28 parent::setUp();
29
30 $this->setMwGlobals( [
31 'wgArticlePath' => '/wiki/$1',
32 ] );
33 $this->setUserLang( 'qqx' );
34 }
35
39 public function testRecentChangesLine_CssForLineNumber( $expected, $linenumber, $message ) {
40 $oldChangesList = $this->getOldChangesList();
41 $recentChange = $this->getEditChange();
42
43 $line = $oldChangesList->recentChangesLine( $recentChange, false, $linenumber );
44
45 $this->assertRegExp( $expected, $line, $message );
46 }
47
49 return [
50 [ '/mw-line-odd/', 1, 'odd line number' ],
51 [ '/mw-line-even/', 2, 'even line number' ]
52 ];
53 }
54
56 $oldChangesList = $this->getOldChangesList();
57 $recentChange = $this->getEditChange();
58
59 $line = $oldChangesList->recentChangesLine( $recentChange, false, 1 );
60
61 $this->assertRegExp( '/mw-changeslist-line-not-watched/', $line );
62 }
63
65 $oldChangesList = $this->getOldChangesList();
66 $recentChange = $this->getEditChange();
67
68 $line = $oldChangesList->recentChangesLine( $recentChange, true, 1 );
69
70 $this->assertRegExp( '/mw-changeslist-line-watched/', $line );
71 }
72
74 $oldChangesList = $this->getOldChangesList();
75 $recentChange = $this->getLogChange( 'delete', 'delete' );
76
77 $line = $oldChangesList->recentChangesLine( $recentChange, false, 1 );
78
79 $this->assertRegExp( '/href="\/wiki\/Special:Log\/delete/', $line, 'link has href attribute' );
80 $this->assertRegExp( '/title="Special:Log\/delete/', $line, 'link has title attribute' );
81 $this->assertRegExp( "/dellogpage/", $line, 'link text' );
82 }
83
85 $oldChangesList = $this->getOldChangesList();
86 $recentChange = $this->getEditChange();
87
88 $line = $oldChangesList->recentChangesLine( $recentChange, false, 1 );
89
90 $this->assertRegExp(
91 '/title=Cat&amp;curid=20131103212153&amp;diff=5&amp;oldid=191/',
92 $line,
93 'assert diff link'
94 );
95
96 $this->assertRegExp(
97 '/title=Cat&amp;curid=20131103212153&amp;action=history"/',
98 $line,
99 'assert history link'
100 );
101 }
102
103 public function testRecentChangesLine_Flags() {
104 $oldChangesList = $this->getOldChangesList();
105 $recentChange = $this->getNewBotEditChange();
106
107 $line = $oldChangesList->recentChangesLine( $recentChange, false, 1 );
108
109 $this->assertContains(
110 '<abbr class="newpage" title="(recentchanges-label-newpage)">(newpageletter)</abbr>',
111 $line,
112 'new page flag'
113 );
114
115 $this->assertContains(
116 '<abbr class="botedit" title="(recentchanges-label-bot)">(boteditletter)</abbr>',
117 $line,
118 'bot flag'
119 );
120 }
121
122 public function testRecentChangesLine_Tags() {
123 $recentChange = $this->getEditChange();
124 $recentChange->mAttribs['ts_tags'] = 'vandalism,newbie';
125
126 $oldChangesList = $this->getOldChangesList();
127 $line = $oldChangesList->recentChangesLine( $recentChange, false, 1 );
128
129 $this->assertRegExp( '/<li class="[\w\s-]*mw-tag-vandalism[\w\s-]*">/', $line );
130 $this->assertRegExp( '/<li class="[\w\s-]*mw-tag-newbie[\w\s-]*">/', $line );
131 }
132
134 $oldChangesList = $this->getOldChangesList();
135
136 $recentChange = $this->getEditChange();
137 $recentChange->numberofWatchingusers = 100;
138
139 $line = $oldChangesList->recentChangesLine( $recentChange, false, 1 );
140 $this->assertRegExp( "/(number_of_watching_users_RCview: 100)/", $line );
141 }
142
144 $oldChangesList = $this->getOldChangesList();
145 $oldChangesList->setWatchlistDivs( true );
146
147 $recentChange = $this->getEditChange();
148 $line = $oldChangesList->recentChangesLine( $recentChange, false, 1 );
149 $this->assertRegExp( "/watchlist-0-Cat/", $line );
150 }
151
152 private function getNewBotEditChange() {
153 $user = $this->getMutableTestUser()->getUser();
154
155 $recentChange = $this->testRecentChangesHelper->makeNewBotEditRecentChange(
156 $user, 'Abc', '20131103212153', 5, 191, 190, 0, 0
157 );
158
159 return $recentChange;
160 }
161
162 private function getLogChange( $logType, $logAction ) {
163 $user = $this->getMutableTestUser()->getUser();
164
165 $recentChange = $this->testRecentChangesHelper->makeLogRecentChange(
166 $logType, $logAction, $user, 'Abc', '20131103212153', 0, 0
167 );
168
169 return $recentChange;
170 }
171
172 private function getEditChange() {
173 $user = $this->getMutableTestUser()->getUser();
174 $recentChange = $this->testRecentChangesHelper->makeEditRecentChange(
175 $user, 'Cat', '20131103212153', 5, 191, 190, 0, 0
176 );
177
178 return $recentChange;
179 }
180
181 private function getOldChangesList() {
182 $context = $this->getContext();
183 return new OldChangesList( $context );
184 }
185
186 private function getContext() {
187 $user = $this->getMutableTestUser()->getUser();
188 $context = $this->testRecentChangesHelper->getTestContext( $user );
189 $context->setLanguage( 'qqx' );
190
191 return $context;
192 }
193
194}
$line
Definition cdb.php:59
Base class that store and restore the Language objects.
static getMutableTestUser( $groups=[])
Convenience method for getting a mutable test user.
setMwGlobals( $pairs, $value=null)
getLogChange( $logType, $logAction)
testRecentChangesLine_CssForLineNumber( $expected, $linenumber, $message)
recentChangesLine_CssForLineNumberProvider
TestRecentChangesHelper $testRecentChangesHelper
__construct( $name=null, array $data=[], $dataName='')
Helper for generating test recent changes entries.
the array() calling protocol came about after MediaWiki 1.4rc1.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition hooks.txt:249
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:304
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
$context
Definition load.php:50