MediaWiki  1.29.1
MediaWikiMediaTestCase.php
Go to the documentation of this file.
1 <?php
5 abstract class MediaWikiMediaTestCase extends MediaWikiTestCase {
6 
8  protected $repo;
10  protected $backend;
12  protected $filePath;
13 
14  protected function setUp() {
15  parent::setUp();
16 
17  $this->filePath = $this->getFilePath();
18  $containers = [ 'data' => $this->filePath ];
19  if ( $this->createsThumbnails() ) {
20  // We need a temp directory for the thumbnails
21  // the container is named 'temp-thumb' because it is the
22  // thumb directory for a repo named "temp".
23  $containers['temp-thumb'] = $this->getNewTempDirectory();
24  }
25 
26  $this->backend = new FSFileBackend( [
27  'name' => 'localtesting',
28  'wikiId' => wfWikiID(),
29  'containerPaths' => $containers,
30  'tmpDirectory' => $this->getNewTempDirectory()
31  ] );
32  $this->repo = new FileRepo( $this->getRepoOptions() );
33  }
34 
38  protected function getRepoOptions() {
39  return [
40  'name' => 'temp',
41  'url' => 'http://localhost/thumbtest',
42  'backend' => $this->backend
43  ];
44  }
45 
52  protected function getFilePath() {
53  return __DIR__ . '/../../data/media/';
54  }
55 
64  protected function createsThumbnails() {
65  return false;
66  }
67 
76  protected function dataFile( $name, $type = null ) {
77  if ( !$type ) {
78  // Autodetect by file extension for the lazy.
79  $magic = MimeMagic::singleton();
80  $parts = explode( $name, '.' );
81  $type = $magic->guessTypesForExtension( $parts[count( $parts ) - 1] );
82  }
83  return new UnregisteredLocalFile( false, $this->repo,
84  "mwstore://localtesting/data/$name", $type );
85  }
86 }
MediaWikiMediaTestCase\getFilePath
getFilePath()
The result of this method will set the file path to use, as well as the protected member $filePath.
Definition: MediaWikiMediaTestCase.php:52
captcha-old.count
count
Definition: captcha-old.py:225
UnregisteredLocalFile
A file object referring to either a standalone local file, or a file in a local repository with no da...
Definition: UnregisteredLocalFile.php:36
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
$type
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
Definition: hooks.txt:2536
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
FileRepo
Base class for file repositories.
Definition: FileRepo.php:37
MediaWikiMediaTestCase
Specificly for testing Media handlers.
Definition: MediaWikiMediaTestCase.php:5
MediaWikiMediaTestCase\$filePath
string $filePath
Definition: MediaWikiMediaTestCase.php:12
MediaWikiTestCase
Definition: MediaWikiTestCase.php:13
MediaWikiMediaTestCase\dataFile
dataFile( $name, $type=null)
Utility function: Get a new file object for a file on disk but not actually in db.
Definition: MediaWikiMediaTestCase.php:76
MimeMagic\singleton
static singleton()
Get an instance of this class.
Definition: MimeMagic.php:33
MediaWikiMediaTestCase\$backend
FSFileBackend $backend
Definition: MediaWikiMediaTestCase.php:10
wfWikiID
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
Definition: GlobalFunctions.php:3011
MediaWikiMediaTestCase\$repo
FileRepo $repo
Definition: MediaWikiMediaTestCase.php:8
MediaWikiMediaTestCase\getRepoOptions
getRepoOptions()
Definition: MediaWikiMediaTestCase.php:38
FSFileBackend
Class for a file system (FS) based file backend.
Definition: FSFileBackend.php:42
MediaWikiMediaTestCase\createsThumbnails
createsThumbnails()
Will the test create thumbnails (and thus do we need to set aside a temporary directory for them?...
Definition: MediaWikiMediaTestCase.php:64
MediaWikiMediaTestCase\setUp
setUp()
Definition: MediaWikiMediaTestCase.php:14
MediaWikiTestCase\getNewTempDirectory
getNewTempDirectory()
obtains a new temporary directory
Definition: MediaWikiTestCase.php:460