MediaWiki  1.27.2
RepoGroupTest.php
Go to the documentation of this file.
1 <?php
3 
5  $this->setMwGlobals( 'wgForeignFileRepos', [] );
8  $this->assertFalse( RepoGroup::singleton()->hasForeignRepos() );
9  }
10 
12  $this->setUpForeignRepo();
13  $this->assertTrue( RepoGroup::singleton()->hasForeignRepos() );
14  }
15 
17  $this->setUpForeignRepo();
18  $fakeCallback = $this->getMock( 'RepoGroupTestHelper' );
19  $fakeCallback->expects( $this->once() )->method( 'callback' );
20  RepoGroup::singleton()->forEachForeignRepo(
21  [ $fakeCallback, 'callback' ], [ [] ] );
22  }
23 
25  $this->setMwGlobals( 'wgForeignFileRepos', [] );
28  $fakeCallback = $this->getMock( 'RepoGroupTestHelper' );
29  $fakeCallback->expects( $this->never() )->method( 'callback' );
30  RepoGroup::singleton()->forEachForeignRepo(
31  [ $fakeCallback, 'callback' ], [ [] ] );
32  }
33 
34  private function setUpForeignRepo() {
36  $this->setMwGlobals( 'wgForeignFileRepos', [ [
37  'class' => 'ForeignAPIRepo',
38  'name' => 'wikimediacommons',
39  'backend' => 'wikimediacommons-backend',
40  'apibase' => 'https://commons.wikimedia.org/w/api.php',
41  'hashLevels' => 2,
42  'fetchDescription' => true,
43  'descriptionCacheExpiry' => 43200,
44  'apiThumbCacheExpiry' => 86400,
45  'directory' => $wgUploadDirectory
46  ] ] );
49  }
50 }
51 
56  function callback( FileRepo $repo, array $foo ) {
57  return true;
58  }
59 }
callback(FileRepo $repo, array $foo)
the array() calling protocol came about after MediaWiki 1.4rc1.
Quick helper class to use as a mock callback for RepoGroup::singleton()->forEachForeignRepo.
static destroySingleton()
Destroy the singleton instance, so that a new one will be created next time singleton() is called...
Definition: RepoGroup.php:73
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
static destroySingleton()
Destroy the singleton instance.
testHasForeignRepoNegative()
static singleton()
Get a RepoGroup instance.
Definition: RepoGroup.php:59
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
testForEachForeignRepoNone()
Base class for file repositories.
Definition: FileRepo.php:37
testHasForeignRepoPositive()
setMwGlobals($pairs, $value=null)
$wgUploadDirectory
The filesystem path of the images directory.