MediaWiki  1.33.0
UploadFromUrlTestSuite.php
Go to the documentation of this file.
1 <?php
2 
3 require_once dirname( __DIR__ ) . '/includes/upload/UploadFromUrlTest.php';
4 
5 class UploadFromUrlTestSuite extends PHPUnit_Framework_TestSuite {
6  public $savedGlobals = [];
7 
8  public static function addTables( &$tables ) {
9  $tables[] = 'user_properties';
10  $tables[] = 'filearchive';
11  $tables[] = 'logging';
12  $tables[] = 'updatelog';
13  $tables[] = 'iwlinks';
14 
15  return true;
16  }
17 
18  protected function setUp() {
19  global $wgParser, $wgParserConf, $IP, $messageMemc, $wgMemc, $wgUser,
22 
23  $tmpDir = $this->getNewTempDirectory();
24  $tmpGlobals = [];
25 
26  $tmpGlobals['wgScript'] = '/index.php';
27  $tmpGlobals['wgScriptPath'] = '/';
28  $tmpGlobals['wgArticlePath'] = '/wiki/$1';
29  $tmpGlobals['wgStylePath'] = '/skins';
30  $tmpGlobals['wgThumbnailScriptPath'] = false;
31  $tmpGlobals['wgLocalFileRepo'] = [
32  'class' => LocalRepo::class,
33  'name' => 'local',
34  'url' => 'http://example.com/images',
35  'hashLevels' => 2,
36  'transformVia404' => false,
37  'backend' => new FSFileBackend( [
38  'name' => 'local-backend',
39  'wikiId' => wfWikiID(),
40  'containerPaths' => [
41  'local-public' => "{$tmpDir}/test-repo/public",
42  'local-thumb' => "{$tmpDir}/test-repo/thumb",
43  'local-temp' => "{$tmpDir}/test-repo/temp",
44  'local-deleted' => "{$tmpDir}/test-repo/delete",
45  ]
46  ] ),
47  ];
48  foreach ( $tmpGlobals as $var => $val ) {
49  if ( array_key_exists( $var, $GLOBALS ) ) {
50  $this->savedGlobals[$var] = $GLOBALS[$var];
51  }
52  $GLOBALS[$var] = $val;
53  }
54 
55  $wgNamespaceProtection[NS_MEDIAWIKI] = 'editinterface';
56  $wgNamespaceAliases['Image'] = NS_FILE;
57  $wgNamespaceAliases['Image_talk'] = NS_FILE_TALK;
58 
63 
66  $wgUser = new User;
67  $wgLang = $context->getLanguage();
68  $wgOut = $context->getOutput();
69  $wgParser = new StubObject( 'wgParser', $wgParserConf['class'], [ $wgParserConf ] );
70  $wgRequest = $context->getRequest();
71 
72  if ( $wgStyleDirectory === false ) {
73  $wgStyleDirectory = "$IP/skins";
74  }
75 
78  }
79 
80  protected function tearDown() {
81  foreach ( $this->savedGlobals as $var => $val ) {
82  $GLOBALS[$var] = $val;
83  }
84  // Restore backends
87 
88  parent::tearDown();
89  }
90 
91  public static function suite() {
92  // Hack to invoke the autoloader required to get phpunit to recognize
93  // the UploadFromUrlTest class
94  class_exists( 'UploadFromUrlTest' );
95  $suite = new UploadFromUrlTestSuite( 'UploadFromUrlTest' );
96 
97  return $suite;
98  }
99 }
$context
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2636
$wgParser
$wgParser
Definition: Setup.php:886
StubObject
Class to implement stub globals, which are globals that delay loading the their associated module cod...
Definition: StubObject.php:45
$wgParserConf
$wgParserConf
Parser configuration.
Definition: DefaultSettings.php:4120
CACHE_NONE
const CACHE_NONE
Definition: Defines.php:102
$tables
this hook is for auditing only RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
Definition: hooks.txt:979
$wgMemc
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 to get request data $wgMemc
Definition: globals.txt:25
UploadFromUrlTestSuite\setUp
setUp()
Definition: UploadFromUrlTestSuite.php:18
UploadFromUrlTestSuite\addTables
static addTables(&$tables)
Definition: UploadFromUrlTestSuite.php:8
NS_FILE
const NS_FILE
Definition: Defines.php:70
DeferredUpdates\clearPendingUpdates
static clearPendingUpdates()
Clear all pending updates without performing them.
Definition: DeferredUpdates.php:377
User
User
Definition: All_system_messages.txt:425
UploadFromUrlTestSuite\$savedGlobals
$savedGlobals
Definition: UploadFromUrlTestSuite.php:6
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
FileBackendGroup\destroySingleton
static destroySingleton()
Destroy the singleton instance.
Definition: FileBackendGroup.php:58
UploadFromUrlTestSuite\tearDown
tearDown()
Definition: UploadFromUrlTestSuite.php:80
wfGetMainCache
wfGetMainCache()
Get the main cache object.
Definition: GlobalFunctions.php:2972
$wgLang
$wgLang
Definition: Setup.php:875
$IP
$IP
Definition: update.php:3
$wgParserCacheType
$wgParserCacheType
The cache type for storing article HTML.
Definition: DefaultSettings.php:2352
$wgNamespaceProtection
$wgNamespaceProtection
Set the minimum permissions required to edit pages in each namespace.
Definition: DefaultSettings.php:5334
RepoGroup\destroySingleton
static destroySingleton()
Destroy the singleton instance, so that a new one will be created next time singleton() is called.
Definition: RepoGroup.php:76
$wgNamespaceAliases
$wgNamespaceAliases
Namespace aliases.
Definition: DefaultSettings.php:3878
wfWikiID
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
Definition: GlobalFunctions.php:2602
RequestContext\resetMain
static resetMain()
Resets singleton returned by getMain().
Definition: RequestContext.php:456
$messageMemc
$messageMemc
Definition: Setup.php:769
UploadFromUrlTestSuite
Definition: UploadFromUrlTestSuite.php:5
RequestContext\getMain
static getMain()
Get the RequestContext object associated with the main request.
Definition: RequestContext.php:430
wfGetMessageCacheStorage
wfGetMessageCacheStorage()
Get the cache object used by the message cache.
Definition: GlobalFunctions.php:2981
UploadFromUrlTestSuite\suite
static suite()
Definition: UploadFromUrlTestSuite.php:91
FSFileBackend
Class for a file system (FS) based file backend.
Definition: FSFileBackend.php:41
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
NS_MEDIAWIKI
const NS_MEDIAWIKI
Definition: Defines.php:72
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
$wgRequest
if(! $wgDBerrorLogTZ) $wgRequest
Definition: Setup.php:728
NS_FILE_TALK
const NS_FILE_TALK
Definition: Defines.php:71
$wgOut
$wgOut
Definition: Setup.php:880
$wgStyleDirectory
$wgStyleDirectory
Filesystem stylesheets directory.
Definition: DefaultSettings.php:230
$GLOBALS
$GLOBALS['IP']
Definition: ComposerHookHandler.php:6