X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fcommon%2FTestSetup.php;h=e24c4c544253c0520ac2a790a05b36bb31d66d33;hb=214b37ff07f3fde89430297b2a857750a56ae205;hp=3733e60f2bf0f2b9fca8b5454757ae582fa8219d;hpb=ef1f66b2351ce726ba8da21c3c7db290c31e0b37;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/common/TestSetup.php b/tests/common/TestSetup.php index 3733e60f2b..e24c4c5442 100644 --- a/tests/common/TestSetup.php +++ b/tests/common/TestSetup.php @@ -17,7 +17,7 @@ class TestSetup { global $wgDevelopmentWarnings; global $wgSessionProviders, $wgSessionPbkdf2Iterations; global $wgJobTypeConf; - global $wgAuthManagerConfig, $wgAuth; + global $wgAuthManagerConfig; // wfWarn should cause tests to fail $wgDevelopmentWarnings = true; @@ -39,7 +39,7 @@ class TestSetup { $wgMainStash = 'hash'; // Use memory job queue $wgJobTypeConf = [ - 'default' => [ 'class' => 'JobQueueMemory', 'order' => 'fifo' ], + 'default' => [ 'class' => JobQueueMemory::class, 'order' => 'fifo' ], ]; $wgUseDatabaseMessages = false; # Set for future resets @@ -47,10 +47,10 @@ class TestSetup { // Assume UTC for testing purposes $wgLocaltimezone = 'UTC'; - $wgLocalisationCacheConf['storeClass'] = 'LCStoreNull'; + $wgLocalisationCacheConf['storeClass'] = LCStoreNull::class; // Do not bother updating search tables - $wgSearchType = 'SearchEngineDummy'; + $wgSearchType = SearchEngineDummy::class; // Generic MediaWiki\Session\SessionManager configuration for tests // We use CookieSessionProvider because things might be expecting @@ -87,7 +87,6 @@ class TestSetup { ], 'secondaryauth' => [], ]; - $wgAuth = new MediaWiki\Auth\AuthManagerAuthPlugin(); // T46192 Do not attempt to send a real e-mail Hooks::clear( 'AlternateUserMailer' ); @@ -104,10 +103,6 @@ class TestSetup { // may break testing against floating point values // treated with PHP's serialize() ini_set( 'serialize_precision', 17 ); - - // TODO: we should call MediaWikiTestCase::prepareServices( new GlobalVarConfig() ) here. - // But PHPUnit may not be loaded yet, so we have to wait until just - // before PHPUnit_TextUI_Command::main() is executed. } }