wiki.techinc.nl/tests/phpunit/includes/SiteStats/SiteStatsTest.php
Ebrahim Byagowi fab78547ad Add namespace to the root classes of ObjectCache
And deprecated aliases for the the no namespaced classes.

ReplicatedBagOStuff that already is deprecated isn't moved.

Bug: T353458
Change-Id: Ie01962517e5b53e59b9721e9996d4f1ea95abb51
2024-07-10 00:14:54 +03:30

61 lines
1.6 KiB
PHP

<?php
use MediaWiki\SiteStats\SiteStats;
use Wikimedia\ObjectCache\HashBagOStuff;
use Wikimedia\Rdbms\Platform\ISQLPlatform;
/**
* @group Database
*/
class SiteStatsTest extends MediaWikiIntegrationTestCase {
/**
* @covers \MediaWiki\SiteStats\SiteStats::jobs
*/
public function testJobsCountGetCached() {
$cache = new WANObjectCache( [ 'cache' => new HashBagOStuff() ] );
$this->setService( 'MainWANObjectCache', $cache );
$jobq = $this->getServiceContainer()->getJobQueueGroup();
$jobq->push( new NullJob( [] ) );
$this->assertSame( 1, SiteStats::jobs(),
'A single job enqueued bumps jobscount stat to 1' );
$jobq->push( new NullJob( [] ) );
$this->assertSame( 1, SiteStats::jobs(),
'SiteStats::jobs() count does not reflect addition ' .
'of a second job (cached)'
);
$jobq->get( 'null' )->delete(); // clear jobqueue
$this->assertSame( 0, $jobq->get( 'null' )->getSize(),
'Job queue for NullJob has been cleaned' );
$cache->delete( $cache->makeKey( 'SiteStats', 'jobscount' ) );
$this->assertSame( 1, SiteStats::jobs(),
'jobs count is kept in process cache' );
$cache->clearProcessCache();
$this->assertSame( 0, SiteStats::jobs() );
}
/**
* @covers \MediaWiki\SiteStats\SiteStats
*/
public function testInit() {
$this->getDb()->newDeleteQueryBuilder()
->deleteFrom( 'site_stats' )
->where( ISQLPlatform::ALL_ROWS )
->caller( __METHOD__ )
->execute();
SiteStats::unload();
SiteStats::edits();
$row = $this->getDb()->newSelectQueryBuilder()
->select( '1' )
->from( 'site_stats' )
->caller( __METHOD__ )->fetchRow();
$this->assertNotFalse( $row );
}
}