wiki.techinc.nl/tests/phpunit/includes/parser/CacheTimeTest.php
Máté Szabó 40d50dd2fc tests: Fix method signature mismatches
These cause fatals on PHP 8.

Bug: T248925
Change-Id: Ifc8536e99f4676180d47df483e55c89e9f834c32
2020-11-26 19:02:57 +01:00

129 lines
3.3 KiB
PHP

<?php
namespace MediaWiki\Tests\Parser;
use CacheTime;
use MediaWikiIntegrationTestCase;
use MWTimestamp;
use ParserOptions;
use Wikimedia\Tests\SerializationTestTrait;
/**
* @covers CacheTime
* @package MediaWiki\Tests\Parser
*/
class CacheTimeTest extends MediaWikiIntegrationTestCase {
use SerializationTestTrait;
protected function setUp(): void {
parent::setUp();
MWTimestamp::setFakeTime( ParserCacheSerializationTestCases::FAKE_TIME );
$this->setMwGlobals( [
'wgParserCacheExpireTime' => ParserCacheSerializationTestCases::FAKE_CACHE_EXPIRY
] );
}
protected function tearDown() : void {
MWTimestamp::setFakeTime( null );
parent::tearDown();
}
/**
* Overrides SerializationTestTrait::getClassToTest
* @return string
*/
protected function getClassToTest(): string {
return CacheTime::class;
}
/**
* Overrides SerializationTestTrait::getSerializedDataPath
* @return string
*/
protected function getSerializedDataPath(): string {
return __DIR__ . '/../../data/ParserCache';
}
/**
* Overrides SerializationTestTrait::getTestInstancesAndAssertions
* @return array
*/
protected function getTestInstancesAndAssertions(): array {
return ParserCacheSerializationTestCases::getCacheTimeTestCases();
}
/**
* Overrides SerializationTestTrait::getSupportedSerializationFormats
* @return array
*/
protected function getSupportedSerializationFormats(): array {
return ParserCacheSerializationTestCases::getSupportedSerializationFormats(
$this->getClassToTest()
);
}
public function testCacheExpiryDoesNotIncrease() {
$cacheTime = new CacheTime();
$this->assertSame(
ParserCacheSerializationTestCases::FAKE_CACHE_EXPIRY,
$cacheTime->getCacheExpiry()
);
$cacheTime->updateCacheExpiry( 10 );
$this->assertSame( 10, $cacheTime->getCacheExpiry() );
$cacheTime->updateCacheExpiry( 5 );
$this->assertSame( 5, $cacheTime->getCacheExpiry() );
$cacheTime->updateCacheExpiry( 100500 );
$this->assertSame( 5, $cacheTime->getCacheExpiry() );
}
public function testCacheExpiryDoesNotIncreaseNotNegative() {
$cacheTime = new CacheTime();
$cacheTime->updateCacheExpiry( -10 );
$this->assertSame( 0, $cacheTime->getCacheExpiry() );
}
public function testCacheExpiryNotMoreThenGlobal() {
$cacheTime = new CacheTime();
$cacheTime->updateCacheExpiry(
ParserCacheSerializationTestCases::FAKE_CACHE_EXPIRY + 1
);
$this->assertSame(
ParserCacheSerializationTestCases::FAKE_CACHE_EXPIRY,
$cacheTime->getCacheExpiry()
);
}
public function testExpired() {
$cacheTime = new CacheTime();
$cacheTime->updateCacheExpiry( 0 );
$this->assertTrue( $cacheTime->expired( MWTimestamp::now() ) );
$cacheTime = new CacheTime();
$cacheTime->setCacheTime( MWTimestamp::now() );
$this->assertTrue(
$cacheTime->expired(
MWTimestamp::convert( TS_MW, MWTimestamp::now( TS_UNIX ) + 10 )
)
);
$cacheTime = new CacheTime();
$cacheTime->updateCacheExpiry( 10 );
$cacheTime->setCacheTime( MWTimestamp::now() );
$this->assertTrue(
$cacheTime->expired(
MWTimestamp::convert( TS_MW, MWTimestamp::now( TS_UNIX ) + 15 )
)
);
}
public function testGetSetOptions() {
$options = ParserOptions::allCacheVaryingOptions();
$cacheTime = new CacheTime();
$cacheTime->recordOptions( $options );
$this->assertArrayEquals( $options, $cacheTime->getUsedOptions() );
}
}