MediaWiki  1.33.0
SiteStatsTest.php
Go to the documentation of this file.
1 <?php
2 
4 
8  function testJobsCountGetCached() {
9  $cache = new WANObjectCache( [ 'cache' => new HashBagOStuff() ] );
10  $this->setService( 'MainWANObjectCache', $cache );
11  $jobq = JobQueueGroup::singleton();
12 
13  $jobq->push( new NullJob( Title::newMainPage(), [] ) );
14  $this->assertEquals( 1, SiteStats::jobs(),
15  'A single job enqueued bumps jobscount stat to 1' );
16 
17  $jobq->push( new NullJob( Title::newMainPage(), [] ) );
18  $this->assertEquals( 1, SiteStats::jobs(),
19  'SiteStats::jobs() count does not reflect addition ' .
20  'of a second job (cached)'
21  );
22 
23  $jobq->get( 'null' )->delete(); // clear jobqueue
24  $this->assertEquals( 0, $jobq->get( 'null' )->getSize(),
25  'Job queue for NullJob has been cleaned' );
26 
27  $cache->delete( $cache->makeKey( 'SiteStats', 'jobscount' ) );
28  $this->assertEquals( 1, SiteStats::jobs(),
29  'jobs count is kept in process cache' );
30 
31  $cache->clearProcessCache();
32  $this->assertEquals( 0, SiteStats::jobs() );
33  }
34 
35 }
HashBagOStuff
Simple store for keeping values in an associative array for the current process.
Definition: HashBagOStuff.php:31
Title\newMainPage
static newMainPage()
Create a new Title for the Main Page.
Definition: Title.php:632
NullJob
Degenerate job that does nothing, but can optionally replace itself in the queue and/or sleep for a b...
Definition: NullJob.php:47
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
MediaWikiTestCase
Definition: MediaWikiTestCase.php:17
SiteStats\jobs
static jobs()
Total number of jobs in the job queue.
Definition: SiteStats.php:179
WANObjectCache
Multi-datacenter aware caching interface.
Definition: WANObjectCache.php:116
SiteStatsTest\testJobsCountGetCached
testJobsCountGetCached()
SiteStats::jobs.
Definition: SiteStatsTest.php:8
JobQueueGroup\singleton
static singleton( $domain=false)
Definition: JobQueueGroup.php:70
$cache
$cache
Definition: mcc.php:33
SiteStatsTest
Definition: SiteStatsTest.php:3
MediaWikiTestCase\setService
setService( $name, $object)
Sets a service, maintaining a stashed version of the previous service to be restored in tearDown.
Definition: MediaWikiTestCase.php:649