MediaWiki  REL1_31
RepoGroupTest.php
Go to the documentation of this file.
1 <?php
2 
7 
9  $this->setMwGlobals( 'wgForeignFileRepos', [] );
12  $this->assertFalse( RepoGroup::singleton()->hasForeignRepos() );
13  }
14 
16  $this->setUpForeignRepo();
17  $this->assertTrue( RepoGroup::singleton()->hasForeignRepos() );
18  }
19 
21  $this->setUpForeignRepo();
22  $fakeCallback = $this->createMock( RepoGroupTestHelper::class );
23  $fakeCallback->expects( $this->once() )->method( 'callback' );
24  RepoGroup::singleton()->forEachForeignRepo(
25  [ $fakeCallback, 'callback' ], [ [] ] );
26  }
27 
29  $this->setMwGlobals( 'wgForeignFileRepos', [] );
32  $fakeCallback = $this->createMock( RepoGroupTestHelper::class );
33  $fakeCallback->expects( $this->never() )->method( 'callback' );
34  RepoGroup::singleton()->forEachForeignRepo(
35  [ $fakeCallback, 'callback' ], [ [] ] );
36  }
37 
38  private function setUpForeignRepo() {
40  $this->setMwGlobals( 'wgForeignFileRepos', [ [
41  'class' => ForeignAPIRepo::class,
42  'name' => 'wikimediacommons',
43  'backend' => 'wikimediacommons-backend',
44  'apibase' => 'https://commons.wikimedia.org/w/api.php',
45  'hashLevels' => 2,
46  'fetchDescription' => true,
47  'descriptionCacheExpiry' => 43200,
48  'apiThumbCacheExpiry' => 86400,
49  'directory' => $wgUploadDirectory
50  ] ] );
53  }
54 }
55 
60  function callback( FileRepo $repo, array $foo ) {
61  return true;
62  }
63 }
RepoGroupTestHelper\callback
callback(FileRepo $repo, array $foo)
Definition: RepoGroupTest.php:60
RepoGroupTest\setUpForeignRepo
setUpForeignRepo()
Definition: RepoGroupTest.php:38
RepoGroup\singleton
static singleton()
Get a RepoGroup instance.
Definition: RepoGroup.php:59
RepoGroupTestHelper
Quick helper class to use as a mock callback for RepoGroup::singleton()->forEachForeignRepo.
Definition: RepoGroupTest.php:59
array
the array() calling protocol came about after MediaWiki 1.4rc1.
RepoGroupTest\testHasForeignRepoPositive
testHasForeignRepoPositive()
Definition: RepoGroupTest.php:15
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:37
RepoGroupTest\testHasForeignRepoNegative
testHasForeignRepoNegative()
Definition: RepoGroupTest.php:8
FileBackendGroup\destroySingleton
static destroySingleton()
Destroy the singleton instance.
Definition: FileBackendGroup.php:58
FileRepo
Base class for file repositories.
Definition: FileRepo.php:37
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Sets a global, maintaining a stashed version of the previous global to be restored in tearDown.
Definition: MediaWikiTestCase.php:678
MediaWikiTestCase
Definition: MediaWikiTestCase.php:17
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:95
RepoGroup\destroySingleton
static destroySingleton()
Destroy the singleton instance, so that a new one will be created next time singleton() is called.
Definition: RepoGroup.php:73
RepoGroupTest
RepoGroup.
Definition: RepoGroupTest.php:6
$wgUploadDirectory
$wgUploadDirectory
The filesystem path of the images directory.
Definition: DefaultSettings.php:270
RepoGroupTest\testForEachForeignRepo
testForEachForeignRepo()
Definition: RepoGroupTest.php:20
RepoGroupTest\testForEachForeignRepoNone
testForEachForeignRepoNone()
Definition: RepoGroupTest.php:28
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:56