MediaWiki  1.28.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 FSRepo 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 FSRepo( $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 }
A repository for files accessible via the local filesystem.
Definition: FSRepo.php:33
static singleton()
Get an instance of this class.
Definition: MimeMagic.php:29
A file object referring to either a standalone local file, or a file in a local repository with no da...
dataFile($name, $type=null)
Utility function: Get a new file object for a file on disk but not actually in db.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
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
createsThumbnails()
Will the test create thumbnails (and thus do we need to set aside a temporary directory for them...
getNewTempDirectory()
obtains a new temporary directory
Class for a file system (FS) based file backend.
getFilePath()
The result of this method will set the file path to use, as well as the protected member $filePath...
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 one of or reset 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:2491
Specificly for testing Media handlers.
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:300