MediaWiki  1.33.0
SpecialPageFatalTest.php
Go to the documentation of this file.
1 <?php
2 
4 
17  public function provideSpecialPages() {
18  $specialPages = [];
19  $spf = MediaWikiServices::getInstance()->getSpecialPageFactory();
20  foreach ( $spf->getNames() as $name ) {
21  $specialPages[$name] = [ $spf->getPage( $name ) ];
22  }
23  return $specialPages;
24  }
25 
29  public function testSpecialPageDoesNotFatal( SpecialPage $page ) {
30  $executor = new SpecialPageExecutor();
31  $user = User::newFromName( 'UTSysop' );
32 
33  try {
34  $executor->executeSpecialPage( $page, '', null, null, $user );
35  } catch ( \PHPUnit\Framework\Error\Error $error ) {
36  // Let phpunit settings working:
37  // - convertErrorsToExceptions="true"
38  // - convertNoticesToExceptions="true"
39  // - convertWarningsToExceptions="true"
40  throw $error;
41  } catch ( Exception $e ) {
42  // Other exceptions are allowed
43  }
44 
45  // If the page fataled phpunit will have already died
46  $this->addToAssertionCount( 1 );
47  }
48 
49 }
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:585
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
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
SpecialPageFatalTest\testSpecialPageDoesNotFatal
testSpecialPageDoesNotFatal(SpecialPage $page)
provideSpecialPages
Definition: SpecialPageFatalTest.php:29
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2162
SpecialPage
Parent class for all special pages.
Definition: SpecialPage.php:36
SpecialPageExecutor
Definition: SpecialPageExecutor.php:8
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
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
SpecialPageFatalTest
Test that runs against all registered special pages to make sure that regular execution of the specia...
Definition: SpecialPageFatalTest.php:16
SpecialPageFatalTest\provideSpecialPages
provideSpecialPages()
Definition: SpecialPageFatalTest.php:17