1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
<?php
namespace MediaWiki\Tests\Parser;
use MediaWiki\MainConfigNames;
use MediaWiki\Parser\CacheTime;
use MediaWiki\Parser\ParserOptions;
use MediaWiki\Utils\MWTimestamp;
use MediaWikiIntegrationTestCase;
use Wikimedia\Tests\SerializationTestTrait;
/**
* @covers \MediaWiki\Parser\CacheTime
*/
class CacheTimeTest extends MediaWikiIntegrationTestCase {
use SerializationTestTrait;
protected function setUp(): void {
parent::setUp();
MWTimestamp::setFakeTime( ParserCacheSerializationTestCases::FAKE_TIME );
$this->overrideConfigValue(
MainConfigNames::ParserCacheExpireTime,
ParserCacheSerializationTestCases::FAKE_CACHE_EXPIRY
);
}
/**
* Overrides SerializationTestTrait::getClassToTest
* @return string
*/
public static function getClassToTest(): string {
return CacheTime::class;
}
/**
* Overrides SerializationTestTrait::getSerializedDataPath
* @return string
*/
public static function getSerializedDataPath(): string {
return __DIR__ . '/../../data/ParserCache';
}
/**
* Overrides SerializationTestTrait::getTestInstancesAndAssertions
* @return array
*/
public static function getTestInstancesAndAssertions(): array {
return ParserCacheSerializationTestCases::getCacheTimeTestCases();
}
/**
* Overrides SerializationTestTrait::getSupportedSerializationFormats
* @return array
*/
public static function getSupportedSerializationFormats(): array {
return ParserCacheSerializationTestCases::getSupportedSerializationFormats(
self::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() );
}
}
|