MediaWiki  1.33.0
BlockListPagerTest.php
Go to the documentation of this file.
1 <?php
2 
6 use Wikimedia\TestingAccessWrapper;
7 
13 
21  public function testFormatValue( $name, $expected = null, $row = null ) {
22  $this->setMwGlobals( [
23  'wgEnablePartialBlocks' => false,
24  ] );
25  // Set the time to now so it does not get off during the test.
26  MWTimestamp::setFakeTime( MWTimestamp::time() );
27 
28  $value = $name === 'ipb_timestamp' ? MWTimestamp::time() : '';
29  $expected = $expected ?? MWTimestamp::getInstance()->format( 'H:i, j F Y' );
30 
31  $row = $row ?: new stdClass;
32  $pager = new BlockListPager( new SpecialPage(), [] );
33  $wrappedPager = TestingAccessWrapper::newFromObject( $pager );
34  $wrappedPager->mCurrentRow = $row;
35 
36  $formatted = $pager->formatValue( $name, $value );
37  $this->assertEquals( $expected, $formatted );
38 
39  // Reset the time.
40  MWTimestamp::setFakeTime( false );
41  }
42 
46  public function formatValueEmptyProvider() {
47  return [
48  [
49  'test',
50  'Unable to format test',
51  ],
52  [
53  'ipb_timestamp',
54  ],
55  [
56  'ipb_expiry',
57  'infinite<br />0 minutes left',
58  ],
59  ];
60  }
61 
65  public function formatValueDefaultProvider() {
66  $row = (object)[
67  'ipb_user' => 0,
68  'ipb_address' => '127.0.0.1',
69  'ipb_by_text' => 'Admin',
70  'ipb_create_account' => 1,
71  'ipb_auto' => 0,
72  'ipb_anon_only' => 0,
73  'ipb_create_account' => 1,
74  'ipb_enable_autoblock' => 1,
75  'ipb_deleted' => 0,
76  'ipb_block_email' => 0,
77  'ipb_allow_usertalk' => 0,
78  'ipb_sitewide' => 1,
79  ];
80 
81  return [
82  [
83  'test',
84  'Unable to format test',
85  $row,
86  ],
87  [
88  'ipb_timestamp',
89  null,
90  $row,
91  ],
92  [
93  'ipb_expiry',
94  'infinite<br />0 minutes left',
95  $row,
96  ],
97  [
98  'ipb_by',
99  $row->ipb_by_text,
100  $row,
101  ],
102  [
103  'ipb_params',
104  '<ul><li>account creation disabled</li><li>cannot edit own talk page</li></ul>',
105  $row,
106  ]
107  ];
108  }
109 
114  public function testFormatValueRestrictions() {
115  $this->setMwGlobals( [
116  'wgArticlePath' => '/wiki/$1',
117  'wgScript' => '/w/index.php',
118  ] );
119 
120  $pager = new BlockListPager( new SpecialPage(), [] );
121 
122  $row = (object)[
123  'ipb_id' => 0,
124  'ipb_user' => 0,
125  'ipb_anon_only' => 0,
126  'ipb_enable_autoblock' => 0,
127  'ipb_create_account' => 0,
128  'ipb_block_email' => 0,
129  'ipb_allow_usertalk' => 1,
130  'ipb_sitewide' => 0,
131  ];
132  $wrappedPager = TestingAccessWrapper::newFromObject( $pager );
133  $wrappedPager->mCurrentRow = $row;
134 
135  $pageName = 'Victor Frankenstein';
136  $page = $this->insertPage( $pageName );
137  $title = $page['title'];
138  $pageId = $page['id'];
139 
140  $restrictions = [
141  ( new PageRestriction( 0, $pageId ) )->setTitle( $title ),
142  new NamespaceRestriction( 0, NS_MAIN ),
143  // Deleted page.
144  new PageRestriction( 0, 999999 ),
145  ];
146 
147  $wrappedPager = TestingAccessWrapper::newFromObject( $pager );
148  $wrappedPager->restrictions = $restrictions;
149 
150  $formatted = $pager->formatValue( 'ipb_params', '' );
151  $this->assertEquals( '<ul><li>'
152  // FIXME: Expectation value should not be dynamic
153  // and must not depend on a localisation message.
154  // TODO: Mock the message or consider using qqx.
155  . wfMessage( 'blocklist-editing' )->text()
156  . '<ul><li>'
157  . wfMessage( 'blocklist-editing-page' )->text()
158  . '<ul><li>'
159  . '<a href="/wiki/Victor_Frankenstein" title="'
160  . $pageName
161  . '">'
162  . $pageName
163  . '</a></li></ul></li><li>'
164  . wfMessage( 'blocklist-editing-ns' )->text()
165  . '<ul><li>'
166  . '<a href="/w/index.php?title=Special:AllPages&amp;namespace=0" title="'
167  . 'Special:AllPages'
168  . '">'
169  . wfMessage( 'blanknamespace' )->text()
170  . '</a></li></ul></li></ul></li></ul>',
171  $formatted
172  );
173  }
174 
178  public function testPreprocessResults() {
179  // Test the Link Cache.
180  $linkCache = MediaWikiServices::getInstance()->getLinkCache();
181  $wrappedlinkCache = TestingAccessWrapper::newFromObject( $linkCache );
182 
183  $links = [
184  'User:127.0.0.1',
185  'User_talk:127.0.0.1',
186  'User:Admin',
187  'User_talk:Admin',
188  ];
189 
190  foreach ( $links as $link ) {
191  $this->assertNull( $wrappedlinkCache->badLinks->get( $link ) );
192  }
193 
194  $row = (object)[
195  'ipb_address' => '127.0.0.1',
196  'by_user_name' => 'Admin',
197  'ipb_sitewide' => 1,
198  'ipb_timestamp' => $this->db->timestamp( wfTimestamp( TS_MW ) ),
199  ];
200  $pager = new BlockListPager( new SpecialPage(), [] );
201  $pager->preprocessResults( [ $row ] );
202 
203  foreach ( $links as $link ) {
204  $this->assertSame( 1, $wrappedlinkCache->badLinks->get( $link ) );
205  }
206 
207  // Test Sitewide Blocks.
208  $row = (object)[
209  'ipb_address' => '127.0.0.1',
210  'by_user_name' => 'Admin',
211  'ipb_sitewide' => 1,
212  ];
213  $pager = new BlockListPager( new SpecialPage(), [] );
214  $pager->preprocessResults( [ $row ] );
215 
216  $this->assertObjectNotHasAttribute( 'ipb_restrictions', $row );
217 
218  $pageName = 'Victor Frankenstein';
219  $page = $this->getExistingTestPage( 'Victor Frankenstein' );
220  $title = $page->getTitle();
221 
222  $target = '127.0.0.1';
223 
224  // Test Partial Blocks Blocks.
225  $block = new Block( [
226  'address' => $target,
227  'by' => $this->getTestSysop()->getUser()->getId(),
228  'reason' => 'Parce que',
229  'expiry' => $this->db->getInfinity(),
230  'sitewide' => false,
231  ] );
232  $block->setRestrictions( [
233  new PageRestriction( 0, $page->getId() ),
234  ] );
235  $block->insert();
236 
237  $result = $this->db->select( 'ipblocks', [ '*' ], [ 'ipb_id' => $block->getId() ] );
238 
239  $pager = new BlockListPager( new SpecialPage(), [] );
240  $pager->preprocessResults( $result );
241 
242  $wrappedPager = TestingAccessWrapper::newFromObject( $pager );
243 
244  $restrictions = $wrappedPager->restrictions;
245  $this->assertInternalType( 'array', $restrictions );
246 
247  $restriction = $restrictions[0];
248  $this->assertEquals( $page->getId(), $restriction->getValue() );
249  $this->assertEquals( $page->getId(), $restriction->getTitle()->getArticleID() );
250  $this->assertEquals( $title->getDBKey(), $restriction->getTitle()->getDBKey() );
251  $this->assertEquals( $title->getNamespace(), $restriction->getTitle()->getNamespace() );
252 
253  // Delete the block and the restrictions.
254  $block->delete();
255  }
256 }
BlockListPager
Definition: BlockListPager.php:31
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1983
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1912
BlockListPagerTest\testPreprocessResults
testPreprocessResults()
::preprocessResults
Definition: BlockListPagerTest.php:178
BlockListPagerTest\formatValueEmptyProvider
formatValueEmptyProvider()
Test empty values.
Definition: BlockListPagerTest.php:46
BlockListPagerTest\testFormatValueRestrictions
testFormatValueRestrictions()
::formatValue ::getRestrictionListHTML
Definition: BlockListPagerTest.php:114
MediaWikiTestCase\insertPage
insertPage( $pageName, $text='Sample page for unit test.', $namespace=null, User $user=null)
Insert a new page.
Definition: MediaWikiTestCase.php:1222
php
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:35
NS_MAIN
const NS_MAIN
Definition: Defines.php:64
Block\setRestrictions
setRestrictions(array $restrictions)
Set Restrictions.
Definition: Block.php:1963
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Sets a global, maintaining a stashed version of the previous global to be restored in tearDown.
Definition: MediaWikiTestCase.php:709
MediaWikiTestCase
Definition: MediaWikiTestCase.php:17
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
MWTimestamp\getInstance
static getInstance( $ts=false)
Get a timestamp instance in GMT.
Definition: MWTimestamp.php:39
BlockListPagerTest
Database @coversDefaultClass BlockListPager.
Definition: BlockListPagerTest.php:12
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
$value
$value
Definition: styleTest.css.php:49
SpecialPage
Parent class for all special pages.
Definition: SpecialPage.php:36
BlockListPagerTest\testFormatValue
testFormatValue( $name, $expected=null, $row=null)
::formatValue formatValueEmptyProvider formatValueDefaultProvider
Definition: BlockListPagerTest.php:21
MediaWikiTestCase\getTestSysop
static getTestSysop()
Convenience method for getting an immutable admin test user.
Definition: MediaWikiTestCase.php:204
MediaWikiTestCase\getExistingTestPage
getExistingTestPage( $title=null)
Returns a WikiPage representing an existing page.
Definition: MediaWikiTestCase.php:220
MediaWiki\Block\Restriction\NamespaceRestriction
Definition: NamespaceRestriction.php:25
text
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
Definition: All_system_messages.txt:1267
MediaWiki\Block\Restriction\PageRestriction
Definition: PageRestriction.php:25
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
Block
Definition: Block.php:31
$link
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:3053
object
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest object
Definition: globals.txt:25
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
BlockListPagerTest\formatValueDefaultProvider
formatValueDefaultProvider()
Test the default row values.
Definition: BlockListPagerTest.php:65