The parsing of the timecorrection useroption was split over multiple classes. Combine into a single class and add some testcases. Change-Id: I2cadac00e46dff2bc7d81ac2f294ea2ae4e72f47
134 lines
4.1 KiB
PHP
134 lines
4.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Common code for test environment initialisation and teardown
|
|
*/
|
|
class TestSetup {
|
|
public static $bootstrapGlobals;
|
|
|
|
/**
|
|
* For use in MediaWikiUnitTestCase.
|
|
*
|
|
* This should be called before DefaultSettings.php or Setup.php loads.
|
|
*/
|
|
public static function snapshotGlobals() {
|
|
self::$bootstrapGlobals = [];
|
|
foreach ( $GLOBALS as $key => $_ ) {
|
|
// Support: HHVM (avoid self-ref)
|
|
if ( $key !== 'GLOBALS' ) {
|
|
self::$bootstrapGlobals[ $key ] =& $GLOBALS[$key];
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This should be called before Setup.php, e.g. from the finalSetup() method
|
|
* of a Maintenance subclass
|
|
*/
|
|
public static function applyInitialConfig() {
|
|
global $wgMainCacheType, $wgMessageCacheType, $wgParserCacheType, $wgMainWANCache, $wgSessionCacheType;
|
|
global $wgMainStash, $wgChronologyProtectorStash;
|
|
global $wgObjectCaches;
|
|
global $wgLanguageConverterCacheType, $wgUseDatabaseMessages;
|
|
global $wgLocaltimezone, $wgLocalTZOffset, $wgLocalisationCacheConf;
|
|
global $wgSearchType;
|
|
global $wgDevelopmentWarnings;
|
|
global $wgSessionProviders, $wgSessionPbkdf2Iterations;
|
|
global $wgJobTypeConf;
|
|
global $wgMWLoggerDefaultSpi;
|
|
global $wgAuthManagerConfig;
|
|
global $wgShowExceptionDetails;
|
|
|
|
$wgShowExceptionDetails = true;
|
|
|
|
// wfWarn should cause tests to fail
|
|
$wgDevelopmentWarnings = true;
|
|
|
|
// Make sure all caches and stashes are either disabled or use
|
|
// in-process cache only to prevent tests from using any preconfigured
|
|
// cache meant for the local wiki from outside the test run.
|
|
// See also MediaWikiIntegrationTestCase::run() which mocks CACHE_DB and APC.
|
|
|
|
// Disabled in DefaultSettings, override local settings
|
|
$wgMainWANCache =
|
|
$wgMainCacheType = CACHE_NONE;
|
|
// Uses CACHE_ANYTHING in DefaultSettings, use hash instead of db
|
|
$wgMessageCacheType =
|
|
$wgParserCacheType =
|
|
$wgSessionCacheType =
|
|
$wgLanguageConverterCacheType = 'hash';
|
|
// Uses db-replicated in DefaultSettings
|
|
$wgMainStash = 'hash';
|
|
$wgChronologyProtectorStash = 'hash';
|
|
// Use hash instead of db
|
|
$wgObjectCaches['db-replicated'] = $wgObjectCaches['hash'];
|
|
// Use memory job queue
|
|
$wgJobTypeConf = [
|
|
'default' => [ 'class' => JobQueueMemory::class, 'order' => 'fifo' ],
|
|
];
|
|
// Always default to LegacySpi and LegacyLogger during test
|
|
// See also MediaWikiIntegrationTestCase::setNullLogger().
|
|
// Note that MediaWikiLoggerPHPUnitTestListener may wrap this in
|
|
// a MediaWiki\Logger\LogCapturingSpi at run-time.
|
|
$wgMWLoggerDefaultSpi = [
|
|
'class' => \MediaWiki\Logger\LegacySpi::class,
|
|
];
|
|
|
|
$wgUseDatabaseMessages = false; # Set for future resets
|
|
|
|
// Assume UTC for testing purposes
|
|
$wgLocaltimezone = 'UTC';
|
|
$wgLocalTZOffset = 0;
|
|
|
|
$wgLocalisationCacheConf['class'] = TestLocalisationCache::class;
|
|
$wgLocalisationCacheConf['storeClass'] = LCStoreNull::class;
|
|
|
|
// Do not bother updating search tables
|
|
$wgSearchType = SearchEngineDummy::class;
|
|
|
|
// Generic MediaWiki\Session\SessionManager configuration for tests
|
|
// We use CookieSessionProvider because things might be expecting
|
|
// cookies to show up in a FauxRequest somewhere.
|
|
$wgSessionProviders = [
|
|
[
|
|
'class' => MediaWiki\Session\CookieSessionProvider::class,
|
|
'args' => [ [
|
|
'priority' => 30,
|
|
'callUserSetCookiesHook' => true,
|
|
] ],
|
|
],
|
|
];
|
|
|
|
// Single-iteration PBKDF2 session secret derivation, for speed.
|
|
$wgSessionPbkdf2Iterations = 1;
|
|
|
|
// Generic AuthManager configuration for testing
|
|
$wgAuthManagerConfig = [
|
|
'preauth' => [],
|
|
'primaryauth' => [
|
|
[
|
|
'class' => MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::class,
|
|
'args' => [ [
|
|
'authoritative' => false,
|
|
] ],
|
|
],
|
|
[
|
|
'class' => MediaWiki\Auth\LocalPasswordPrimaryAuthenticationProvider::class,
|
|
'args' => [ [
|
|
'authoritative' => true,
|
|
] ],
|
|
],
|
|
],
|
|
'secondaryauth' => [],
|
|
];
|
|
|
|
// xdebug's default of 100 is too low for MediaWiki
|
|
ini_set( 'xdebug.max_nesting_level', 1000 );
|
|
|
|
// Bug T116683 serialize_precision of 100
|
|
// may break testing against floating point values
|
|
// treated with PHP's serialize()
|
|
ini_set( 'serialize_precision', 17 );
|
|
}
|
|
|
|
}
|