MediaWiki  1.33.0
SpecialLogTest.php
Go to the documentation of this file.
1 <?php
11 
17  protected function newSpecialPage() {
18  return new SpecialLog();
19  }
20 
25  public function testInvalidDate() {
26  list( $html, ) = $this->executeSpecialPage(
27  '',
28  // There is no 13th month
29  new FauxRequest( [ 'wpdate' => '2018-13-01' ] ),
30  'qqx'
31  );
32  $this->assertContains( '(log-summary)', $html );
33  }
34 
35 }
FauxRequest
WebRequest clone which takes values from a provided array.
Definition: FauxRequest.php:33
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
SpecialPageTestBase
Base class for testing special pages.
Definition: SpecialPageTestBase.php:14
$html
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition: hooks.txt:1985
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
SpecialLogTest\testInvalidDate
testInvalidDate()
Verify that no exception was thrown for an invalid date.
Definition: SpecialLogTest.php:25
SpecialLogTest
SpecialLog.
Definition: SpecialLogTest.php:10
SpecialPageTestBase\executeSpecialPage
executeSpecialPage( $subPage='', WebRequest $request=null, $language=null, User $user=null)
Definition: SpecialPageTestBase.php:59
SpecialLog
A special page that lists log entries.
Definition: SpecialLog.php:31
SpecialLogTest\newSpecialPage
newSpecialPage()
Returns a new instance of the special page under test.
Definition: SpecialLogTest.php:17