Re-apply: Factors out permissions check from User into PermissionManager service
[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 * Overrides specific user permissions until services are reloaded
1224 *
1225 * @since 1.34
1226 *
1227 * @param User $user
1228 * @param string[]|string $permissions
1229 *
1230 * @throws Exception
1231 */
1232 public function overrideUserPermissions( $user, $permissions = [] ) {
1233 MediaWikiServices::getInstance()->getPermissionManager()->overrideUserRightsForTesting(
1234 $user,
1235 $permissions
1236 );
1237 }
1238
1239 /**
1240 * Sets the logger for a specified channel, for the duration of the test.
1241 * @since 1.27
1242 * @param string $channel
1243 * @param LoggerInterface $logger
1244 */
1245 protected function setLogger( $channel, LoggerInterface $logger ) {
1246 // TODO: Once loggers are managed by MediaWikiServices, use
1247 // resetServiceForTesting() to set loggers.
1248
1249 $provider = LoggerFactory::getProvider();
1250 $wrappedProvider = TestingAccessWrapper::newFromObject( $provider );
1251 $singletons = $wrappedProvider->singletons;
1252 if ( $provider instanceof MonologSpi ) {
1253 if ( !isset( $this->loggers[$channel] ) ) {
1254 $this->loggers[$channel] = $singletons['loggers'][$channel] ?? null;
1255 }
1256 $singletons['loggers'][$channel] = $logger;
1257 } elseif ( $provider instanceof LegacySpi || $provider instanceof LogCapturingSpi ) {
1258 if ( !isset( $this->loggers[$channel] ) ) {
1259 $this->loggers[$channel] = $singletons[$channel] ?? null;
1260 }
1261 $singletons[$channel] = $logger;
1262 } else {
1263 throw new LogicException( __METHOD__ . ': setting a logger for ' . get_class( $provider )
1264 . ' is not implemented' );
1265 }
1266 $wrappedProvider->singletons = $singletons;
1267 }
1268
1269 /**
1270 * Restores loggers replaced by setLogger().
1271 * @since 1.27
1272 */
1273 private function restoreLoggers() {
1274 $provider = LoggerFactory::getProvider();
1275 $wrappedProvider = TestingAccessWrapper::newFromObject( $provider );
1276 $singletons = $wrappedProvider->singletons;
1277 foreach ( $this->loggers as $channel => $logger ) {
1278 if ( $provider instanceof MonologSpi ) {
1279 if ( $logger === null ) {
1280 unset( $singletons['loggers'][$channel] );
1281 } else {
1282 $singletons['loggers'][$channel] = $logger;
1283 }
1284 } elseif ( $provider instanceof LegacySpi || $provider instanceof LogCapturingSpi ) {
1285 if ( $logger === null ) {
1286 unset( $singletons[$channel] );
1287 } else {
1288 $singletons[$channel] = $logger;
1289 }
1290 }
1291 }
1292 $wrappedProvider->singletons = $singletons;
1293 $this->loggers = [];
1294 }
1295
1296 /**
1297 * @return string
1298 * @since 1.18
1299 */
1300 public function dbPrefix() {
1301 return self::getTestPrefixFor( $this->db );
1302 }
1303
1304 /**
1305 * @param IDatabase $db
1306 * @return string
1307 * @since 1.32
1308 */
1309 public static function getTestPrefixFor( IDatabase $db ) {
1310 return $db->getType() == 'oracle' ? self::ORA_DB_PREFIX : self::DB_PREFIX;
1311 }
1312
1313 /**
1314 * @return bool
1315 * @since 1.18
1316 */
1317 public function needsDB() {
1318 // If the test says it uses database tables, it needs the database
1319 return $this->tablesUsed || $this->isTestInDatabaseGroup();
1320 }
1321
1322 /**
1323 * @return bool
1324 * @since 1.32
1325 */
1326 protected function isTestInDatabaseGroup() {
1327 // If the test class says it belongs to the Database group, it needs the database.
1328 // NOTE: This ONLY checks for the group in the class level doc comment.
1329 $rc = new ReflectionClass( $this );
1330 return (bool)preg_match( '/@group +Database/im', $rc->getDocComment() );
1331 }
1332
1333 /**
1334 * Insert a new page.
1335 *
1336 * Should be called from addDBData().
1337 *
1338 * @since 1.25 ($namespace in 1.28)
1339 * @param string|Title $pageName Page name or title
1340 * @param string $text Page's content
1341 * @param int|null $namespace Namespace id (name cannot already contain namespace)
1342 * @param User|null $user If null, static::getTestSysop()->getUser() is used.
1343 * @return array Title object and page id
1344 * @throws MWException If this test cases's needsDB() method doesn't return true.
1345 * Test cases can use "@group Database" to enable database test support,
1346 * or list the tables under testing in $this->tablesUsed, or override the
1347 * needsDB() method.
1348 */
1349 protected function insertPage(
1350 $pageName,
1351 $text = 'Sample page for unit test.',
1352 $namespace = null,
1353 User $user = null
1354 ) {
1355 if ( !$this->needsDB() ) {
1356 throw new MWException( 'When testing which pages, the test cases\'s needsDB()' .
1357 ' method should return true. Use @group Database or $this->tablesUsed.' );
1358 }
1359
1360 if ( is_string( $pageName ) ) {
1361 $title = Title::newFromText( $pageName, $namespace );
1362 } else {
1363 $title = $pageName;
1364 }
1365
1366 if ( !$user ) {
1367 $user = static::getTestSysop()->getUser();
1368 }
1369 $comment = __METHOD__ . ': Sample page for unit test.';
1370
1371 $page = WikiPage::factory( $title );
1372 $page->doEditContent( ContentHandler::makeContent( $text, $title ), $comment, 0, false, $user );
1373
1374 return [
1375 'title' => $title,
1376 'id' => $page->getId(),
1377 ];
1378 }
1379
1380 /**
1381 * Stub. If a test suite needs to add additional data to the database, it should
1382 * implement this method and do so. This method is called once per test suite
1383 * (i.e. once per class).
1384 *
1385 * Note data added by this method may be removed by resetDB() depending on
1386 * the contents of $tablesUsed.
1387 *
1388 * To add additional data between test function runs, override prepareDB().
1389 *
1390 * @see addDBData()
1391 * @see resetDB()
1392 *
1393 * @since 1.27
1394 */
1395 public function addDBDataOnce() {
1396 }
1397
1398 /**
1399 * Stub. Subclasses may override this to prepare the database.
1400 * Called before every test run (test function or data set).
1401 *
1402 * @see addDBDataOnce()
1403 * @see resetDB()
1404 *
1405 * @since 1.18
1406 */
1407 public function addDBData() {
1408 }
1409
1410 /**
1411 * @since 1.32
1412 */
1413 protected function addCoreDBData() {
1414 if ( $this->db->getType() == 'oracle' ) {
1415 # Insert 0 user to prevent FK violations
1416 # Anonymous user
1417 if ( !$this->db->selectField( 'user', '1', [ 'user_id' => 0 ] ) ) {
1418 $this->db->insert( 'user', [
1419 'user_id' => 0,
1420 'user_name' => 'Anonymous' ], __METHOD__, [ 'IGNORE' ] );
1421 }
1422
1423 # Insert 0 page to prevent FK violations
1424 # Blank page
1425 if ( !$this->db->selectField( 'page', '1', [ 'page_id' => 0 ] ) ) {
1426 $this->db->insert( 'page', [
1427 'page_id' => 0,
1428 'page_namespace' => 0,
1429 'page_title' => ' ',
1430 'page_restrictions' => null,
1431 'page_is_redirect' => 0,
1432 'page_is_new' => 0,
1433 'page_random' => 0,
1434 'page_touched' => $this->db->timestamp(),
1435 'page_latest' => 0,
1436 'page_len' => 0 ], __METHOD__, [ 'IGNORE' ] );
1437 }
1438 }
1439
1440 SiteStatsInit::doPlaceholderInit();
1441
1442 User::resetIdByNameCache();
1443
1444 // Make sysop user
1445 $user = static::getTestSysop()->getUser();
1446
1447 // Make 1 page with 1 revision
1448 $page = WikiPage::factory( Title::newFromText( 'UTPage' ) );
1449 if ( $page->getId() == 0 ) {
1450 $page->doEditContent(
1451 new WikitextContent( 'UTContent' ),
1452 'UTPageSummary',
1453 EDIT_NEW | EDIT_SUPPRESS_RC,
1454 false,
1455 $user
1456 );
1457 // an edit always attempt to purge backlink links such as history
1458 // pages. That is unnecessary.
1459 JobQueueGroup::singleton()->get( 'htmlCacheUpdate' )->delete();
1460 // WikiPages::doEditUpdates randomly adds RC purges
1461 JobQueueGroup::singleton()->get( 'recentChangesUpdate' )->delete();
1462
1463 // doEditContent() probably started the session via
1464 // User::loadFromSession(). Close it now.
1465 if ( session_id() !== '' ) {
1466 session_write_close();
1467 session_id( '' );
1468 }
1469 }
1470 }
1471
1472 /**
1473 * Restores MediaWiki to using the table set (table prefix) it was using before
1474 * setupTestDB() was called. Useful if we need to perform database operations
1475 * after the test run has finished (such as saving logs or profiling info).
1476 *
1477 * This is called by phpunit/bootstrap.php after the last test.
1478 *
1479 * @since 1.21
1480 */
1481 public static function teardownTestDB() {
1482 global $wgJobClasses;
1483
1484 if ( !self::$dbSetup ) {
1485 return;
1486 }
1487
1488 Hooks::run( 'UnitTestsBeforeDatabaseTeardown' );
1489
1490 foreach ( $wgJobClasses as $type => $class ) {
1491 // Delete any jobs under the clone DB (or old prefix in other stores)
1492 JobQueueGroup::singleton()->get( $type )->delete();
1493 }
1494
1495 // T219673: close any connections from code that failed to call reuseConnection()
1496 // or is still holding onto a DBConnRef instance (e.g. in a singleton).
1497 MediaWikiServices::getInstance()->getDBLoadBalancerFactory()->closeAll();
1498 CloneDatabase::changePrefix( self::$oldTablePrefix );
1499
1500 self::$oldTablePrefix = false;
1501 self::$dbSetup = false;
1502 }
1503
1504 /**
1505 * Setups a database with cloned tables using the given prefix.
1506 *
1507 * If reuseDB is true and certain conditions apply, it will just change the prefix.
1508 * Otherwise, it will clone the tables and change the prefix.
1509 *
1510 * @param IMaintainableDatabase $db Database to use
1511 * @param string|null $prefix Prefix to use for test tables. If not given, the prefix is determined
1512 * automatically for $db.
1513 * @return bool True if tables were cloned, false if only the prefix was changed
1514 */
1515 protected static function setupDatabaseWithTestPrefix(
1516 IMaintainableDatabase $db,
1517 $prefix = null
1518 ) {
1519 if ( $prefix === null ) {
1520 $prefix = self::getTestPrefixFor( $db );
1521 }
1522
1523 if ( ( $db->getType() == 'oracle' || !self::$useTemporaryTables ) && self::$reuseDB ) {
1524 $db->tablePrefix( $prefix );
1525 return false;
1526 }
1527
1528 if ( !isset( $db->_originalTablePrefix ) ) {
1529 $oldPrefix = $db->tablePrefix();
1530
1531 if ( $oldPrefix === $prefix ) {
1532 // table already has the correct prefix, but presumably no cloned tables
1533 $oldPrefix = self::$oldTablePrefix;
1534 }
1535
1536 $db->tablePrefix( $oldPrefix );
1537 $tablesCloned = self::listTables( $db );
1538 $dbClone = new CloneDatabase( $db, $tablesCloned, $prefix, $oldPrefix );
1539 $dbClone->useTemporaryTables( self::$useTemporaryTables );
1540
1541 $dbClone->cloneTableStructure();
1542
1543 $db->tablePrefix( $prefix );
1544 $db->_originalTablePrefix = $oldPrefix;
1545 }
1546
1547 return true;
1548 }
1549
1550 /**
1551 * Set up all test DBs
1552 */
1553 public function setupAllTestDBs() {
1554 global $wgDBprefix;
1555
1556 self::$oldTablePrefix = $wgDBprefix;
1557
1558 $testPrefix = $this->dbPrefix();
1559
1560 // switch to a temporary clone of the database
1561 self::setupTestDB( $this->db, $testPrefix );
1562
1563 if ( self::isUsingExternalStoreDB() ) {
1564 self::setupExternalStoreTestDBs( $testPrefix );
1565 }
1566
1567 // NOTE: Change the prefix in the LBFactory and $wgDBprefix, to prevent
1568 // *any* database connections to operate on live data.
1569 CloneDatabase::changePrefix( $testPrefix );
1570 }
1571
1572 /**
1573 * Creates an empty skeleton of the wiki database by cloning its structure
1574 * to equivalent tables using the given $prefix. Then sets MediaWiki to
1575 * use the new set of tables (aka schema) instead of the original set.
1576 *
1577 * This is used to generate a dummy table set, typically consisting of temporary
1578 * tables, that will be used by tests instead of the original wiki database tables.
1579 *
1580 * @since 1.21
1581 *
1582 * @note the original table prefix is stored in self::$oldTablePrefix. This is used
1583 * by teardownTestDB() to return the wiki to using the original table set.
1584 *
1585 * @note this method only works when first called. Subsequent calls have no effect,
1586 * even if using different parameters.
1587 *
1588 * @param IMaintainableDatabase $db The database connection
1589 * @param string $prefix The prefix to use for the new table set (aka schema).
1590 *
1591 * @throws MWException If the database table prefix is already $prefix
1592 */
1593 public static function setupTestDB( IMaintainableDatabase $db, $prefix ) {
1594 if ( self::$dbSetup ) {
1595 return;
1596 }
1597
1598 if ( $db->tablePrefix() === $prefix ) {
1599 throw new MWException(
1600 'Cannot run unit tests, the database prefix is already "' . $prefix . '"' );
1601 }
1602
1603 // TODO: the below should be re-written as soon as LBFactory, LoadBalancer,
1604 // and Database no longer use global state.
1605
1606 self::$dbSetup = true;
1607
1608 if ( !self::setupDatabaseWithTestPrefix( $db, $prefix ) ) {
1609 return;
1610 }
1611
1612 // Assuming this isn't needed for External Store database, and not sure if the procedure
1613 // would be available there.
1614 if ( $db->getType() == 'oracle' ) {
1615 $db->query( 'BEGIN FILL_WIKI_INFO; END;', __METHOD__ );
1616 }
1617
1618 Hooks::run( 'UnitTestsAfterDatabaseSetup', [ $db, $prefix ] );
1619 }
1620
1621 /**
1622 * Clones the External Store database(s) for testing
1623 *
1624 * @param string|null $testPrefix Prefix for test tables. Will be determined automatically
1625 * if not given.
1626 */
1627 protected static function setupExternalStoreTestDBs( $testPrefix = null ) {
1628 $connections = self::getExternalStoreDatabaseConnections();
1629 foreach ( $connections as $dbw ) {
1630 self::setupDatabaseWithTestPrefix( $dbw, $testPrefix );
1631 }
1632 }
1633
1634 /**
1635 * Gets master database connections for all of the ExternalStoreDB
1636 * stores configured in $wgDefaultExternalStore.
1637 *
1638 * @return Database[] Array of Database master connections
1639 */
1640 protected static function getExternalStoreDatabaseConnections() {
1641 global $wgDefaultExternalStore;
1642
1643 /** @var ExternalStoreDB $externalStoreDB */
1644 $externalStoreDB = ExternalStore::getStoreObject( 'DB' );
1645 $defaultArray = (array)$wgDefaultExternalStore;
1646 $dbws = [];
1647 foreach ( $defaultArray as $url ) {
1648 if ( strpos( $url, 'DB://' ) === 0 ) {
1649 list( $proto, $cluster ) = explode( '://', $url, 2 );
1650 // Avoid getMaster() because setupDatabaseWithTestPrefix()
1651 // requires Database instead of plain DBConnRef/IDatabase
1652 $dbws[] = $externalStoreDB->getMaster( $cluster );
1653 }
1654 }
1655
1656 return $dbws;
1657 }
1658
1659 /**
1660 * Check whether ExternalStoreDB is being used
1661 *
1662 * @return bool True if it's being used
1663 */
1664 protected static function isUsingExternalStoreDB() {
1665 global $wgDefaultExternalStore;
1666 if ( !$wgDefaultExternalStore ) {
1667 return false;
1668 }
1669
1670 $defaultArray = (array)$wgDefaultExternalStore;
1671 foreach ( $defaultArray as $url ) {
1672 if ( strpos( $url, 'DB://' ) === 0 ) {
1673 return true;
1674 }
1675 }
1676
1677 return false;
1678 }
1679
1680 /**
1681 * @throws LogicException if the given database connection is not a set up to use
1682 * mock tables.
1683 *
1684 * @since 1.31 this is no longer private.
1685 */
1686 protected function ensureMockDatabaseConnection( IDatabase $db ) {
1687 if ( $db->tablePrefix() !== $this->dbPrefix() ) {
1688 throw new LogicException(
1689 'Trying to delete mock tables, but table prefix does not indicate a mock database.'
1690 );
1691 }
1692 }
1693
1694 private static $schemaOverrideDefaults = [
1695 'scripts' => [],
1696 'create' => [],
1697 'drop' => [],
1698 'alter' => [],
1699 ];
1700
1701 /**
1702 * Stub. If a test suite needs to test against a specific database schema, it should
1703 * override this method and return the appropriate information from it.
1704 *
1705 * 'create', 'drop' and 'alter' in the returned array should list all the tables affected
1706 * by the 'scripts', even if the test is only interested in a subset of them, otherwise
1707 * the overrides may not be fully cleaned up, leading to errors later.
1708 *
1709 * @param IMaintainableDatabase $db The DB connection to use for the mock schema.
1710 * May be used to check the current state of the schema, to determine what
1711 * overrides are needed.
1712 *
1713 * @return array An associative array with the following fields:
1714 * - 'scripts': any SQL scripts to run. If empty or not present, schema overrides are skipped.
1715 * - 'create': A list of tables created (may or may not exist in the original schema).
1716 * - 'drop': A list of tables dropped (expected to be present in the original schema).
1717 * - 'alter': A list of tables altered (expected to be present in the original schema).
1718 */
1719 protected function getSchemaOverrides( IMaintainableDatabase $db ) {
1720 return [];
1721 }
1722
1723 /**
1724 * Undoes the specified schema overrides..
1725 * Called once per test class, just before addDataOnce().
1726 *
1727 * @param IMaintainableDatabase $db
1728 * @param array $oldOverrides
1729 */
1730 private function undoSchemaOverrides( IMaintainableDatabase $db, $oldOverrides ) {
1731 $this->ensureMockDatabaseConnection( $db );
1732
1733 $oldOverrides = $oldOverrides + self::$schemaOverrideDefaults;
1734 $originalTables = $this->listOriginalTables( $db );
1735
1736 // Drop tables that need to be restored or removed.
1737 $tablesToDrop = array_merge( $oldOverrides['create'], $oldOverrides['alter'] );
1738
1739 // Restore tables that have been dropped or created or altered,
1740 // if they exist in the original schema.
1741 $tablesToRestore = array_merge( $tablesToDrop, $oldOverrides['drop'] );
1742 $tablesToRestore = array_intersect( $originalTables, $tablesToRestore );
1743
1744 if ( $tablesToDrop ) {
1745 $this->dropMockTables( $db, $tablesToDrop );
1746 }
1747
1748 if ( $tablesToRestore ) {
1749 $this->recloneMockTables( $db, $tablesToRestore );
1750
1751 // Reset the restored tables, mainly for the side effect of
1752 // re-calling $this->addCoreDBData() if necessary.
1753 $this->resetDB( $db, $tablesToRestore );
1754 }
1755 }
1756
1757 /**
1758 * Applies the schema overrides returned by getSchemaOverrides(),
1759 * after undoing any previously applied schema overrides.
1760 * Called once per test class, just before addDataOnce().
1761 */
1762 private function setUpSchema( IMaintainableDatabase $db ) {
1763 // Undo any active overrides.
1764 $oldOverrides = $db->_schemaOverrides ?? self::$schemaOverrideDefaults;
1765
1766 if ( $oldOverrides['alter'] || $oldOverrides['create'] || $oldOverrides['drop'] ) {
1767 $this->undoSchemaOverrides( $db, $oldOverrides );
1768 unset( $db->_schemaOverrides );
1769 }
1770
1771 // Determine new overrides.
1772 $overrides = $this->getSchemaOverrides( $db ) + self::$schemaOverrideDefaults;
1773
1774 $extraKeys = array_diff(
1775 array_keys( $overrides ),
1776 array_keys( self::$schemaOverrideDefaults )
1777 );
1778
1779 if ( $extraKeys ) {
1780 throw new InvalidArgumentException(
1781 'Schema override contains extra keys: ' . var_export( $extraKeys, true )
1782 );
1783 }
1784
1785 if ( !$overrides['scripts'] ) {
1786 // no scripts to run
1787 return;
1788 }
1789
1790 if ( !$overrides['create'] && !$overrides['drop'] && !$overrides['alter'] ) {
1791 throw new InvalidArgumentException(
1792 'Schema override scripts given, but no tables are declared to be '
1793 . 'created, dropped or altered.'
1794 );
1795 }
1796
1797 $this->ensureMockDatabaseConnection( $db );
1798
1799 // Drop the tables that will be created by the schema scripts.
1800 $originalTables = $this->listOriginalTables( $db );
1801 $tablesToDrop = array_intersect( $originalTables, $overrides['create'] );
1802
1803 if ( $tablesToDrop ) {
1804 $this->dropMockTables( $db, $tablesToDrop );
1805 }
1806
1807 // Run schema override scripts.
1808 foreach ( $overrides['scripts'] as $script ) {
1809 $db->sourceFile(
1810 $script,
1811 null,
1812 null,
1813 __METHOD__,
1814 function ( $cmd ) {
1815 return $this->mungeSchemaUpdateQuery( $cmd );
1816 }
1817 );
1818 }
1819
1820 $db->_schemaOverrides = $overrides;
1821 }
1822
1823 private function mungeSchemaUpdateQuery( $cmd ) {
1824 return self::$useTemporaryTables
1825 ? preg_replace( '/\bCREATE\s+TABLE\b/i', 'CREATE TEMPORARY TABLE', $cmd )
1826 : $cmd;
1827 }
1828
1829 /**
1830 * Drops the given mock tables.
1831 *
1832 * @param IMaintainableDatabase $db
1833 * @param array $tables
1834 */
1835 private function dropMockTables( IMaintainableDatabase $db, array $tables ) {
1836 $this->ensureMockDatabaseConnection( $db );
1837
1838 foreach ( $tables as $tbl ) {
1839 $tbl = $db->tableName( $tbl );
1840 $db->query( "DROP TABLE IF EXISTS $tbl", __METHOD__ );
1841 }
1842 }
1843
1844 /**
1845 * Lists all tables in the live database schema, without a prefix.
1846 *
1847 * @param IMaintainableDatabase $db
1848 * @return array
1849 */
1850 private function listOriginalTables( IMaintainableDatabase $db ) {
1851 if ( !isset( $db->_originalTablePrefix ) ) {
1852 throw new LogicException( 'No original table prefix know, cannot list tables!' );
1853 }
1854
1855 $originalTables = $db->listTables( $db->_originalTablePrefix, __METHOD__ );
1856
1857 $unittestPrefixRegex = '/^' . preg_quote( $this->dbPrefix(), '/' ) . '/';
1858 $originalPrefixRegex = '/^' . preg_quote( $db->_originalTablePrefix, '/' ) . '/';
1859
1860 $originalTables = array_filter(
1861 $originalTables,
1862 function ( $pt ) use ( $unittestPrefixRegex ) {
1863 return !preg_match( $unittestPrefixRegex, $pt );
1864 }
1865 );
1866
1867 $originalTables = array_map(
1868 function ( $pt ) use ( $originalPrefixRegex ) {
1869 return preg_replace( $originalPrefixRegex, '', $pt );
1870 },
1871 $originalTables
1872 );
1873
1874 return array_unique( $originalTables );
1875 }
1876
1877 /**
1878 * Re-clones the given mock tables to restore them based on the live database schema.
1879 * The tables listed in $tables are expected to currently not exist, so dropMockTables()
1880 * should be called first.
1881 *
1882 * @param IMaintainableDatabase $db
1883 * @param array $tables
1884 */
1885 private function recloneMockTables( IMaintainableDatabase $db, array $tables ) {
1886 $this->ensureMockDatabaseConnection( $db );
1887
1888 if ( !isset( $db->_originalTablePrefix ) ) {
1889 throw new LogicException( 'No original table prefix know, cannot restore tables!' );
1890 }
1891
1892 $originalTables = $this->listOriginalTables( $db );
1893 $tables = array_intersect( $tables, $originalTables );
1894
1895 $dbClone = new CloneDatabase( $db, $tables, $db->tablePrefix(), $db->_originalTablePrefix );
1896 $dbClone->useTemporaryTables( self::$useTemporaryTables );
1897
1898 $dbClone->cloneTableStructure();
1899 }
1900
1901 /**
1902 * Empty all tables so they can be repopulated for tests
1903 *
1904 * @param Database $db|null Database to reset
1905 * @param array $tablesUsed Tables to reset
1906 */
1907 private function resetDB( $db, $tablesUsed ) {
1908 if ( $db ) {
1909 $userTables = [ 'user', 'user_groups', 'user_properties', 'actor' ];
1910 $pageTables = [
1911 'page', 'revision', 'ip_changes', 'revision_comment_temp', 'comment', 'archive',
1912 'revision_actor_temp', 'slots', 'content', 'content_models', 'slot_roles',
1913 ];
1914 $coreDBDataTables = array_merge( $userTables, $pageTables );
1915
1916 // If any of the user or page tables were marked as used, we should clear all of them.
1917 if ( array_intersect( $tablesUsed, $userTables ) ) {
1918 $tablesUsed = array_unique( array_merge( $tablesUsed, $userTables ) );
1919 TestUserRegistry::clear();
1920
1921 // Reset $wgUser, which is probably 127.0.0.1, as its loaded data is probably not valid
1922 // @todo Should we start setting $wgUser to something nondeterministic
1923 // to encourage tests to be updated to not depend on it?
1924 global $wgUser;
1925 $wgUser->clearInstanceCache( $wgUser->mFrom );
1926 }
1927 if ( array_intersect( $tablesUsed, $pageTables ) ) {
1928 $tablesUsed = array_unique( array_merge( $tablesUsed, $pageTables ) );
1929 }
1930
1931 // Postgres, Oracle, and MSSQL all use mwuser/pagecontent
1932 // instead of user/text. But Postgres does not remap the
1933 // table name in tableExists(), so we mark the real table
1934 // names as being used.
1935 if ( $db->getType() === 'postgres' ) {
1936 if ( in_array( 'user', $tablesUsed ) ) {
1937 $tablesUsed[] = 'mwuser';
1938 }
1939 if ( in_array( 'text', $tablesUsed ) ) {
1940 $tablesUsed[] = 'pagecontent';
1941 }
1942 }
1943
1944 foreach ( $tablesUsed as $tbl ) {
1945 $this->truncateTable( $tbl, $db );
1946 }
1947
1948 if ( array_intersect( $tablesUsed, $coreDBDataTables ) ) {
1949 // Reset services that may contain information relating to the truncated tables
1950 $this->overrideMwServices();
1951 // Re-add core DB data that was deleted
1952 $this->addCoreDBData();
1953 }
1954 }
1955 }
1956
1957 /**
1958 * Empties the given table and resets any auto-increment counters.
1959 * Will also purge caches associated with some well known tables.
1960 * If the table is not know, this method just returns.
1961 *
1962 * @param string $tableName
1963 * @param IDatabase|null $db
1964 */
1965 protected function truncateTable( $tableName, IDatabase $db = null ) {
1966 if ( !$db ) {
1967 $db = $this->db;
1968 }
1969
1970 if ( !$db->tableExists( $tableName ) ) {
1971 return;
1972 }
1973
1974 $truncate = in_array( $db->getType(), [ 'oracle', 'mysql' ] );
1975
1976 if ( $truncate ) {
1977 $db->query( 'TRUNCATE TABLE ' . $db->tableName( $tableName ), __METHOD__ );
1978 } else {
1979 $db->delete( $tableName, '*', __METHOD__ );
1980 }
1981
1982 if ( $db instanceof DatabasePostgres || $db instanceof DatabaseSqlite ) {
1983 // Reset the table's sequence too.
1984 $db->resetSequenceForTable( $tableName, __METHOD__ );
1985 }
1986
1987 // re-initialize site_stats table
1988 if ( $tableName === 'site_stats' ) {
1989 SiteStatsInit::doPlaceholderInit();
1990 }
1991 }
1992
1993 private static function unprefixTable( &$tableName, $ind, $prefix ) {
1994 $tableName = substr( $tableName, strlen( $prefix ) );
1995 }
1996
1997 private static function isNotUnittest( $table ) {
1998 return strpos( $table, self::DB_PREFIX ) !== 0;
1999 }
2000
2001 /**
2002 * @since 1.18
2003 *
2004 * @param IMaintainableDatabase $db
2005 *
2006 * @return array
2007 */
2008 public static function listTables( IMaintainableDatabase $db ) {
2009 $prefix = $db->tablePrefix();
2010 $tables = $db->listTables( $prefix, __METHOD__ );
2011
2012 if ( $db->getType() === 'mysql' ) {
2013 static $viewListCache = null;
2014 if ( $viewListCache === null ) {
2015 $viewListCache = $db->listViews( null, __METHOD__ );
2016 }
2017 // T45571: cannot clone VIEWs under MySQL
2018 $tables = array_diff( $tables, $viewListCache );
2019 }
2020 array_walk( $tables, [ __CLASS__, 'unprefixTable' ], $prefix );
2021
2022 // Don't duplicate test tables from the previous fataled run
2023 $tables = array_filter( $tables, [ __CLASS__, 'isNotUnittest' ] );
2024
2025 if ( $db->getType() == 'sqlite' ) {
2026 $tables = array_flip( $tables );
2027 // these are subtables of searchindex and don't need to be duped/dropped separately
2028 unset( $tables['searchindex_content'] );
2029 unset( $tables['searchindex_segdir'] );
2030 unset( $tables['searchindex_segments'] );
2031 $tables = array_flip( $tables );
2032 }
2033
2034 return $tables;
2035 }
2036
2037 /**
2038 * Copy test data from one database connection to another.
2039 *
2040 * This should only be used for small data sets.
2041 *
2042 * @param IDatabase $source
2043 * @param IDatabase $target
2044 */
2045 public function copyTestData( IDatabase $source, IDatabase $target ) {
2046 if ( $this->db->getType() === 'sqlite' ) {
2047 // SQLite uses a non-temporary copy of the searchindex table for testing,
2048 // which gets deleted and re-created when setting up the secondary connection,
2049 // causing "Error 17" when trying to copy the data. See T191863#4130112.
2050 throw new RuntimeException(
2051 'Setting up a secondary database connection with test data is currently not'
2052 . 'with SQLite. You may want to use markTestSkippedIfDbType() to bypass this issue.'
2053 );
2054 }
2055
2056 $tables = self::listOriginalTables( $source );
2057
2058 foreach ( $tables as $table ) {
2059 $res = $source->select( $table, '*', [], __METHOD__ );
2060 $allRows = [];
2061
2062 foreach ( $res as $row ) {
2063 $allRows[] = (array)$row;
2064 }
2065
2066 $target->insert( $table, $allRows, __METHOD__, [ 'IGNORE' ] );
2067 }
2068 }
2069
2070 /**
2071 * @throws MWException
2072 * @since 1.18
2073 */
2074 protected function checkDbIsSupported() {
2075 if ( !in_array( $this->db->getType(), $this->supportedDBs ) ) {
2076 throw new MWException( $this->db->getType() . " is not currently supported for unit testing." );
2077 }
2078 }
2079
2080 /**
2081 * @since 1.18
2082 * @param string $offset
2083 * @return mixed
2084 */
2085 public function getCliArg( $offset ) {
2086 return $this->cliArgs[$offset] ?? null;
2087 }
2088
2089 /**
2090 * @since 1.18
2091 * @param string $offset
2092 * @param mixed $value
2093 */
2094 public function setCliArg( $offset, $value ) {
2095 $this->cliArgs[$offset] = $value;
2096 }
2097
2098 /**
2099 * Don't throw a warning if $function is deprecated and called later
2100 *
2101 * @since 1.19
2102 *
2103 * @param string $function
2104 */
2105 public function hideDeprecated( $function ) {
2106 Wikimedia\suppressWarnings();
2107 wfDeprecated( $function );
2108 Wikimedia\restoreWarnings();
2109 }
2110
2111 /**
2112 * Asserts that the given database query yields the rows given by $expectedRows.
2113 * The expected rows should be given as indexed (not associative) arrays, with
2114 * the values given in the order of the columns in the $fields parameter.
2115 * Note that the rows are sorted by the columns given in $fields.
2116 *
2117 * @since 1.20
2118 *
2119 * @param string|array $table The table(s) to query
2120 * @param string|array $fields The columns to include in the result (and to sort by)
2121 * @param string|array $condition "where" condition(s)
2122 * @param array $expectedRows An array of arrays giving the expected rows.
2123 * @param array $options Options for the query
2124 * @param array $join_conds Join conditions for the query
2125 *
2126 * @throws MWException If this test cases's needsDB() method doesn't return true.
2127 * Test cases can use "@group Database" to enable database test support,
2128 * or list the tables under testing in $this->tablesUsed, or override the
2129 * needsDB() method.
2130 */
2131 protected function assertSelect(
2132 $table, $fields, $condition, array $expectedRows, array $options = [], array $join_conds = []
2133 ) {
2134 if ( !$this->needsDB() ) {
2135 throw new MWException( 'When testing database state, the test cases\'s needDB()' .
2136 ' method should return true. Use @group Database or $this->tablesUsed.' );
2137 }
2138
2139 $db = wfGetDB( DB_REPLICA );
2140
2141 $res = $db->select(
2142 $table,
2143 $fields,
2144 $condition,
2145 wfGetCaller(),
2146 $options + [ 'ORDER BY' => $fields ],
2147 $join_conds
2148 );
2149 $this->assertNotEmpty( $res, "query failed: " . $db->lastError() );
2150
2151 $i = 0;
2152
2153 foreach ( $expectedRows as $expected ) {
2154 $r = $res->fetchRow();
2155 self::stripStringKeys( $r );
2156
2157 $i += 1;
2158 $this->assertNotEmpty( $r, "row #$i missing" );
2159
2160 $this->assertEquals( $expected, $r, "row #$i mismatches" );
2161 }
2162
2163 $r = $res->fetchRow();
2164 self::stripStringKeys( $r );
2165
2166 $this->assertFalse( $r, "found extra row (after #$i)" );
2167 }
2168
2169 /**
2170 * Utility method taking an array of elements and wrapping
2171 * each element in its own array. Useful for data providers
2172 * that only return a single argument.
2173 *
2174 * @since 1.20
2175 *
2176 * @param array $elements
2177 *
2178 * @return array
2179 */
2180 protected function arrayWrap( array $elements ) {
2181 return array_map(
2182 function ( $element ) {
2183 return [ $element ];
2184 },
2185 $elements
2186 );
2187 }
2188
2189 /**
2190 * Assert that two arrays are equal. By default this means that both arrays need to hold
2191 * the same set of values. Using additional arguments, order and associated key can also
2192 * be set as relevant.
2193 *
2194 * @since 1.20
2195 *
2196 * @param array $expected
2197 * @param array $actual
2198 * @param bool $ordered If the order of the values should match
2199 * @param bool $named If the keys should match
2200 */
2201 protected function assertArrayEquals( array $expected, array $actual,
2202 $ordered = false, $named = false
2203 ) {
2204 if ( !$ordered ) {
2205 $this->objectAssociativeSort( $expected );
2206 $this->objectAssociativeSort( $actual );
2207 }
2208
2209 if ( !$named ) {
2210 $expected = array_values( $expected );
2211 $actual = array_values( $actual );
2212 }
2213
2214 call_user_func_array(
2215 [ $this, 'assertEquals' ],
2216 array_merge( [ $expected, $actual ], array_slice( func_get_args(), 4 ) )
2217 );
2218 }
2219
2220 /**
2221 * Put each HTML element on its own line and then equals() the results
2222 *
2223 * Use for nicely formatting of PHPUnit diff output when comparing very
2224 * simple HTML
2225 *
2226 * @since 1.20
2227 *
2228 * @param string $expected HTML on oneline
2229 * @param string $actual HTML on oneline
2230 * @param string $msg Optional message
2231 */
2232 protected function assertHTMLEquals( $expected, $actual, $msg = '' ) {
2233 $expected = str_replace( '>', ">\n", $expected );
2234 $actual = str_replace( '>', ">\n", $actual );
2235
2236 $this->assertEquals( $expected, $actual, $msg );
2237 }
2238
2239 /**
2240 * Does an associative sort that works for objects.
2241 *
2242 * @since 1.20
2243 *
2244 * @param array &$array
2245 */
2246 protected function objectAssociativeSort( array &$array ) {
2247 uasort(
2248 $array,
2249 function ( $a, $b ) {
2250 return serialize( $a ) <=> serialize( $b );
2251 }
2252 );
2253 }
2254
2255 /**
2256 * Utility function for eliminating all string keys from an array.
2257 * Useful to turn a database result row as returned by fetchRow() into
2258 * a pure indexed array.
2259 *
2260 * @since 1.20
2261 *
2262 * @param mixed &$r The array to remove string keys from.
2263 */
2264 protected static function stripStringKeys( &$r ) {
2265 if ( !is_array( $r ) ) {
2266 return;
2267 }
2268
2269 foreach ( $r as $k => $v ) {
2270 if ( is_string( $k ) ) {
2271 unset( $r[$k] );
2272 }
2273 }
2274 }
2275
2276 /**
2277 * Asserts that the provided variable is of the specified
2278 * internal type or equals the $value argument. This is useful
2279 * for testing return types of functions that return a certain
2280 * type or *value* when not set or on error.
2281 *
2282 * @since 1.20
2283 *
2284 * @param string $type
2285 * @param mixed $actual
2286 * @param mixed $value
2287 * @param string $message
2288 */
2289 protected function assertTypeOrValue( $type, $actual, $value = false, $message = '' ) {
2290 if ( $actual === $value ) {
2291 $this->assertTrue( true, $message );
2292 } else {
2293 $this->assertType( $type, $actual, $message );
2294 }
2295 }
2296
2297 /**
2298 * Asserts the type of the provided value. This can be either
2299 * in internal type such as boolean or integer, or a class or
2300 * interface the value extends or implements.
2301 *
2302 * @since 1.20
2303 *
2304 * @param string $type
2305 * @param mixed $actual
2306 * @param string $message
2307 */
2308 protected function assertType( $type, $actual, $message = '' ) {
2309 if ( class_exists( $type ) || interface_exists( $type ) ) {
2310 $this->assertInstanceOf( $type, $actual, $message );
2311 } else {
2312 $this->assertInternalType( $type, $actual, $message );
2313 }
2314 }
2315
2316 /**
2317 * Returns true if the given namespace defaults to Wikitext
2318 * according to $wgNamespaceContentModels
2319 *
2320 * @param int $ns The namespace ID to check
2321 *
2322 * @return bool
2323 * @since 1.21
2324 */
2325 protected function isWikitextNS( $ns ) {
2326 global $wgNamespaceContentModels;
2327
2328 if ( isset( $wgNamespaceContentModels[$ns] ) ) {
2329 return $wgNamespaceContentModels[$ns] === CONTENT_MODEL_WIKITEXT;
2330 }
2331
2332 return true;
2333 }
2334
2335 /**
2336 * Returns the ID of a namespace that defaults to Wikitext.
2337 *
2338 * @throws MWException If there is none.
2339 * @return int The ID of the wikitext Namespace
2340 * @since 1.21
2341 */
2342 protected function getDefaultWikitextNS() {
2343 global $wgNamespaceContentModels;
2344
2345 static $wikitextNS = null; // this is not going to change
2346 if ( $wikitextNS !== null ) {
2347 return $wikitextNS;
2348 }
2349
2350 // quickly short out on most common case:
2351 if ( !isset( $wgNamespaceContentModels[NS_MAIN] ) ) {
2352 return NS_MAIN;
2353 }
2354
2355 // NOTE: prefer content namespaces
2356 $nsInfo = MediaWikiServices::getInstance()->getNamespaceInfo();
2357 $namespaces = array_unique( array_merge(
2358 $nsInfo->getContentNamespaces(),
2359 [ NS_MAIN, NS_HELP, NS_PROJECT ], // prefer these
2360 $nsInfo->getValidNamespaces()
2361 ) );
2362
2363 $namespaces = array_diff( $namespaces, [
2364 NS_FILE, NS_CATEGORY, NS_MEDIAWIKI, NS_USER // don't mess with magic namespaces
2365 ] );
2366
2367 $talk = array_filter( $namespaces, function ( $ns ) use ( $nsInfo ) {
2368 return $nsInfo->isTalk( $ns );
2369 } );
2370
2371 // prefer non-talk pages
2372 $namespaces = array_diff( $namespaces, $talk );
2373 $namespaces = array_merge( $namespaces, $talk );
2374
2375 // check default content model of each namespace
2376 foreach ( $namespaces as $ns ) {
2377 if ( !isset( $wgNamespaceContentModels[$ns] ) ||
2378 $wgNamespaceContentModels[$ns] === CONTENT_MODEL_WIKITEXT
2379 ) {
2380 $wikitextNS = $ns;
2381
2382 return $wikitextNS;
2383 }
2384 }
2385
2386 // give up
2387 // @todo Inside a test, we could skip the test as incomplete.
2388 // But frequently, this is used in fixture setup.
2389 throw new MWException( "No namespace defaults to wikitext!" );
2390 }
2391
2392 /**
2393 * Check, if $wgDiff3 is set and ready to merge
2394 * Will mark the calling test as skipped, if not ready
2395 *
2396 * @since 1.21
2397 */
2398 protected function markTestSkippedIfNoDiff3() {
2399 global $wgDiff3;
2400
2401 # This check may also protect against code injection in
2402 # case of broken installations.
2403 Wikimedia\suppressWarnings();
2404 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
2405 Wikimedia\restoreWarnings();
2406
2407 if ( !$haveDiff3 ) {
2408 $this->markTestSkipped( "Skip test, since diff3 is not configured" );
2409 }
2410 }
2411
2412 /**
2413 * Check if $extName is a loaded PHP extension, will skip the
2414 * test whenever it is not loaded.
2415 *
2416 * @since 1.21
2417 * @param string $extName
2418 * @return bool
2419 */
2420 protected function checkPHPExtension( $extName ) {
2421 $loaded = extension_loaded( $extName );
2422 if ( !$loaded ) {
2423 $this->markTestSkipped( "PHP extension '$extName' is not loaded, skipping." );
2424 }
2425
2426 return $loaded;
2427 }
2428
2429 /**
2430 * Skip the test if using the specified database type
2431 *
2432 * @param string $type Database type
2433 * @since 1.32
2434 */
2435 protected function markTestSkippedIfDbType( $type ) {
2436 if ( $this->db->getType() === $type ) {
2437 $this->markTestSkipped( "The $type database type isn't supported for this test" );
2438 }
2439 }
2440
2441 /**
2442 * Used as a marker to prevent wfResetOutputBuffers from breaking PHPUnit.
2443 * @param string $buffer
2444 * @return string
2445 */
2446 public static function wfResetOutputBuffersBarrier( $buffer ) {
2447 return $buffer;
2448 }
2449
2450 /**
2451 * Create a temporary hook handler which will be reset by tearDown.
2452 * This replaces other handlers for the same hook.
2453 * @param string $hookName Hook name
2454 * @param mixed $handler Value suitable for a hook handler
2455 * @since 1.28
2456 */
2457 protected function setTemporaryHook( $hookName, $handler ) {
2458 $this->mergeMwGlobalArrayValue( 'wgHooks', [ $hookName => [ $handler ] ] );
2459 }
2460
2461 /**
2462 * Check whether file contains given data.
2463 * @param string $fileName
2464 * @param string $actualData
2465 * @param bool $createIfMissing If true, and file does not exist, create it with given data
2466 * and skip the test.
2467 * @param string $msg
2468 * @since 1.30
2469 */
2470 protected function assertFileContains(
2471 $fileName,
2472 $actualData,
2473 $createIfMissing = false,
2474 $msg = ''
2475 ) {
2476 if ( $createIfMissing ) {
2477 if ( !file_exists( $fileName ) ) {
2478 file_put_contents( $fileName, $actualData );
2479 $this->markTestSkipped( "Data file $fileName does not exist" );
2480 }
2481 } else {
2482 self::assertFileExists( $fileName );
2483 }
2484 self::assertEquals( file_get_contents( $fileName ), $actualData, $msg );
2485 }
2486
2487 /**
2488 * Edits or creates a page/revision
2489 * @param string $pageName Page title
2490 * @param string $text Content of the page
2491 * @param string $summary Optional summary string for the revision
2492 * @param int $defaultNs Optional namespace id
2493 * @param User|null $user If null, static::getTestSysop()->getUser() is used.
2494 * @return Status Object as returned by WikiPage::doEditContent()
2495 * @throws MWException If this test cases's needsDB() method doesn't return true.
2496 * Test cases can use "@group Database" to enable database test support,
2497 * or list the tables under testing in $this->tablesUsed, or override the
2498 * needsDB() method.
2499 */
2500 protected function editPage(
2501 $pageName,
2502 $text,
2503 $summary = '',
2504 $defaultNs = NS_MAIN,
2505 User $user = null
2506 ) {
2507 if ( !$this->needsDB() ) {
2508 throw new MWException( 'When testing which pages, the test cases\'s needsDB()' .
2509 ' method should return true. Use @group Database or $this->tablesUsed.' );
2510 }
2511
2512 $title = Title::newFromText( $pageName, $defaultNs );
2513 $page = WikiPage::factory( $title );
2514
2515 return $page->doEditContent(
2516 ContentHandler::makeContent( $text, $title ),
2517 $summary,
2518 0,
2519 false,
2520 $user
2521 );
2522 }
2523
2524 /**
2525 * Revision-deletes a revision.
2526 *
2527 * @param Revision|int $rev Revision to delete
2528 * @param array $value Keys are Revision::DELETED_* flags. Values are 1 to set the bit, 0 to
2529 * clear, -1 to leave alone. (All other values also clear the bit.)
2530 * @param string $comment Deletion comment
2531 */
2532 protected function revisionDelete(
2533 $rev, array $value = [ Revision::DELETED_TEXT => 1 ], $comment = ''
2534 ) {
2535 if ( is_int( $rev ) ) {
2536 $rev = Revision::newFromId( $rev );
2537 }
2538 RevisionDeleter::createList(
2539 'revision', RequestContext::getMain(), $rev->getTitle(), [ $rev->getId() ]
2540 )->setVisibility( [
2541 'value' => $value,
2542 'comment' => $comment,
2543 ] );
2544 }
2545
2546 /**
2547 * Returns a PHPUnit constraint that matches anything other than a fixed set of values. This can
2548 * be used to whitelist values, e.g.
2549 * $mock->expects( $this->never() )->method( $this->anythingBut( 'foo', 'bar' ) );
2550 * which will throw if any unexpected method is called.
2551 *
2552 * @param mixed ...$values Values that are not matched
2553 */
2554 protected function anythingBut( ...$values ) {
2555 return $this->logicalNot( $this->logicalOr(
2556 ...array_map( [ $this, 'matches' ], $values )
2557 ) );
2558 }
2559 }
2560
2561 class_alias( 'MediaWikiIntegrationTestCase', 'MediaWikiTestCase' );