Merge "rdbms: deprecate LoadBalancer::haveIndex() and LoadBalancer::isNonZeroLoad()"
[lhc/web/wiklou.git] / tests / phpunit / MediaWikiIntegrationTestCase.php
1 <?php
2
3 use MediaWiki\Logger\LegacySpi;
4 use MediaWiki\Logger\LoggerFactory;
5 use MediaWiki\Logger\MonologSpi;
6 use MediaWiki\Logger\LogCapturingSpi;
7 use MediaWiki\MediaWikiServices;
8 use Psr\Log\LoggerInterface;
9 use Wikimedia\Rdbms\IDatabase;
10 use Wikimedia\Rdbms\IMaintainableDatabase;
11 use Wikimedia\Rdbms\Database;
12 use Wikimedia\TestingAccessWrapper;
13
14 /**
15 * @since 1.18
16 *
17 * Extend this class if you are testing classes which access global variables, methods, services
18 * or a storage backend.
19 *
20 * Consider using MediaWikiUnitTestCase and mocking dependencies if your code uses dependency
21 * injection and does not access any globals.
22 */
23 abstract class MediaWikiIntegrationTestCase extends PHPUnit\Framework\TestCase {
24
25 use MediaWikiCoversValidator;
26 use PHPUnit4And6Compat;
27
28 /**
29 * The original service locator. This is overridden during setUp().
30 *
31 * @var MediaWikiServices|null
32 */
33 private static $originalServices;
34
35 /**
36 * The local service locator, created during setUp().
37 * @var MediaWikiServices
38 */
39 private $localServices;
40
41 /**
42 * $called tracks whether the setUp and tearDown method has been called.
43 * class extending MediaWikiTestCase usually override setUp and tearDown
44 * but forget to call the parent.
45 *
46 * The array format takes a method name as key and anything as a value.
47 * By asserting the key exist, we know the child class has called the
48 * parent.
49 *
50 * This property must be private, we do not want child to override it,
51 * they should call the appropriate parent method instead.
52 */
53 private $called = [];
54
55 /**
56 * @var TestUser[]
57 * @since 1.20
58 */
59 public static $users;
60
61 /**
62 * Primary database
63 *
64 * @var Database
65 * @since 1.18
66 */
67 protected $db;
68
69 /**
70 * @var array
71 * @since 1.19
72 */
73 protected $tablesUsed = []; // tables with data
74
75 private static $useTemporaryTables = true;
76 private static $reuseDB = false;
77 private static $dbSetup = false;
78 private static $oldTablePrefix = '';
79
80 /**
81 * Original value of PHP's error_reporting setting.
82 *
83 * @var int
84 */
85 private $phpErrorLevel;
86
87 /**
88 * Holds the paths of temporary files/directories created through getNewTempFile,
89 * and getNewTempDirectory
90 *
91 * @var array
92 */
93 private $tmpFiles = [];
94
95 /**
96 * Holds original values of MediaWiki configuration settings
97 * to be restored in tearDown().
98 * See also setMwGlobals().
99 * @var array
100 */
101 private $mwGlobals = [];
102
103 /**
104 * Holds list of MediaWiki configuration settings to be unset in tearDown().
105 * See also setMwGlobals().
106 * @var array
107 */
108 private $mwGlobalsToUnset = [];
109
110 /**
111 * Holds original values of ini settings to be restored
112 * in tearDown().
113 * @see setIniSettings()
114 * @var array
115 */
116 private $iniSettings = [];
117
118 /**
119 * Holds original loggers which have been replaced by setLogger()
120 * @var LoggerInterface[]
121 */
122 private $loggers = [];
123
124 /**
125 * The CLI arguments passed through from phpunit.php
126 * @var array
127 */
128 private $cliArgs = [];
129
130 /**
131 * Holds a list of services that were overridden with setService(). Used for printing an error
132 * if overrideMwServices() overrides a service that was previously set.
133 * @var string[]
134 */
135 private $overriddenServices = [];
136
137 /**
138 * Table name prefixes. Oracle likes it shorter.
139 */
140 const DB_PREFIX = 'unittest_';
141 const ORA_DB_PREFIX = 'ut_';
142
143 /**
144 * @var array
145 * @since 1.18
146 */
147 protected $supportedDBs = [
148 'mysql',
149 'sqlite',
150 'postgres',
151 'oracle'
152 ];
153
154 public function __construct( $name = null, array $data = [], $dataName = '' ) {
155 parent::__construct( $name, $data, $dataName );
156
157 $this->backupGlobals = false;
158 $this->backupStaticAttributes = false;
159 }
160
161 public function __destruct() {
162 // Complain if self::setUp() was called, but not self::tearDown()
163 // $this->called['setUp'] will be checked by self::testMediaWikiTestCaseParentSetupCalled()
164 if ( isset( $this->called['setUp'] ) && !isset( $this->called['tearDown'] ) ) {
165 throw new MWException( static::class . "::tearDown() must call parent::tearDown()" );
166 }
167 }
168
169 private static function initializeForStandardPhpunitEntrypointIfNeeded() {
170 if ( function_exists( 'wfRequireOnceInGlobalScope' ) ) {
171 $IP = realpath( __DIR__ . '/../..' );
172 wfRequireOnceInGlobalScope( "$IP/includes/Defines.php" );
173 wfRequireOnceInGlobalScope( "$IP/includes/DefaultSettings.php" );
174 wfRequireOnceInGlobalScope( "$IP/includes/GlobalFunctions.php" );
175 wfRequireOnceInGlobalScope( "$IP/includes/Setup.php" );
176 wfRequireOnceInGlobalScope( "$IP/tests/common/TestsAutoLoader.php" );
177 TestSetup::applyInitialConfig();
178 }
179 }
180
181 public static function setUpBeforeClass() {
182 parent::setUpBeforeClass();
183 \PHPUnit\Framework\Assert::assertFileExists( 'LocalSettings.php' );
184 self::initializeForStandardPhpunitEntrypointIfNeeded();
185
186 // Get the original service locator
187 if ( !self::$originalServices ) {
188 self::$originalServices = MediaWikiServices::getInstance();
189 }
190 }
191
192 /**
193 * Convenience method for getting an immutable test user
194 *
195 * @since 1.28
196 *
197 * @param string|string[] $groups Groups the test user should be in.
198 * @return TestUser
199 */
200 public static function getTestUser( $groups = [] ) {
201 return TestUserRegistry::getImmutableTestUser( $groups );
202 }
203
204 /**
205 * Convenience method for getting a mutable test user
206 *
207 * @since 1.28
208 *
209 * @param string|string[] $groups Groups the test user should be added in.
210 * @return TestUser
211 */
212 public static function getMutableTestUser( $groups = [] ) {
213 return TestUserRegistry::getMutableTestUser( __CLASS__, $groups );
214 }
215
216 /**
217 * Convenience method for getting an immutable admin test user
218 *
219 * @since 1.28
220 *
221 * @param string[] $groups Groups the test user should be added to.
222 * @return TestUser
223 */
224 public static function getTestSysop() {
225 return self::getTestUser( [ 'sysop', 'bureaucrat' ] );
226 }
227
228 /**
229 * Returns a WikiPage representing an existing page.
230 *
231 * @since 1.32
232 *
233 * @param Title|string|null $title
234 * @return WikiPage
235 * @throws MWException If this test cases's needsDB() method doesn't return true.
236 * Test cases can use "@group Database" to enable database test support,
237 * or list the tables under testing in $this->tablesUsed, or override the
238 * needsDB() method.
239 */
240 protected function getExistingTestPage( $title = null ) {
241 if ( !$this->needsDB() ) {
242 throw new MWException( 'When testing which pages, the test cases\'s needsDB()' .
243 ' method should return true. Use @group Database or $this->tablesUsed.' );
244 }
245
246 $title = ( $title === null ) ? 'UTPage' : $title;
247 $title = is_string( $title ) ? Title::newFromText( $title ) : $title;
248 $page = WikiPage::factory( $title );
249
250 if ( !$page->exists() ) {
251 $user = self::getTestSysop()->getUser();
252 $page->doEditContent(
253 new WikitextContent( 'UTContent' ),
254 'UTPageSummary',
255 EDIT_NEW | EDIT_SUPPRESS_RC,
256 false,
257 $user
258 );
259 }
260
261 return $page;
262 }
263
264 /**
265 * Returns a WikiPage representing a non-existing page.
266 *
267 * @since 1.32
268 *
269 * @param Title|string|null $title
270 * @return WikiPage
271 * @throws MWException If this test cases's needsDB() method doesn't return true.
272 * Test cases can use "@group Database" to enable database test support,
273 * or list the tables under testing in $this->tablesUsed, or override the
274 * needsDB() method.
275 */
276 protected function getNonexistingTestPage( $title = null ) {
277 if ( !$this->needsDB() ) {
278 throw new MWException( 'When testing which pages, the test cases\'s needsDB()' .
279 ' method should return true. Use @group Database or $this->tablesUsed.' );
280 }
281
282 $title = ( $title === null ) ? 'UTPage-' . rand( 0, 100000 ) : $title;
283 $title = is_string( $title ) ? Title::newFromText( $title ) : $title;
284 $page = WikiPage::factory( $title );
285
286 if ( $page->exists() ) {
287 $page->doDeleteArticle( 'Testing' );
288 }
289
290 return $page;
291 }
292
293 /**
294 * @deprecated since 1.32
295 */
296 public static function prepareServices( Config $bootstrapConfig ) {
297 }
298
299 /**
300 * Create a config suitable for testing, based on a base config, default overrides,
301 * and custom overrides.
302 *
303 * @param Config|null $baseConfig
304 * @param Config|null $customOverrides
305 *
306 * @return Config
307 */
308 private static function makeTestConfig(
309 Config $baseConfig = null,
310 Config $customOverrides = null
311 ) {
312 $defaultOverrides = new HashConfig();
313
314 if ( !$baseConfig ) {
315 $baseConfig = self::$originalServices->getBootstrapConfig();
316 }
317
318 /* Some functions require some kind of caching, and will end up using the db,
319 * which we can't allow, as that would open a new connection for mysql.
320 * Replace with a HashBag. They would not be going to persist anyway.
321 */
322 $hashCache = [ 'class' => HashBagOStuff::class, 'reportDupes' => false ];
323 $objectCaches = [
324 CACHE_DB => $hashCache,
325 CACHE_ACCEL => $hashCache,
326 CACHE_MEMCACHED => $hashCache,
327 'apc' => $hashCache,
328 'apcu' => $hashCache,
329 'wincache' => $hashCache,
330 ] + $baseConfig->get( 'ObjectCaches' );
331
332 $defaultOverrides->set( 'ObjectCaches', $objectCaches );
333 $defaultOverrides->set( 'MainCacheType', CACHE_NONE );
334 $defaultOverrides->set( 'JobTypeConf', [ 'default' => [ 'class' => JobQueueMemory::class ] ] );
335
336 // Use a fast hash algorithm to hash passwords.
337 $defaultOverrides->set( 'PasswordDefault', 'A' );
338
339 $testConfig = $customOverrides
340 ? new MultiConfig( [ $customOverrides, $defaultOverrides, $baseConfig ] )
341 : new MultiConfig( [ $defaultOverrides, $baseConfig ] );
342
343 return $testConfig;
344 }
345
346 /**
347 * @param ConfigFactory $oldFactory
348 * @param Config[] $configurations
349 *
350 * @return Closure
351 */
352 private static function makeTestConfigFactoryInstantiator(
353 ConfigFactory $oldFactory,
354 array $configurations
355 ) {
356 return function ( MediaWikiServices $services ) use ( $oldFactory, $configurations ) {
357 $factory = new ConfigFactory();
358
359 // clone configurations from $oldFactory that are not overwritten by $configurations
360 $namesToClone = array_diff(
361 $oldFactory->getConfigNames(),
362 array_keys( $configurations )
363 );
364
365 foreach ( $namesToClone as $name ) {
366 $factory->register( $name, $oldFactory->makeConfig( $name ) );
367 }
368
369 foreach ( $configurations as $name => $config ) {
370 $factory->register( $name, $config );
371 }
372
373 return $factory;
374 };
375 }
376
377 /**
378 * Resets some non-service singleton instances and other static caches. It's not necessary to
379 * reset services here.
380 */
381 public static function resetNonServiceCaches() {
382 global $wgRequest, $wgJobClasses;
383
384 User::resetGetDefaultOptionsForTestsOnly();
385 foreach ( $wgJobClasses as $type => $class ) {
386 JobQueueGroup::singleton()->get( $type )->delete();
387 }
388 JobQueueGroup::destroySingletons();
389
390 ObjectCache::clear();
391 FileBackendGroup::destroySingleton();
392 DeferredUpdates::clearPendingUpdates();
393
394 // TODO: move global state into MediaWikiServices
395 RequestContext::resetMain();
396 if ( session_id() !== '' ) {
397 session_write_close();
398 session_id( '' );
399 }
400
401 $wgRequest = new FauxRequest();
402 MediaWiki\Session\SessionManager::resetCache();
403 }
404
405 public function run( PHPUnit_Framework_TestResult $result = null ) {
406 if ( $result instanceof MediaWikiTestResult ) {
407 $this->cliArgs = $result->getMediaWikiCliArgs();
408 }
409 $this->overrideMwServices();
410
411 if ( $this->needsDB() && !$this->isTestInDatabaseGroup() ) {
412 throw new Exception(
413 get_class( $this ) . ' apparently needsDB but is not in the Database group'
414 );
415 }
416
417 $needsResetDB = false;
418 if ( !self::$dbSetup || $this->needsDB() ) {
419 // set up a DB connection for this test to use
420
421 self::$useTemporaryTables = !$this->getCliArg( 'use-normal-tables' );
422 self::$reuseDB = $this->getCliArg( 'reuse-db' );
423
424 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
425 $this->db = $lb->getConnection( DB_MASTER );
426
427 $this->checkDbIsSupported();
428
429 if ( !self::$dbSetup ) {
430 $this->setupAllTestDBs();
431 $this->addCoreDBData();
432 }
433
434 // TODO: the DB setup should be done in setUpBeforeClass(), so the test DB
435 // is available in subclass's setUpBeforeClass() and setUp() methods.
436 // This would also remove the need for the HACK that is oncePerClass().
437 if ( $this->oncePerClass() ) {
438 $this->setUpSchema( $this->db );
439 $this->resetDB( $this->db, $this->tablesUsed );
440 $this->addDBDataOnce();
441 }
442
443 $this->addDBData();
444 $needsResetDB = true;
445 }
446
447 parent::run( $result );
448
449 // We don't mind if we override already-overridden services during cleanup
450 $this->overriddenServices = [];
451
452 if ( $needsResetDB ) {
453 $this->resetDB( $this->db, $this->tablesUsed );
454 }
455
456 self::restoreMwServices();
457 $this->localServices = null;
458 }
459
460 /**
461 * @return bool
462 */
463 private function oncePerClass() {
464 // Remember current test class in the database connection,
465 // so we know when we need to run addData.
466
467 $class = static::class;
468
469 $first = !isset( $this->db->_hasDataForTestClass )
470 || $this->db->_hasDataForTestClass !== $class;
471
472 $this->db->_hasDataForTestClass = $class;
473 return $first;
474 }
475
476 /**
477 * @since 1.21
478 *
479 * @return bool
480 */
481 public function usesTemporaryTables() {
482 return self::$useTemporaryTables;
483 }
484
485 /**
486 * Obtains a new temporary file name
487 *
488 * The obtained filename is enlisted to be removed upon tearDown
489 *
490 * @since 1.20
491 *
492 * @return string Absolute name of the temporary file
493 */
494 protected function getNewTempFile() {
495 $fileName = tempnam(
496 wfTempDir(),
497 // Avoid backslashes here as they result in inconsistent results
498 // between Windows and other OS, as well as between functions
499 // that try to normalise these in one or both directions.
500 // For example, tempnam rejects directory separators in the prefix which
501 // means it rejects any namespaced class on Windows.
502 // And then there is, wfMkdirParents which normalises paths always
503 // whereas most other PHP and MW functions do not.
504 'MW_PHPUnit_' . strtr( static::class, [ '\\' => '_' ] ) . '_'
505 );
506 $this->tmpFiles[] = $fileName;
507
508 return $fileName;
509 }
510
511 /**
512 * obtains a new temporary directory
513 *
514 * The obtained directory is enlisted to be removed (recursively with all its contained
515 * files) upon tearDown.
516 *
517 * @since 1.20
518 *
519 * @return string Absolute name of the temporary directory
520 */
521 protected function getNewTempDirectory() {
522 // Starting of with a temporary *file*.
523 $fileName = $this->getNewTempFile();
524
525 // Converting the temporary file to a *directory*.
526 // The following is not atomic, but at least we now have a single place,
527 // where temporary directory creation is bundled and can be improved.
528 unlink( $fileName );
529 // If this fails for some reason, PHP will warn and fail the test.
530 mkdir( $fileName, 0777, /* recursive = */ true );
531
532 return $fileName;
533 }
534
535 protected function setUp() {
536 parent::setUp();
537 $this->called['setUp'] = true;
538
539 $this->phpErrorLevel = intval( ini_get( 'error_reporting' ) );
540
541 $this->overriddenServices = [];
542
543 // Cleaning up temporary files
544 foreach ( $this->tmpFiles as $fileName ) {
545 if ( is_file( $fileName ) || ( is_link( $fileName ) ) ) {
546 unlink( $fileName );
547 } elseif ( is_dir( $fileName ) ) {
548 wfRecursiveRemoveDir( $fileName );
549 }
550 }
551
552 if ( $this->needsDB() && $this->db ) {
553 // Clean up open transactions
554 while ( $this->db->trxLevel() > 0 ) {
555 $this->db->rollback( __METHOD__, 'flush' );
556 }
557 // Check for unsafe queries
558 if ( $this->db->getType() === 'mysql' ) {
559 $this->db->query( "SET sql_mode = 'STRICT_ALL_TABLES'", __METHOD__ );
560 }
561 }
562
563 // Reset all caches between tests.
564 self::resetNonServiceCaches();
565
566 // XXX: reset maintenance triggers
567 // Hook into period lag checks which often happen in long-running scripts
568 $lbFactory = $this->localServices->getDBLoadBalancerFactory();
569 Maintenance::setLBFactoryTriggers( $lbFactory, $this->localServices->getMainConfig() );
570
571 ob_start( 'MediaWikiTestCase::wfResetOutputBuffersBarrier' );
572 }
573
574 protected function addTmpFiles( $files ) {
575 $this->tmpFiles = array_merge( $this->tmpFiles, (array)$files );
576 }
577
578 // @todo Make const when we no longer support HHVM (T192166)
579 private static $namespaceAffectingSettings = [
580 'wgAllowImageMoving',
581 'wgCanonicalNamespaceNames',
582 'wgCapitalLinkOverrides',
583 'wgCapitalLinks',
584 'wgContentNamespaces',
585 'wgExtensionMessagesFiles',
586 'wgExtensionNamespaces',
587 'wgExtraNamespaces',
588 'wgExtraSignatureNamespaces',
589 'wgNamespaceContentModels',
590 'wgNamespaceProtection',
591 'wgNamespacesWithSubpages',
592 'wgNonincludableNamespaces',
593 'wgRestrictionLevels',
594 ];
595
596 protected function tearDown() {
597 global $wgRequest, $wgSQLMode;
598
599 $status = ob_get_status();
600 if ( isset( $status['name'] ) &&
601 $status['name'] === 'MediaWikiTestCase::wfResetOutputBuffersBarrier'
602 ) {
603 ob_end_flush();
604 }
605
606 $this->called['tearDown'] = true;
607 // Cleaning up temporary files
608 foreach ( $this->tmpFiles as $fileName ) {
609 if ( is_file( $fileName ) || ( is_link( $fileName ) ) ) {
610 unlink( $fileName );
611 } elseif ( is_dir( $fileName ) ) {
612 wfRecursiveRemoveDir( $fileName );
613 }
614 }
615
616 if ( $this->needsDB() && $this->db ) {
617 // Clean up open transactions
618 while ( $this->db->trxLevel() > 0 ) {
619 $this->db->rollback( __METHOD__, 'flush' );
620 }
621 if ( $this->db->getType() === 'mysql' ) {
622 $this->db->query( "SET sql_mode = " . $this->db->addQuotes( $wgSQLMode ),
623 __METHOD__ );
624 }
625 }
626
627 // Re-enable any disabled deprecation warnings
628 MWDebug::clearLog();
629 // Restore mw globals
630 foreach ( $this->mwGlobals as $key => $value ) {
631 $GLOBALS[$key] = $value;
632 }
633 foreach ( $this->mwGlobalsToUnset as $value ) {
634 unset( $GLOBALS[$value] );
635 }
636 foreach ( $this->iniSettings as $name => $value ) {
637 ini_set( $name, $value );
638 }
639 if (
640 array_intersect( self::$namespaceAffectingSettings, array_keys( $this->mwGlobals ) ) ||
641 array_intersect( self::$namespaceAffectingSettings, $this->mwGlobalsToUnset )
642 ) {
643 $this->resetNamespaces();
644 }
645 $this->mwGlobals = [];
646 $this->mwGlobalsToUnset = [];
647 $this->restoreLoggers();
648
649 // TODO: move global state into MediaWikiServices
650 RequestContext::resetMain();
651 if ( session_id() !== '' ) {
652 session_write_close();
653 session_id( '' );
654 }
655 $wgRequest = new FauxRequest();
656 MediaWiki\Session\SessionManager::resetCache();
657 MediaWiki\Auth\AuthManager::resetCache();
658
659 $phpErrorLevel = intval( ini_get( 'error_reporting' ) );
660
661 if ( $phpErrorLevel !== $this->phpErrorLevel ) {
662 ini_set( 'error_reporting', $this->phpErrorLevel );
663
664 $oldHex = strtoupper( dechex( $this->phpErrorLevel ) );
665 $newHex = strtoupper( dechex( $phpErrorLevel ) );
666 $message = "PHP error_reporting setting was left dirty: "
667 . "was 0x$oldHex before test, 0x$newHex after test!";
668
669 $this->fail( $message );
670 }
671
672 parent::tearDown();
673 }
674
675 /**
676 * Make sure MediaWikiTestCase extending classes have called their
677 * parent setUp method
678 *
679 * With strict coverage activated in PHP_CodeCoverage, this test would be
680 * marked as risky without the following annotation (T152923).
681 * @coversNothing
682 */
683 final public function testMediaWikiTestCaseParentSetupCalled() {
684 $this->assertArrayHasKey( 'setUp', $this->called,
685 static::class . '::setUp() must call parent::setUp()'
686 );
687 }
688
689 /**
690 * Sets a service, maintaining a stashed version of the previous service to be
691 * restored in tearDown.
692 *
693 * @note Tests must not call overrideMwServices() after calling setService(), since that would
694 * lose the new service instance. Since 1.34, resetServices() can be used instead, which
695 * would reset other services, but retain any services set using setService().
696 * This means that once a service is set using this method, it cannot be reverted to
697 * the original service within the same test method. The original service is restored
698 * in tearDown after the test method has terminated.
699 *
700 * @param string $name
701 * @param object $service The service instance, or a callable that returns the service instance.
702 *
703 * @since 1.27
704 *
705 */
706 protected function setService( $name, $service ) {
707 if ( !$this->localServices ) {
708 throw new Exception( __METHOD__ . ' must be called after MediaWikiTestCase::run()' );
709 }
710
711 if ( $this->localServices !== MediaWikiServices::getInstance() ) {
712 throw new Exception( __METHOD__ . ' will not work because the global MediaWikiServices '
713 . 'instance has been replaced by test code.' );
714 }
715
716 if ( is_callable( $service ) ) {
717 $instantiator = $service;
718 } else {
719 $instantiator = function () use ( $service ) {
720 return $service;
721 };
722 }
723
724 $this->overriddenServices[] = $name;
725
726 $this->localServices->disableService( $name );
727 $this->localServices->redefineService(
728 $name,
729 $instantiator
730 );
731
732 if ( $name === 'ContentLanguage' ) {
733 $this->doSetMwGlobals( [ 'wgContLang' => $this->localServices->getContentLanguage() ] );
734 }
735 }
736
737 /**
738 * Sets a global, maintaining a stashed version of the previous global to be
739 * restored in tearDown
740 *
741 * The key is added to the array of globals that will be reset afterwards
742 * in the tearDown().
743 *
744 * It may be necessary to call resetServices() to allow any changed configuration variables
745 * to take effect on services that get initialized based on these variables.
746 *
747 * @par Example
748 * @code
749 * protected function setUp() {
750 * $this->setMwGlobals( 'wgRestrictStuff', true );
751 * }
752 *
753 * function testFoo() {}
754 *
755 * function testBar() {}
756 * $this->assertTrue( self::getX()->doStuff() );
757 *
758 * $this->setMwGlobals( 'wgRestrictStuff', false );
759 * $this->assertTrue( self::getX()->doStuff() );
760 * }
761 *
762 * function testQuux() {}
763 * @endcode
764 *
765 * @param array|string $pairs Key to the global variable, or an array
766 * of key/value pairs.
767 * @param mixed|null $value Value to set the global to (ignored
768 * if an array is given as first argument).
769 *
770 * @note To allow changes to global variables to take effect on global service instances,
771 * call resetServices().
772 *
773 * @since 1.21
774 */
775 protected function setMwGlobals( $pairs, $value = null ) {
776 if ( is_string( $pairs ) ) {
777 $pairs = [ $pairs => $value ];
778 }
779
780 if ( isset( $pairs['wgContLang'] ) ) {
781 throw new MWException(
782 'No setting $wgContLang, use setContentLang() or setService( \'ContentLanguage\' )'
783 );
784 }
785
786 $this->doSetMwGlobals( $pairs, $value );
787 }
788
789 /**
790 * An internal method that allows setService() to set globals that tests are not supposed to
791 * touch.
792 */
793 private function doSetMwGlobals( $pairs, $value = null ) {
794 $this->doStashMwGlobals( array_keys( $pairs ) );
795
796 foreach ( $pairs as $key => $value ) {
797 $GLOBALS[$key] = $value;
798 }
799
800 if ( array_intersect( self::$namespaceAffectingSettings, array_keys( $pairs ) ) ) {
801 $this->resetNamespaces();
802 }
803 }
804
805 /**
806 * Set an ini setting for the duration of the test
807 * @param string $name Name of the setting
808 * @param string $value Value to set
809 * @since 1.32
810 */
811 protected function setIniSetting( $name, $value ) {
812 $original = ini_get( $name );
813 $this->iniSettings[$name] = $original;
814 ini_set( $name, $value );
815 }
816
817 /**
818 * Must be called whenever namespaces are changed, e.g., $wgExtraNamespaces is altered.
819 * Otherwise old namespace data will lurk and cause bugs.
820 */
821 private function resetNamespaces() {
822 if ( !$this->localServices ) {
823 throw new Exception( __METHOD__ . ' must be called after MediaWikiTestCase::run()' );
824 }
825
826 if ( $this->localServices !== MediaWikiServices::getInstance() ) {
827 throw new Exception( __METHOD__ . ' will not work because the global MediaWikiServices '
828 . 'instance has been replaced by test code.' );
829 }
830
831 Language::clearCaches();
832 }
833
834 /**
835 * Check if we can back up a value by performing a shallow copy.
836 * Values which fail this test are copied recursively.
837 *
838 * @param mixed $value
839 * @return bool True if a shallow copy will do; false if a deep copy
840 * is required.
841 */
842 private static function canShallowCopy( $value ) {
843 if ( is_scalar( $value ) || $value === null ) {
844 return true;
845 }
846 if ( is_array( $value ) ) {
847 foreach ( $value as $subValue ) {
848 if ( !is_scalar( $subValue ) && $subValue !== null ) {
849 return false;
850 }
851 }
852 return true;
853 }
854 return false;
855 }
856
857 private function doStashMwGlobals( $globalKeys ) {
858 if ( is_string( $globalKeys ) ) {
859 $globalKeys = [ $globalKeys ];
860 }
861
862 foreach ( $globalKeys as $globalKey ) {
863 // NOTE: make sure we only save the global once or a second call to
864 // setMwGlobals() on the same global would override the original
865 // value.
866 if (
867 !array_key_exists( $globalKey, $this->mwGlobals ) &&
868 !array_key_exists( $globalKey, $this->mwGlobalsToUnset )
869 ) {
870 if ( !array_key_exists( $globalKey, $GLOBALS ) ) {
871 $this->mwGlobalsToUnset[$globalKey] = $globalKey;
872 continue;
873 }
874 // NOTE: we serialize then unserialize the value in case it is an object
875 // this stops any objects being passed by reference. We could use clone
876 // and if is_object but this does account for objects within objects!
877 if ( self::canShallowCopy( $GLOBALS[$globalKey] ) ) {
878 $this->mwGlobals[$globalKey] = $GLOBALS[$globalKey];
879 } elseif (
880 // Many MediaWiki types are safe to clone. These are the
881 // ones that are most commonly stashed.
882 $GLOBALS[$globalKey] instanceof Language ||
883 $GLOBALS[$globalKey] instanceof User ||
884 $GLOBALS[$globalKey] instanceof FauxRequest
885 ) {
886 $this->mwGlobals[$globalKey] = clone $GLOBALS[$globalKey];
887 } elseif ( $this->containsClosure( $GLOBALS[$globalKey] ) ) {
888 // Serializing Closure only gives a warning on HHVM while
889 // it throws an Exception on Zend.
890 // Workaround for https://github.com/facebook/hhvm/issues/6206
891 $this->mwGlobals[$globalKey] = $GLOBALS[$globalKey];
892 } else {
893 try {
894 $this->mwGlobals[$globalKey] = unserialize( serialize( $GLOBALS[$globalKey] ) );
895 } catch ( Exception $e ) {
896 $this->mwGlobals[$globalKey] = $GLOBALS[$globalKey];
897 }
898 }
899 }
900 }
901 }
902
903 /**
904 * @param mixed $var
905 * @param int $maxDepth
906 *
907 * @return bool
908 */
909 private function containsClosure( $var, $maxDepth = 15 ) {
910 if ( $var instanceof Closure ) {
911 return true;
912 }
913 if ( !is_array( $var ) || $maxDepth === 0 ) {
914 return false;
915 }
916
917 foreach ( $var as $value ) {
918 if ( $this->containsClosure( $value, $maxDepth - 1 ) ) {
919 return true;
920 }
921 }
922 return false;
923 }
924
925 /**
926 * Merges the given values into a MW global array variable.
927 * Useful for setting some entries in a configuration array, instead of
928 * setting the entire array.
929 *
930 * It may be necessary to call resetServices() to allow any changed configuration variables
931 * to take effect on services that get initialized based on these variables.
932 *
933 * @param string $name The name of the global, as in wgFooBar
934 * @param array $values The array containing the entries to set in that global
935 *
936 * @throws MWException If the designated global is not an array.
937 *
938 * @note To allow changes to global variables to take effect on global service instances,
939 * call resetServices().
940 *
941 * @since 1.21
942 */
943 protected function mergeMwGlobalArrayValue( $name, $values ) {
944 if ( !isset( $GLOBALS[$name] ) ) {
945 $merged = $values;
946 } else {
947 if ( !is_array( $GLOBALS[$name] ) ) {
948 throw new MWException( "MW global $name is not an array." );
949 }
950
951 // NOTE: do not use array_merge, it screws up for numeric keys.
952 $merged = $GLOBALS[$name];
953 foreach ( $values as $k => $v ) {
954 $merged[$k] = $v;
955 }
956 }
957
958 $this->setMwGlobals( $name, $merged );
959 }
960
961 /**
962 * Resets service instances in the global instance of MediaWikiServices.
963 *
964 * In contrast to overrideMwServices(), this does not create a new MediaWikiServices instance,
965 * and it preserves any service instances set via setService().
966 *
967 * The primary use case for this method is to allow changes to global configuration variables
968 * to take effect on services that get initialized based on these global configuration
969 * variables. Similarly, it may be necessary to call resetServices() after calling setService(),
970 * so the newly set service gets picked up by any other service definitions that may use it.
971 *
972 * @see MediaWikiServices::resetServiceForTesting.
973 *
974 * @since 1.34
975 */
976 protected function resetServices() {
977 // Reset but don't destroy service instances supplied via setService().
978 foreach ( $this->overriddenServices as $name ) {
979 $this->localServices->resetServiceForTesting( $name, false );
980 }
981
982 // Reset all services with the destroy flag set.
983 // This will not have any effect on services that had already been reset above.
984 foreach ( $this->localServices->getServiceNames() as $name ) {
985 $this->localServices->resetServiceForTesting( $name, true );
986 }
987
988 self::resetGlobalParser();
989 }
990
991 /**
992 * Installs a new global instance of MediaWikiServices, allowing test cases to override
993 * settings and services.
994 *
995 * This method can be used to set up specific services or configuration as a fixture.
996 * It should not be used to reset services in between stages of a test - instead, the test
997 * should either be split, or resetServices() should be used.
998 *
999 * If called with no parameters, this method restores all services to their default state.
1000 * This is done automatically before each test to isolate tests from any modification
1001 * to settings and services that may have been applied by previous tests.
1002 * That means that the effect of calling overrideMwServices() is undone before the next
1003 * call to a test method.
1004 *
1005 * @note Calling this after having called setService() in the same test method (or the
1006 * associated setUp) will result in an MWException.
1007 * Tests should use either overrideMwServices() or setService(), but not mix both.
1008 * Since 1.34, resetServices() is available as an alternative compatible with setService().
1009 *
1010 * @since 1.27
1011 *
1012 * @param Config|null $configOverrides Configuration overrides for the new MediaWikiServices
1013 * instance.
1014 * @param callable[] $services An associative array of services to re-define. Keys are service
1015 * names, values are callables.
1016 *
1017 * @return MediaWikiServices
1018 * @throws MWException
1019 */
1020 protected function overrideMwServices(
1021 Config $configOverrides = null, array $services = []
1022 ) {
1023 if ( $this->overriddenServices ) {
1024 throw new MWException(
1025 'The following services were set and are now being unset by overrideMwServices: ' .
1026 implode( ', ', $this->overriddenServices )
1027 );
1028 }
1029 $newInstance = self::installMockMwServices( $configOverrides );
1030
1031 if ( $this->localServices ) {
1032 $this->localServices->destroy();
1033 }
1034
1035 $this->localServices = $newInstance;
1036
1037 foreach ( $services as $name => $callback ) {
1038 $newInstance->redefineService( $name, $callback );
1039 }
1040
1041 self::resetGlobalParser();
1042
1043 return $newInstance;
1044 }
1045
1046 /**
1047 * Creates a new "mock" MediaWikiServices instance, and installs it.
1048 * This effectively resets all cached states in services, with the exception of
1049 * the ConfigFactory and the DBLoadBalancerFactory service, which are inherited from
1050 * the original MediaWikiServices.
1051 *
1052 * @note The new original MediaWikiServices instance can later be restored by calling
1053 * restoreMwServices(). That original is determined by the first call to this method, or
1054 * by setUpBeforeClass, whichever is called first. The caller is responsible for managing
1055 * and, when appropriate, destroying any other MediaWikiServices instances that may get
1056 * replaced when calling this method.
1057 *
1058 * @param Config|null $configOverrides Configuration overrides for the new MediaWikiServices
1059 * instance.
1060 *
1061 * @return MediaWikiServices the new mock service locator.
1062 */
1063 public static function installMockMwServices( Config $configOverrides = null ) {
1064 // Make sure we have the original service locator
1065 if ( !self::$originalServices ) {
1066 self::$originalServices = MediaWikiServices::getInstance();
1067 }
1068
1069 if ( !$configOverrides ) {
1070 $configOverrides = new HashConfig();
1071 }
1072
1073 $oldConfigFactory = self::$originalServices->getConfigFactory();
1074 $oldLoadBalancerFactory = self::$originalServices->getDBLoadBalancerFactory();
1075
1076 $testConfig = self::makeTestConfig( null, $configOverrides );
1077 $newServices = new MediaWikiServices( $testConfig );
1078
1079 // Load the default wiring from the specified files.
1080 // NOTE: this logic mirrors the logic in MediaWikiServices::newInstance.
1081 $wiringFiles = $testConfig->get( 'ServiceWiringFiles' );
1082 $newServices->loadWiringFiles( $wiringFiles );
1083
1084 // Provide a traditional hook point to allow extensions to configure services.
1085 Hooks::run( 'MediaWikiServices', [ $newServices ] );
1086
1087 // Use bootstrap config for all configuration.
1088 // This allows config overrides via global variables to take effect.
1089 $bootstrapConfig = $newServices->getBootstrapConfig();
1090 $newServices->resetServiceForTesting( 'ConfigFactory' );
1091 $newServices->redefineService(
1092 'ConfigFactory',
1093 self::makeTestConfigFactoryInstantiator(
1094 $oldConfigFactory,
1095 [ 'main' => $bootstrapConfig ]
1096 )
1097 );
1098 $newServices->resetServiceForTesting( 'DBLoadBalancerFactory' );
1099 $newServices->redefineService(
1100 'DBLoadBalancerFactory',
1101 function ( MediaWikiServices $services ) use ( $oldLoadBalancerFactory ) {
1102 return $oldLoadBalancerFactory;
1103 }
1104 );
1105
1106 MediaWikiServices::forceGlobalInstance( $newServices );
1107
1108 self::resetGlobalParser();
1109
1110 return $newServices;
1111 }
1112
1113 /**
1114 * Restores the original, non-mock MediaWikiServices instance.
1115 * The previously active MediaWikiServices instance is destroyed,
1116 * if it is different from the original that is to be restored.
1117 *
1118 * @note this if for internal use by test framework code. It should never be
1119 * called from inside a test case, a data provider, or a setUp or tearDown method.
1120 *
1121 * @return bool true if the original service locator was restored,
1122 * false if there was nothing too do.
1123 */
1124 public static function restoreMwServices() {
1125 if ( !self::$originalServices ) {
1126 return false;
1127 }
1128
1129 $currentServices = MediaWikiServices::getInstance();
1130
1131 if ( self::$originalServices === $currentServices ) {
1132 return false;
1133 }
1134
1135 MediaWikiServices::forceGlobalInstance( self::$originalServices );
1136 $currentServices->destroy();
1137
1138 self::resetGlobalParser();
1139
1140 return true;
1141 }
1142
1143 /**
1144 * If $wgParser has been unstubbed, replace it with a fresh one so it picks up any config
1145 * changes. $wgParser is deprecated, but we still support it for now.
1146 */
1147 private static function resetGlobalParser() {
1148 // phpcs:ignore MediaWiki.Usage.DeprecatedGlobalVariables.Deprecated$wgParser
1149 global $wgParser;
1150 if ( $wgParser instanceof StubObject ) {
1151 return;
1152 }
1153 $wgParser = new StubObject( 'wgParser', function () {
1154 return MediaWikiServices::getInstance()->getParser();
1155 } );
1156 }
1157
1158 /**
1159 * @since 1.27
1160 * @param string|Language $lang
1161 */
1162 public function setUserLang( $lang ) {
1163 RequestContext::getMain()->setLanguage( $lang );
1164 $this->setMwGlobals( 'wgLang', RequestContext::getMain()->getLanguage() );
1165 }
1166
1167 /**
1168 * @since 1.27
1169 * @param string|Language $lang
1170 */
1171 public function setContentLang( $lang ) {
1172 if ( $lang instanceof Language ) {
1173 $this->setMwGlobals( 'wgLanguageCode', $lang->getCode() );
1174 // Set to the exact object requested
1175 $this->setService( 'ContentLanguage', $lang );
1176 } else {
1177 $this->setMwGlobals( 'wgLanguageCode', $lang );
1178 // Let the service handler make up the object. Avoid calling setService(), because if
1179 // we do, overrideMwServices() will complain if it's called later on.
1180 $services = MediaWikiServices::getInstance();
1181 $services->resetServiceForTesting( 'ContentLanguage' );
1182 $this->doSetMwGlobals( [ 'wgContLang' => $services->getContentLanguage() ] );
1183 }
1184 }
1185
1186 /**
1187 * Alters $wgGroupPermissions for the duration of the test. Can be called
1188 * with an array, like
1189 * [ '*' => [ 'read' => false ], 'user' => [ 'read' => false ] ]
1190 * or three values to set a single permission, like
1191 * $this->setGroupPermissions( '*', 'read', false );
1192 *
1193 * @since 1.31
1194 * @param array|string $newPerms Either an array of permissions to change,
1195 * in which case the next two parameters are ignored; or a single string
1196 * identifying a group, to use with the next two parameters.
1197 * @param string|null $newKey
1198 * @param mixed|null $newValue
1199 */
1200 public function setGroupPermissions( $newPerms, $newKey = null, $newValue = null ) {
1201 global $wgGroupPermissions;
1202
1203 if ( is_string( $newPerms ) ) {
1204 $newPerms = [ $newPerms => [ $newKey => $newValue ] ];
1205 }
1206
1207 $newPermissions = $wgGroupPermissions;
1208 foreach ( $newPerms as $group => $permissions ) {
1209 foreach ( $permissions as $key => $value ) {
1210 $newPermissions[$group][$key] = $value;
1211 }
1212 }
1213
1214 $this->setMwGlobals( 'wgGroupPermissions', $newPermissions );
1215
1216 // Reset services so they pick up the new permissions.
1217 // Resetting just PermissionManager is not sufficient, since other services may
1218 // have the old instance of PermissionManager injected.
1219 $this->resetServices();
1220 }
1221
1222 /**
1223 *
1224 * @since 1.34
1225 * Sets the logger for a specified channel, for the duration of the test.
1226 * @since 1.27
1227 * @param string $channel
1228 * @param LoggerInterface $logger
1229 */
1230 protected function setLogger( $channel, LoggerInterface $logger ) {
1231 // TODO: Once loggers are managed by MediaWikiServices, use
1232 // resetServiceForTesting() to set loggers.
1233
1234 $provider = LoggerFactory::getProvider();
1235 $wrappedProvider = TestingAccessWrapper::newFromObject( $provider );
1236 $singletons = $wrappedProvider->singletons;
1237 if ( $provider instanceof MonologSpi ) {
1238 if ( !isset( $this->loggers[$channel] ) ) {
1239 $this->loggers[$channel] = $singletons['loggers'][$channel] ?? null;
1240 }
1241 $singletons['loggers'][$channel] = $logger;
1242 } elseif ( $provider instanceof LegacySpi || $provider instanceof LogCapturingSpi ) {
1243 if ( !isset( $this->loggers[$channel] ) ) {
1244 $this->loggers[$channel] = $singletons[$channel] ?? null;
1245 }
1246 $singletons[$channel] = $logger;
1247 } else {
1248 throw new LogicException( __METHOD__ . ': setting a logger for ' . get_class( $provider )
1249 . ' is not implemented' );
1250 }
1251 $wrappedProvider->singletons = $singletons;
1252 }
1253
1254 /**
1255 * Restores loggers replaced by setLogger().
1256 * @since 1.27
1257 */
1258 private function restoreLoggers() {
1259 $provider = LoggerFactory::getProvider();
1260 $wrappedProvider = TestingAccessWrapper::newFromObject( $provider );
1261 $singletons = $wrappedProvider->singletons;
1262 foreach ( $this->loggers as $channel => $logger ) {
1263 if ( $provider instanceof MonologSpi ) {
1264 if ( $logger === null ) {
1265 unset( $singletons['loggers'][$channel] );
1266 } else {
1267 $singletons['loggers'][$channel] = $logger;
1268 }
1269 } elseif ( $provider instanceof LegacySpi || $provider instanceof LogCapturingSpi ) {
1270 if ( $logger === null ) {
1271 unset( $singletons[$channel] );
1272 } else {
1273 $singletons[$channel] = $logger;
1274 }
1275 }
1276 }
1277 $wrappedProvider->singletons = $singletons;
1278 $this->loggers = [];
1279 }
1280
1281 /**
1282 * @return string
1283 * @since 1.18
1284 */
1285 public function dbPrefix() {
1286 return self::getTestPrefixFor( $this->db );
1287 }
1288
1289 /**
1290 * @param IDatabase $db
1291 * @return string
1292 * @since 1.32
1293 */
1294 public static function getTestPrefixFor( IDatabase $db ) {
1295 return $db->getType() == 'oracle' ? self::ORA_DB_PREFIX : self::DB_PREFIX;
1296 }
1297
1298 /**
1299 * @return bool
1300 * @since 1.18
1301 */
1302 public function needsDB() {
1303 // If the test says it uses database tables, it needs the database
1304 return $this->tablesUsed || $this->isTestInDatabaseGroup();
1305 }
1306
1307 /**
1308 * @return bool
1309 * @since 1.32
1310 */
1311 protected function isTestInDatabaseGroup() {
1312 // If the test class says it belongs to the Database group, it needs the database.
1313 // NOTE: This ONLY checks for the group in the class level doc comment.
1314 $rc = new ReflectionClass( $this );
1315 return (bool)preg_match( '/@group +Database/im', $rc->getDocComment() );
1316 }
1317
1318 /**
1319 * Insert a new page.
1320 *
1321 * Should be called from addDBData().
1322 *
1323 * @since 1.25 ($namespace in 1.28)
1324 * @param string|Title $pageName Page name or title
1325 * @param string $text Page's content
1326 * @param int|null $namespace Namespace id (name cannot already contain namespace)
1327 * @param User|null $user If null, static::getTestSysop()->getUser() is used.
1328 * @return array Title object and page id
1329 * @throws MWException If this test cases's needsDB() method doesn't return true.
1330 * Test cases can use "@group Database" to enable database test support,
1331 * or list the tables under testing in $this->tablesUsed, or override the
1332 * needsDB() method.
1333 */
1334 protected function insertPage(
1335 $pageName,
1336 $text = 'Sample page for unit test.',
1337 $namespace = null,
1338 User $user = null
1339 ) {
1340 if ( !$this->needsDB() ) {
1341 throw new MWException( 'When testing which pages, the test cases\'s needsDB()' .
1342 ' method should return true. Use @group Database or $this->tablesUsed.' );
1343 }
1344
1345 if ( is_string( $pageName ) ) {
1346 $title = Title::newFromText( $pageName, $namespace );
1347 } else {
1348 $title = $pageName;
1349 }
1350
1351 if ( !$user ) {
1352 $user = static::getTestSysop()->getUser();
1353 }
1354 $comment = __METHOD__ . ': Sample page for unit test.';
1355
1356 $page = WikiPage::factory( $title );
1357 $page->doEditContent( ContentHandler::makeContent( $text, $title ), $comment, 0, false, $user );
1358
1359 return [
1360 'title' => $title,
1361 'id' => $page->getId(),
1362 ];
1363 }
1364
1365 /**
1366 * Stub. If a test suite needs to add additional data to the database, it should
1367 * implement this method and do so. This method is called once per test suite
1368 * (i.e. once per class).
1369 *
1370 * Note data added by this method may be removed by resetDB() depending on
1371 * the contents of $tablesUsed.
1372 *
1373 * To add additional data between test function runs, override prepareDB().
1374 *
1375 * @see addDBData()
1376 * @see resetDB()
1377 *
1378 * @since 1.27
1379 */
1380 public function addDBDataOnce() {
1381 }
1382
1383 /**
1384 * Stub. Subclasses may override this to prepare the database.
1385 * Called before every test run (test function or data set).
1386 *
1387 * @see addDBDataOnce()
1388 * @see resetDB()
1389 *
1390 * @since 1.18
1391 */
1392 public function addDBData() {
1393 }
1394
1395 /**
1396 * @since 1.32
1397 */
1398 protected function addCoreDBData() {
1399 if ( $this->db->getType() == 'oracle' ) {
1400 # Insert 0 user to prevent FK violations
1401 # Anonymous user
1402 if ( !$this->db->selectField( 'user', '1', [ 'user_id' => 0 ] ) ) {
1403 $this->db->insert( 'user', [
1404 'user_id' => 0,
1405 'user_name' => 'Anonymous' ], __METHOD__, [ 'IGNORE' ] );
1406 }
1407
1408 # Insert 0 page to prevent FK violations
1409 # Blank page
1410 if ( !$this->db->selectField( 'page', '1', [ 'page_id' => 0 ] ) ) {
1411 $this->db->insert( 'page', [
1412 'page_id' => 0,
1413 'page_namespace' => 0,
1414 'page_title' => ' ',
1415 'page_restrictions' => null,
1416 'page_is_redirect' => 0,
1417 'page_is_new' => 0,
1418 'page_random' => 0,
1419 'page_touched' => $this->db->timestamp(),
1420 'page_latest' => 0,
1421 'page_len' => 0 ], __METHOD__, [ 'IGNORE' ] );
1422 }
1423 }
1424
1425 SiteStatsInit::doPlaceholderInit();
1426
1427 User::resetIdByNameCache();
1428
1429 // Make sysop user
1430 $user = static::getTestSysop()->getUser();
1431
1432 // Make 1 page with 1 revision
1433 $page = WikiPage::factory( Title::newFromText( 'UTPage' ) );
1434 if ( $page->getId() == 0 ) {
1435 $page->doEditContent(
1436 new WikitextContent( 'UTContent' ),
1437 'UTPageSummary',
1438 EDIT_NEW | EDIT_SUPPRESS_RC,
1439 false,
1440 $user
1441 );
1442 // an edit always attempt to purge backlink links such as history
1443 // pages. That is unnecessary.
1444 JobQueueGroup::singleton()->get( 'htmlCacheUpdate' )->delete();
1445 // WikiPages::doEditUpdates randomly adds RC purges
1446 JobQueueGroup::singleton()->get( 'recentChangesUpdate' )->delete();
1447
1448 // doEditContent() probably started the session via
1449 // User::loadFromSession(). Close it now.
1450 if ( session_id() !== '' ) {
1451 session_write_close();
1452 session_id( '' );
1453 }
1454 }
1455 }
1456
1457 /**
1458 * Restores MediaWiki to using the table set (table prefix) it was using before
1459 * setupTestDB() was called. Useful if we need to perform database operations
1460 * after the test run has finished (such as saving logs or profiling info).
1461 *
1462 * This is called by phpunit/bootstrap.php after the last test.
1463 *
1464 * @since 1.21
1465 */
1466 public static function teardownTestDB() {
1467 global $wgJobClasses;
1468
1469 if ( !self::$dbSetup ) {
1470 return;
1471 }
1472
1473 Hooks::run( 'UnitTestsBeforeDatabaseTeardown' );
1474
1475 foreach ( $wgJobClasses as $type => $class ) {
1476 // Delete any jobs under the clone DB (or old prefix in other stores)
1477 JobQueueGroup::singleton()->get( $type )->delete();
1478 }
1479
1480 // T219673: close any connections from code that failed to call reuseConnection()
1481 // or is still holding onto a DBConnRef instance (e.g. in a singleton).
1482 MediaWikiServices::getInstance()->getDBLoadBalancerFactory()->closeAll();
1483 CloneDatabase::changePrefix( self::$oldTablePrefix );
1484
1485 self::$oldTablePrefix = false;
1486 self::$dbSetup = false;
1487 }
1488
1489 /**
1490 * Setups a database with cloned tables using the given prefix.
1491 *
1492 * If reuseDB is true and certain conditions apply, it will just change the prefix.
1493 * Otherwise, it will clone the tables and change the prefix.
1494 *
1495 * @param IMaintainableDatabase $db Database to use
1496 * @param string|null $prefix Prefix to use for test tables. If not given, the prefix is determined
1497 * automatically for $db.
1498 * @return bool True if tables were cloned, false if only the prefix was changed
1499 */
1500 protected static function setupDatabaseWithTestPrefix(
1501 IMaintainableDatabase $db,
1502 $prefix = null
1503 ) {
1504 if ( $prefix === null ) {
1505 $prefix = self::getTestPrefixFor( $db );
1506 }
1507
1508 if ( ( $db->getType() == 'oracle' || !self::$useTemporaryTables ) && self::$reuseDB ) {
1509 $db->tablePrefix( $prefix );
1510 return false;
1511 }
1512
1513 if ( !isset( $db->_originalTablePrefix ) ) {
1514 $oldPrefix = $db->tablePrefix();
1515
1516 if ( $oldPrefix === $prefix ) {
1517 // table already has the correct prefix, but presumably no cloned tables
1518 $oldPrefix = self::$oldTablePrefix;
1519 }
1520
1521 $db->tablePrefix( $oldPrefix );
1522 $tablesCloned = self::listTables( $db );
1523 $dbClone = new CloneDatabase( $db, $tablesCloned, $prefix, $oldPrefix );
1524 $dbClone->useTemporaryTables( self::$useTemporaryTables );
1525
1526 $dbClone->cloneTableStructure();
1527
1528 $db->tablePrefix( $prefix );
1529 $db->_originalTablePrefix = $oldPrefix;
1530 }
1531
1532 return true;
1533 }
1534
1535 /**
1536 * Set up all test DBs
1537 */
1538 public function setupAllTestDBs() {
1539 global $wgDBprefix;
1540
1541 self::$oldTablePrefix = $wgDBprefix;
1542
1543 $testPrefix = $this->dbPrefix();
1544
1545 // switch to a temporary clone of the database
1546 self::setupTestDB( $this->db, $testPrefix );
1547
1548 if ( self::isUsingExternalStoreDB() ) {
1549 self::setupExternalStoreTestDBs( $testPrefix );
1550 }
1551
1552 // NOTE: Change the prefix in the LBFactory and $wgDBprefix, to prevent
1553 // *any* database connections to operate on live data.
1554 CloneDatabase::changePrefix( $testPrefix );
1555 }
1556
1557 /**
1558 * Creates an empty skeleton of the wiki database by cloning its structure
1559 * to equivalent tables using the given $prefix. Then sets MediaWiki to
1560 * use the new set of tables (aka schema) instead of the original set.
1561 *
1562 * This is used to generate a dummy table set, typically consisting of temporary
1563 * tables, that will be used by tests instead of the original wiki database tables.
1564 *
1565 * @since 1.21
1566 *
1567 * @note the original table prefix is stored in self::$oldTablePrefix. This is used
1568 * by teardownTestDB() to return the wiki to using the original table set.
1569 *
1570 * @note this method only works when first called. Subsequent calls have no effect,
1571 * even if using different parameters.
1572 *
1573 * @param IMaintainableDatabase $db The database connection
1574 * @param string $prefix The prefix to use for the new table set (aka schema).
1575 *
1576 * @throws MWException If the database table prefix is already $prefix
1577 */
1578 public static function setupTestDB( IMaintainableDatabase $db, $prefix ) {
1579 if ( self::$dbSetup ) {
1580 return;
1581 }
1582
1583 if ( $db->tablePrefix() === $prefix ) {
1584 throw new MWException(
1585 'Cannot run unit tests, the database prefix is already "' . $prefix . '"' );
1586 }
1587
1588 // TODO: the below should be re-written as soon as LBFactory, LoadBalancer,
1589 // and Database no longer use global state.
1590
1591 self::$dbSetup = true;
1592
1593 if ( !self::setupDatabaseWithTestPrefix( $db, $prefix ) ) {
1594 return;
1595 }
1596
1597 // Assuming this isn't needed for External Store database, and not sure if the procedure
1598 // would be available there.
1599 if ( $db->getType() == 'oracle' ) {
1600 $db->query( 'BEGIN FILL_WIKI_INFO; END;', __METHOD__ );
1601 }
1602
1603 Hooks::run( 'UnitTestsAfterDatabaseSetup', [ $db, $prefix ] );
1604 }
1605
1606 /**
1607 * Clones the External Store database(s) for testing
1608 *
1609 * @param string|null $testPrefix Prefix for test tables. Will be determined automatically
1610 * if not given.
1611 */
1612 protected static function setupExternalStoreTestDBs( $testPrefix = null ) {
1613 $connections = self::getExternalStoreDatabaseConnections();
1614 foreach ( $connections as $dbw ) {
1615 self::setupDatabaseWithTestPrefix( $dbw, $testPrefix );
1616 }
1617 }
1618
1619 /**
1620 * Gets master database connections for all of the ExternalStoreDB
1621 * stores configured in $wgDefaultExternalStore.
1622 *
1623 * @return Database[] Array of Database master connections
1624 */
1625 protected static function getExternalStoreDatabaseConnections() {
1626 global $wgDefaultExternalStore;
1627
1628 /** @var ExternalStoreDB $externalStoreDB */
1629 $externalStoreDB = ExternalStore::getStoreObject( 'DB' );
1630 $defaultArray = (array)$wgDefaultExternalStore;
1631 $dbws = [];
1632 foreach ( $defaultArray as $url ) {
1633 if ( strpos( $url, 'DB://' ) === 0 ) {
1634 list( $proto, $cluster ) = explode( '://', $url, 2 );
1635 // Avoid getMaster() because setupDatabaseWithTestPrefix()
1636 // requires Database instead of plain DBConnRef/IDatabase
1637 $dbws[] = $externalStoreDB->getMaster( $cluster );
1638 }
1639 }
1640
1641 return $dbws;
1642 }
1643
1644 /**
1645 * Check whether ExternalStoreDB is being used
1646 *
1647 * @return bool True if it's being used
1648 */
1649 protected static function isUsingExternalStoreDB() {
1650 global $wgDefaultExternalStore;
1651 if ( !$wgDefaultExternalStore ) {
1652 return false;
1653 }
1654
1655 $defaultArray = (array)$wgDefaultExternalStore;
1656 foreach ( $defaultArray as $url ) {
1657 if ( strpos( $url, 'DB://' ) === 0 ) {
1658 return true;
1659 }
1660 }
1661
1662 return false;
1663 }
1664
1665 /**
1666 * @throws LogicException if the given database connection is not a set up to use
1667 * mock tables.
1668 *
1669 * @since 1.31 this is no longer private.
1670 */
1671 protected function ensureMockDatabaseConnection( IDatabase $db ) {
1672 if ( $db->tablePrefix() !== $this->dbPrefix() ) {
1673 throw new LogicException(
1674 'Trying to delete mock tables, but table prefix does not indicate a mock database.'
1675 );
1676 }
1677 }
1678
1679 private static $schemaOverrideDefaults = [
1680 'scripts' => [],
1681 'create' => [],
1682 'drop' => [],
1683 'alter' => [],
1684 ];
1685
1686 /**
1687 * Stub. If a test suite needs to test against a specific database schema, it should
1688 * override this method and return the appropriate information from it.
1689 *
1690 * 'create', 'drop' and 'alter' in the returned array should list all the tables affected
1691 * by the 'scripts', even if the test is only interested in a subset of them, otherwise
1692 * the overrides may not be fully cleaned up, leading to errors later.
1693 *
1694 * @param IMaintainableDatabase $db The DB connection to use for the mock schema.
1695 * May be used to check the current state of the schema, to determine what
1696 * overrides are needed.
1697 *
1698 * @return array An associative array with the following fields:
1699 * - 'scripts': any SQL scripts to run. If empty or not present, schema overrides are skipped.
1700 * - 'create': A list of tables created (may or may not exist in the original schema).
1701 * - 'drop': A list of tables dropped (expected to be present in the original schema).
1702 * - 'alter': A list of tables altered (expected to be present in the original schema).
1703 */
1704 protected function getSchemaOverrides( IMaintainableDatabase $db ) {
1705 return [];
1706 }
1707
1708 /**
1709 * Undoes the specified schema overrides..
1710 * Called once per test class, just before addDataOnce().
1711 *
1712 * @param IMaintainableDatabase $db
1713 * @param array $oldOverrides
1714 */
1715 private function undoSchemaOverrides( IMaintainableDatabase $db, $oldOverrides ) {
1716 $this->ensureMockDatabaseConnection( $db );
1717
1718 $oldOverrides = $oldOverrides + self::$schemaOverrideDefaults;
1719 $originalTables = $this->listOriginalTables( $db );
1720
1721 // Drop tables that need to be restored or removed.
1722 $tablesToDrop = array_merge( $oldOverrides['create'], $oldOverrides['alter'] );
1723
1724 // Restore tables that have been dropped or created or altered,
1725 // if they exist in the original schema.
1726 $tablesToRestore = array_merge( $tablesToDrop, $oldOverrides['drop'] );
1727 $tablesToRestore = array_intersect( $originalTables, $tablesToRestore );
1728
1729 if ( $tablesToDrop ) {
1730 $this->dropMockTables( $db, $tablesToDrop );
1731 }
1732
1733 if ( $tablesToRestore ) {
1734 $this->recloneMockTables( $db, $tablesToRestore );
1735
1736 // Reset the restored tables, mainly for the side effect of
1737 // re-calling $this->addCoreDBData() if necessary.
1738 $this->resetDB( $db, $tablesToRestore );
1739 }
1740 }
1741
1742 /**
1743 * Applies the schema overrides returned by getSchemaOverrides(),
1744 * after undoing any previously applied schema overrides.
1745 * Called once per test class, just before addDataOnce().
1746 */
1747 private function setUpSchema( IMaintainableDatabase $db ) {
1748 // Undo any active overrides.
1749 $oldOverrides = $db->_schemaOverrides ?? self::$schemaOverrideDefaults;
1750
1751 if ( $oldOverrides['alter'] || $oldOverrides['create'] || $oldOverrides['drop'] ) {
1752 $this->undoSchemaOverrides( $db, $oldOverrides );
1753 unset( $db->_schemaOverrides );
1754 }
1755
1756 // Determine new overrides.
1757 $overrides = $this->getSchemaOverrides( $db ) + self::$schemaOverrideDefaults;
1758
1759 $extraKeys = array_diff(
1760 array_keys( $overrides ),
1761 array_keys( self::$schemaOverrideDefaults )
1762 );
1763
1764 if ( $extraKeys ) {
1765 throw new InvalidArgumentException(
1766 'Schema override contains extra keys: ' . var_export( $extraKeys, true )
1767 );
1768 }
1769
1770 if ( !$overrides['scripts'] ) {
1771 // no scripts to run
1772 return;
1773 }
1774
1775 if ( !$overrides['create'] && !$overrides['drop'] && !$overrides['alter'] ) {
1776 throw new InvalidArgumentException(
1777 'Schema override scripts given, but no tables are declared to be '
1778 . 'created, dropped or altered.'
1779 );
1780 }
1781
1782 $this->ensureMockDatabaseConnection( $db );
1783
1784 // Drop the tables that will be created by the schema scripts.
1785 $originalTables = $this->listOriginalTables( $db );
1786 $tablesToDrop = array_intersect( $originalTables, $overrides['create'] );
1787
1788 if ( $tablesToDrop ) {
1789 $this->dropMockTables( $db, $tablesToDrop );
1790 }
1791
1792 // Run schema override scripts.
1793 foreach ( $overrides['scripts'] as $script ) {
1794 $db->sourceFile(
1795 $script,
1796 null,
1797 null,
1798 __METHOD__,
1799 function ( $cmd ) {
1800 return $this->mungeSchemaUpdateQuery( $cmd );
1801 }
1802 );
1803 }
1804
1805 $db->_schemaOverrides = $overrides;
1806 }
1807
1808 private function mungeSchemaUpdateQuery( $cmd ) {
1809 return self::$useTemporaryTables
1810 ? preg_replace( '/\bCREATE\s+TABLE\b/i', 'CREATE TEMPORARY TABLE', $cmd )
1811 : $cmd;
1812 }
1813
1814 /**
1815 * Drops the given mock tables.
1816 *
1817 * @param IMaintainableDatabase $db
1818 * @param array $tables
1819 */
1820 private function dropMockTables( IMaintainableDatabase $db, array $tables ) {
1821 $this->ensureMockDatabaseConnection( $db );
1822
1823 foreach ( $tables as $tbl ) {
1824 $tbl = $db->tableName( $tbl );
1825 $db->query( "DROP TABLE IF EXISTS $tbl", __METHOD__ );
1826 }
1827 }
1828
1829 /**
1830 * Lists all tables in the live database schema, without a prefix.
1831 *
1832 * @param IMaintainableDatabase $db
1833 * @return array
1834 */
1835 private function listOriginalTables( IMaintainableDatabase $db ) {
1836 if ( !isset( $db->_originalTablePrefix ) ) {
1837 throw new LogicException( 'No original table prefix know, cannot list tables!' );
1838 }
1839
1840 $originalTables = $db->listTables( $db->_originalTablePrefix, __METHOD__ );
1841
1842 $unittestPrefixRegex = '/^' . preg_quote( $this->dbPrefix(), '/' ) . '/';
1843 $originalPrefixRegex = '/^' . preg_quote( $db->_originalTablePrefix, '/' ) . '/';
1844
1845 $originalTables = array_filter(
1846 $originalTables,
1847 function ( $pt ) use ( $unittestPrefixRegex ) {
1848 return !preg_match( $unittestPrefixRegex, $pt );
1849 }
1850 );
1851
1852 $originalTables = array_map(
1853 function ( $pt ) use ( $originalPrefixRegex ) {
1854 return preg_replace( $originalPrefixRegex, '', $pt );
1855 },
1856 $originalTables
1857 );
1858
1859 return array_unique( $originalTables );
1860 }
1861
1862 /**
1863 * Re-clones the given mock tables to restore them based on the live database schema.
1864 * The tables listed in $tables are expected to currently not exist, so dropMockTables()
1865 * should be called first.
1866 *
1867 * @param IMaintainableDatabase $db
1868 * @param array $tables
1869 */
1870 private function recloneMockTables( IMaintainableDatabase $db, array $tables ) {
1871 $this->ensureMockDatabaseConnection( $db );
1872
1873 if ( !isset( $db->_originalTablePrefix ) ) {
1874 throw new LogicException( 'No original table prefix know, cannot restore tables!' );
1875 }
1876
1877 $originalTables = $this->listOriginalTables( $db );
1878 $tables = array_intersect( $tables, $originalTables );
1879
1880 $dbClone = new CloneDatabase( $db, $tables, $db->tablePrefix(), $db->_originalTablePrefix );
1881 $dbClone->useTemporaryTables( self::$useTemporaryTables );
1882
1883 $dbClone->cloneTableStructure();
1884 }
1885
1886 /**
1887 * Empty all tables so they can be repopulated for tests
1888 *
1889 * @param Database $db|null Database to reset
1890 * @param array $tablesUsed Tables to reset
1891 */
1892 private function resetDB( $db, $tablesUsed ) {
1893 if ( $db ) {
1894 $userTables = [ 'user', 'user_groups', 'user_properties', 'actor' ];
1895 $pageTables = [
1896 'page', 'revision', 'ip_changes', 'revision_comment_temp', 'comment', 'archive',
1897 'revision_actor_temp', 'slots', 'content', 'content_models', 'slot_roles',
1898 ];
1899 $coreDBDataTables = array_merge( $userTables, $pageTables );
1900
1901 // If any of the user or page tables were marked as used, we should clear all of them.
1902 if ( array_intersect( $tablesUsed, $userTables ) ) {
1903 $tablesUsed = array_unique( array_merge( $tablesUsed, $userTables ) );
1904 TestUserRegistry::clear();
1905
1906 // Reset $wgUser, which is probably 127.0.0.1, as its loaded data is probably not valid
1907 // @todo Should we start setting $wgUser to something nondeterministic
1908 // to encourage tests to be updated to not depend on it?
1909 global $wgUser;
1910 $wgUser->clearInstanceCache( $wgUser->mFrom );
1911 }
1912 if ( array_intersect( $tablesUsed, $pageTables ) ) {
1913 $tablesUsed = array_unique( array_merge( $tablesUsed, $pageTables ) );
1914 }
1915
1916 // Postgres, Oracle, and MSSQL all use mwuser/pagecontent
1917 // instead of user/text. But Postgres does not remap the
1918 // table name in tableExists(), so we mark the real table
1919 // names as being used.
1920 if ( $db->getType() === 'postgres' ) {
1921 if ( in_array( 'user', $tablesUsed ) ) {
1922 $tablesUsed[] = 'mwuser';
1923 }
1924 if ( in_array( 'text', $tablesUsed ) ) {
1925 $tablesUsed[] = 'pagecontent';
1926 }
1927 }
1928
1929 foreach ( $tablesUsed as $tbl ) {
1930 $this->truncateTable( $tbl, $db );
1931 }
1932
1933 if ( array_intersect( $tablesUsed, $coreDBDataTables ) ) {
1934 // Reset services that may contain information relating to the truncated tables
1935 $this->overrideMwServices();
1936 // Re-add core DB data that was deleted
1937 $this->addCoreDBData();
1938 }
1939 }
1940 }
1941
1942 /**
1943 * Empties the given table and resets any auto-increment counters.
1944 * Will also purge caches associated with some well known tables.
1945 * If the table is not know, this method just returns.
1946 *
1947 * @param string $tableName
1948 * @param IDatabase|null $db
1949 */
1950 protected function truncateTable( $tableName, IDatabase $db = null ) {
1951 if ( !$db ) {
1952 $db = $this->db;
1953 }
1954
1955 if ( !$db->tableExists( $tableName ) ) {
1956 return;
1957 }
1958
1959 $truncate = in_array( $db->getType(), [ 'oracle', 'mysql' ] );
1960
1961 if ( $truncate ) {
1962 $db->query( 'TRUNCATE TABLE ' . $db->tableName( $tableName ), __METHOD__ );
1963 } else {
1964 $db->delete( $tableName, '*', __METHOD__ );
1965 }
1966
1967 if ( $db instanceof DatabasePostgres || $db instanceof DatabaseSqlite ) {
1968 // Reset the table's sequence too.
1969 $db->resetSequenceForTable( $tableName, __METHOD__ );
1970 }
1971
1972 // re-initialize site_stats table
1973 if ( $tableName === 'site_stats' ) {
1974 SiteStatsInit::doPlaceholderInit();
1975 }
1976 }
1977
1978 private static function unprefixTable( &$tableName, $ind, $prefix ) {
1979 $tableName = substr( $tableName, strlen( $prefix ) );
1980 }
1981
1982 private static function isNotUnittest( $table ) {
1983 return strpos( $table, self::DB_PREFIX ) !== 0;
1984 }
1985
1986 /**
1987 * @since 1.18
1988 *
1989 * @param IMaintainableDatabase $db
1990 *
1991 * @return array
1992 */
1993 public static function listTables( IMaintainableDatabase $db ) {
1994 $prefix = $db->tablePrefix();
1995 $tables = $db->listTables( $prefix, __METHOD__ );
1996
1997 if ( $db->getType() === 'mysql' ) {
1998 static $viewListCache = null;
1999 if ( $viewListCache === null ) {
2000 $viewListCache = $db->listViews( null, __METHOD__ );
2001 }
2002 // T45571: cannot clone VIEWs under MySQL
2003 $tables = array_diff( $tables, $viewListCache );
2004 }
2005 array_walk( $tables, [ __CLASS__, 'unprefixTable' ], $prefix );
2006
2007 // Don't duplicate test tables from the previous fataled run
2008 $tables = array_filter( $tables, [ __CLASS__, 'isNotUnittest' ] );
2009
2010 if ( $db->getType() == 'sqlite' ) {
2011 $tables = array_flip( $tables );
2012 // these are subtables of searchindex and don't need to be duped/dropped separately
2013 unset( $tables['searchindex_content'] );
2014 unset( $tables['searchindex_segdir'] );
2015 unset( $tables['searchindex_segments'] );
2016 $tables = array_flip( $tables );
2017 }
2018
2019 return $tables;
2020 }
2021
2022 /**
2023 * Copy test data from one database connection to another.
2024 *
2025 * This should only be used for small data sets.
2026 *
2027 * @param IDatabase $source
2028 * @param IDatabase $target
2029 */
2030 public function copyTestData( IDatabase $source, IDatabase $target ) {
2031 if ( $this->db->getType() === 'sqlite' ) {
2032 // SQLite uses a non-temporary copy of the searchindex table for testing,
2033 // which gets deleted and re-created when setting up the secondary connection,
2034 // causing "Error 17" when trying to copy the data. See T191863#4130112.
2035 throw new RuntimeException(
2036 'Setting up a secondary database connection with test data is currently not'
2037 . 'with SQLite. You may want to use markTestSkippedIfDbType() to bypass this issue.'
2038 );
2039 }
2040
2041 $tables = self::listOriginalTables( $source );
2042
2043 foreach ( $tables as $table ) {
2044 $res = $source->select( $table, '*', [], __METHOD__ );
2045 $allRows = [];
2046
2047 foreach ( $res as $row ) {
2048 $allRows[] = (array)$row;
2049 }
2050
2051 $target->insert( $table, $allRows, __METHOD__, [ 'IGNORE' ] );
2052 }
2053 }
2054
2055 /**
2056 * @throws MWException
2057 * @since 1.18
2058 */
2059 protected function checkDbIsSupported() {
2060 if ( !in_array( $this->db->getType(), $this->supportedDBs ) ) {
2061 throw new MWException( $this->db->getType() . " is not currently supported for unit testing." );
2062 }
2063 }
2064
2065 /**
2066 * @since 1.18
2067 * @param string $offset
2068 * @return mixed
2069 */
2070 public function getCliArg( $offset ) {
2071 return $this->cliArgs[$offset] ?? null;
2072 }
2073
2074 /**
2075 * @since 1.18
2076 * @param string $offset
2077 * @param mixed $value
2078 */
2079 public function setCliArg( $offset, $value ) {
2080 $this->cliArgs[$offset] = $value;
2081 }
2082
2083 /**
2084 * Don't throw a warning if $function is deprecated and called later
2085 *
2086 * @since 1.19
2087 *
2088 * @param string $function
2089 */
2090 public function hideDeprecated( $function ) {
2091 Wikimedia\suppressWarnings();
2092 wfDeprecated( $function );
2093 Wikimedia\restoreWarnings();
2094 }
2095
2096 /**
2097 * Asserts that the given database query yields the rows given by $expectedRows.
2098 * The expected rows should be given as indexed (not associative) arrays, with
2099 * the values given in the order of the columns in the $fields parameter.
2100 * Note that the rows are sorted by the columns given in $fields.
2101 *
2102 * @since 1.20
2103 *
2104 * @param string|array $table The table(s) to query
2105 * @param string|array $fields The columns to include in the result (and to sort by)
2106 * @param string|array $condition "where" condition(s)
2107 * @param array $expectedRows An array of arrays giving the expected rows.
2108 * @param array $options Options for the query
2109 * @param array $join_conds Join conditions for the query
2110 *
2111 * @throws MWException If this test cases's needsDB() method doesn't return true.
2112 * Test cases can use "@group Database" to enable database test support,
2113 * or list the tables under testing in $this->tablesUsed, or override the
2114 * needsDB() method.
2115 */
2116 protected function assertSelect(
2117 $table, $fields, $condition, array $expectedRows, array $options = [], array $join_conds = []
2118 ) {
2119 if ( !$this->needsDB() ) {
2120 throw new MWException( 'When testing database state, the test cases\'s needDB()' .
2121 ' method should return true. Use @group Database or $this->tablesUsed.' );
2122 }
2123
2124 $db = wfGetDB( DB_REPLICA );
2125
2126 $res = $db->select(
2127 $table,
2128 $fields,
2129 $condition,
2130 wfGetCaller(),
2131 $options + [ 'ORDER BY' => $fields ],
2132 $join_conds
2133 );
2134 $this->assertNotEmpty( $res, "query failed: " . $db->lastError() );
2135
2136 $i = 0;
2137
2138 foreach ( $expectedRows as $expected ) {
2139 $r = $res->fetchRow();
2140 self::stripStringKeys( $r );
2141
2142 $i += 1;
2143 $this->assertNotEmpty( $r, "row #$i missing" );
2144
2145 $this->assertEquals( $expected, $r, "row #$i mismatches" );
2146 }
2147
2148 $r = $res->fetchRow();
2149 self::stripStringKeys( $r );
2150
2151 $this->assertFalse( $r, "found extra row (after #$i)" );
2152 }
2153
2154 /**
2155 * Utility method taking an array of elements and wrapping
2156 * each element in its own array. Useful for data providers
2157 * that only return a single argument.
2158 *
2159 * @since 1.20
2160 *
2161 * @param array $elements
2162 *
2163 * @return array
2164 */
2165 protected function arrayWrap( array $elements ) {
2166 return array_map(
2167 function ( $element ) {
2168 return [ $element ];
2169 },
2170 $elements
2171 );
2172 }
2173
2174 /**
2175 * Assert that two arrays are equal. By default this means that both arrays need to hold
2176 * the same set of values. Using additional arguments, order and associated key can also
2177 * be set as relevant.
2178 *
2179 * @since 1.20
2180 *
2181 * @param array $expected
2182 * @param array $actual
2183 * @param bool $ordered If the order of the values should match
2184 * @param bool $named If the keys should match
2185 */
2186 protected function assertArrayEquals( array $expected, array $actual,
2187 $ordered = false, $named = false
2188 ) {
2189 if ( !$ordered ) {
2190 $this->objectAssociativeSort( $expected );
2191 $this->objectAssociativeSort( $actual );
2192 }
2193
2194 if ( !$named ) {
2195 $expected = array_values( $expected );
2196 $actual = array_values( $actual );
2197 }
2198
2199 call_user_func_array(
2200 [ $this, 'assertEquals' ],
2201 array_merge( [ $expected, $actual ], array_slice( func_get_args(), 4 ) )
2202 );
2203 }
2204
2205 /**
2206 * Put each HTML element on its own line and then equals() the results
2207 *
2208 * Use for nicely formatting of PHPUnit diff output when comparing very
2209 * simple HTML
2210 *
2211 * @since 1.20
2212 *
2213 * @param string $expected HTML on oneline
2214 * @param string $actual HTML on oneline
2215 * @param string $msg Optional message
2216 */
2217 protected function assertHTMLEquals( $expected, $actual, $msg = '' ) {
2218 $expected = str_replace( '>', ">\n", $expected );
2219 $actual = str_replace( '>', ">\n", $actual );
2220
2221 $this->assertEquals( $expected, $actual, $msg );
2222 }
2223
2224 /**
2225 * Does an associative sort that works for objects.
2226 *
2227 * @since 1.20
2228 *
2229 * @param array &$array
2230 */
2231 protected function objectAssociativeSort( array &$array ) {
2232 uasort(
2233 $array,
2234 function ( $a, $b ) {
2235 return serialize( $a ) <=> serialize( $b );
2236 }
2237 );
2238 }
2239
2240 /**
2241 * Utility function for eliminating all string keys from an array.
2242 * Useful to turn a database result row as returned by fetchRow() into
2243 * a pure indexed array.
2244 *
2245 * @since 1.20
2246 *
2247 * @param mixed &$r The array to remove string keys from.
2248 */
2249 protected static function stripStringKeys( &$r ) {
2250 if ( !is_array( $r ) ) {
2251 return;
2252 }
2253
2254 foreach ( $r as $k => $v ) {
2255 if ( is_string( $k ) ) {
2256 unset( $r[$k] );
2257 }
2258 }
2259 }
2260
2261 /**
2262 * Asserts that the provided variable is of the specified
2263 * internal type or equals the $value argument. This is useful
2264 * for testing return types of functions that return a certain
2265 * type or *value* when not set or on error.
2266 *
2267 * @since 1.20
2268 *
2269 * @param string $type
2270 * @param mixed $actual
2271 * @param mixed $value
2272 * @param string $message
2273 */
2274 protected function assertTypeOrValue( $type, $actual, $value = false, $message = '' ) {
2275 if ( $actual === $value ) {
2276 $this->assertTrue( true, $message );
2277 } else {
2278 $this->assertType( $type, $actual, $message );
2279 }
2280 }
2281
2282 /**
2283 * Asserts the type of the provided value. This can be either
2284 * in internal type such as boolean or integer, or a class or
2285 * interface the value extends or implements.
2286 *
2287 * @since 1.20
2288 *
2289 * @param string $type
2290 * @param mixed $actual
2291 * @param string $message
2292 */
2293 protected function assertType( $type, $actual, $message = '' ) {
2294 if ( class_exists( $type ) || interface_exists( $type ) ) {
2295 $this->assertInstanceOf( $type, $actual, $message );
2296 } else {
2297 $this->assertInternalType( $type, $actual, $message );
2298 }
2299 }
2300
2301 /**
2302 * Returns true if the given namespace defaults to Wikitext
2303 * according to $wgNamespaceContentModels
2304 *
2305 * @param int $ns The namespace ID to check
2306 *
2307 * @return bool
2308 * @since 1.21
2309 */
2310 protected function isWikitextNS( $ns ) {
2311 global $wgNamespaceContentModels;
2312
2313 if ( isset( $wgNamespaceContentModels[$ns] ) ) {
2314 return $wgNamespaceContentModels[$ns] === CONTENT_MODEL_WIKITEXT;
2315 }
2316
2317 return true;
2318 }
2319
2320 /**
2321 * Returns the ID of a namespace that defaults to Wikitext.
2322 *
2323 * @throws MWException If there is none.
2324 * @return int The ID of the wikitext Namespace
2325 * @since 1.21
2326 */
2327 protected function getDefaultWikitextNS() {
2328 global $wgNamespaceContentModels;
2329
2330 static $wikitextNS = null; // this is not going to change
2331 if ( $wikitextNS !== null ) {
2332 return $wikitextNS;
2333 }
2334
2335 // quickly short out on most common case:
2336 if ( !isset( $wgNamespaceContentModels[NS_MAIN] ) ) {
2337 return NS_MAIN;
2338 }
2339
2340 // NOTE: prefer content namespaces
2341 $nsInfo = MediaWikiServices::getInstance()->getNamespaceInfo();
2342 $namespaces = array_unique( array_merge(
2343 $nsInfo->getContentNamespaces(),
2344 [ NS_MAIN, NS_HELP, NS_PROJECT ], // prefer these
2345 $nsInfo->getValidNamespaces()
2346 ) );
2347
2348 $namespaces = array_diff( $namespaces, [
2349 NS_FILE, NS_CATEGORY, NS_MEDIAWIKI, NS_USER // don't mess with magic namespaces
2350 ] );
2351
2352 $talk = array_filter( $namespaces, function ( $ns ) use ( $nsInfo ) {
2353 return $nsInfo->isTalk( $ns );
2354 } );
2355
2356 // prefer non-talk pages
2357 $namespaces = array_diff( $namespaces, $talk );
2358 $namespaces = array_merge( $namespaces, $talk );
2359
2360 // check default content model of each namespace
2361 foreach ( $namespaces as $ns ) {
2362 if ( !isset( $wgNamespaceContentModels[$ns] ) ||
2363 $wgNamespaceContentModels[$ns] === CONTENT_MODEL_WIKITEXT
2364 ) {
2365 $wikitextNS = $ns;
2366
2367 return $wikitextNS;
2368 }
2369 }
2370
2371 // give up
2372 // @todo Inside a test, we could skip the test as incomplete.
2373 // But frequently, this is used in fixture setup.
2374 throw new MWException( "No namespace defaults to wikitext!" );
2375 }
2376
2377 /**
2378 * Check, if $wgDiff3 is set and ready to merge
2379 * Will mark the calling test as skipped, if not ready
2380 *
2381 * @since 1.21
2382 */
2383 protected function markTestSkippedIfNoDiff3() {
2384 global $wgDiff3;
2385
2386 # This check may also protect against code injection in
2387 # case of broken installations.
2388 Wikimedia\suppressWarnings();
2389 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
2390 Wikimedia\restoreWarnings();
2391
2392 if ( !$haveDiff3 ) {
2393 $this->markTestSkipped( "Skip test, since diff3 is not configured" );
2394 }
2395 }
2396
2397 /**
2398 * Check if $extName is a loaded PHP extension, will skip the
2399 * test whenever it is not loaded.
2400 *
2401 * @since 1.21
2402 * @param string $extName
2403 * @return bool
2404 */
2405 protected function checkPHPExtension( $extName ) {
2406 $loaded = extension_loaded( $extName );
2407 if ( !$loaded ) {
2408 $this->markTestSkipped( "PHP extension '$extName' is not loaded, skipping." );
2409 }
2410
2411 return $loaded;
2412 }
2413
2414 /**
2415 * Skip the test if using the specified database type
2416 *
2417 * @param string $type Database type
2418 * @since 1.32
2419 */
2420 protected function markTestSkippedIfDbType( $type ) {
2421 if ( $this->db->getType() === $type ) {
2422 $this->markTestSkipped( "The $type database type isn't supported for this test" );
2423 }
2424 }
2425
2426 /**
2427 * Used as a marker to prevent wfResetOutputBuffers from breaking PHPUnit.
2428 * @param string $buffer
2429 * @return string
2430 */
2431 public static function wfResetOutputBuffersBarrier( $buffer ) {
2432 return $buffer;
2433 }
2434
2435 /**
2436 * Create a temporary hook handler which will be reset by tearDown.
2437 * This replaces other handlers for the same hook.
2438 * @param string $hookName Hook name
2439 * @param mixed $handler Value suitable for a hook handler
2440 * @since 1.28
2441 */
2442 protected function setTemporaryHook( $hookName, $handler ) {
2443 $this->mergeMwGlobalArrayValue( 'wgHooks', [ $hookName => [ $handler ] ] );
2444 }
2445
2446 /**
2447 * Check whether file contains given data.
2448 * @param string $fileName
2449 * @param string $actualData
2450 * @param bool $createIfMissing If true, and file does not exist, create it with given data
2451 * and skip the test.
2452 * @param string $msg
2453 * @since 1.30
2454 */
2455 protected function assertFileContains(
2456 $fileName,
2457 $actualData,
2458 $createIfMissing = false,
2459 $msg = ''
2460 ) {
2461 if ( $createIfMissing ) {
2462 if ( !file_exists( $fileName ) ) {
2463 file_put_contents( $fileName, $actualData );
2464 $this->markTestSkipped( "Data file $fileName does not exist" );
2465 }
2466 } else {
2467 self::assertFileExists( $fileName );
2468 }
2469 self::assertEquals( file_get_contents( $fileName ), $actualData, $msg );
2470 }
2471
2472 /**
2473 * Edits or creates a page/revision
2474 * @param string $pageName Page title
2475 * @param string $text Content of the page
2476 * @param string $summary Optional summary string for the revision
2477 * @param int $defaultNs Optional namespace id
2478 * @param User|null $user If null, static::getTestSysop()->getUser() is used.
2479 * @return Status Object as returned by WikiPage::doEditContent()
2480 * @throws MWException If this test cases's needsDB() method doesn't return true.
2481 * Test cases can use "@group Database" to enable database test support,
2482 * or list the tables under testing in $this->tablesUsed, or override the
2483 * needsDB() method.
2484 */
2485 protected function editPage(
2486 $pageName,
2487 $text,
2488 $summary = '',
2489 $defaultNs = NS_MAIN,
2490 User $user = null
2491 ) {
2492 if ( !$this->needsDB() ) {
2493 throw new MWException( 'When testing which pages, the test cases\'s needsDB()' .
2494 ' method should return true. Use @group Database or $this->tablesUsed.' );
2495 }
2496
2497 $title = Title::newFromText( $pageName, $defaultNs );
2498 $page = WikiPage::factory( $title );
2499
2500 return $page->doEditContent(
2501 ContentHandler::makeContent( $text, $title ),
2502 $summary,
2503 0,
2504 false,
2505 $user
2506 );
2507 }
2508
2509 /**
2510 * Revision-deletes a revision.
2511 *
2512 * @param Revision|int $rev Revision to delete
2513 * @param array $value Keys are Revision::DELETED_* flags. Values are 1 to set the bit, 0 to
2514 * clear, -1 to leave alone. (All other values also clear the bit.)
2515 * @param string $comment Deletion comment
2516 */
2517 protected function revisionDelete(
2518 $rev, array $value = [ Revision::DELETED_TEXT => 1 ], $comment = ''
2519 ) {
2520 if ( is_int( $rev ) ) {
2521 $rev = Revision::newFromId( $rev );
2522 }
2523 RevisionDeleter::createList(
2524 'revision', RequestContext::getMain(), $rev->getTitle(), [ $rev->getId() ]
2525 )->setVisibility( [
2526 'value' => $value,
2527 'comment' => $comment,
2528 ] );
2529 }
2530
2531 /**
2532 * Returns a PHPUnit constraint that matches anything other than a fixed set of values. This can
2533 * be used to whitelist values, e.g.
2534 * $mock->expects( $this->never() )->method( $this->anythingBut( 'foo', 'bar' ) );
2535 * which will throw if any unexpected method is called.
2536 *
2537 * @param mixed ...$values Values that are not matched
2538 */
2539 protected function anythingBut( ...$values ) {
2540 return $this->logicalNot( $this->logicalOr(
2541 ...array_map( [ $this, 'matches' ], $values )
2542 ) );
2543 }
2544 }
2545
2546 class_alias( 'MediaWikiIntegrationTestCase', 'MediaWikiTestCase' );