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