gplx/mediawiki/extensions/SemanticMediaWiki/tests/phpunit/JSONScriptTestCaseRunner.php

340 lines
9.0 KiB
PHP

<?php
namespace SMW\Tests;
use MediaWiki\Context\RequestContext;
use MediaWiki\MediaWikiServices;
use SMW\Localizer\Localizer;
use SMW\NamespaceManager;
use SMW\SPARQLStore\SPARQLStore;
use SMW\Tests\Utils\File\JsonFileReader;
use SMW\Tests\Utils\JSONScript\JsonTestCaseContentHandler;
use SMW\Tests\Utils\JSONScript\JsonTestCaseFileHandler;
use SMW\Tests\Utils\UtilityFactory;
/**
* The `JSONScriptTestCaseRunner` is a convenience provider for `Json` formatted
* integration tests to allow writing tests quicker without the need to setup
* or tear down specific data structures.
*
* The JSON format should make it also possible for novice user to understand
* what sort of tests are run as the content is based on wikitext rather than
* native PHP.
*
* @group semantic-mediawiki
* @group Database
* @group medium
*
* @license GPL-2.0-or-later
* @since 2.2
*
* @author mwjames
*/
abstract class JSONScriptTestCaseRunner extends SMWIntegrationTestCase {
/**
* @var JsonFileReader
*/
private $fileReader;
/**
* @var JsonTestCaseContentHandler
*/
private $jsonTestCaseContentHandler;
/**
* @var array
*/
private $itemsMarkedForDeletion = [];
/**
* @var array
*/
private $configValueCallback = [];
/**
* @var bool
*/
protected $deletePagesOnTearDown = true;
/**
* @var string
*/
protected $searchByFileExtension = 'json';
/**
* @var string
*/
protected $connectorId = '';
protected function setUp(): void {
parent::setUp();
$utilityFactory = $this->testEnvironment->getUtilityFactory();
$utilityFactory->newMwHooksHandler()->deregisterListedHooks();
$utilityFactory->newMwHooksHandler()->invokeHooksFromRegistry();
$this->fileReader = $utilityFactory->newJsonFileReader();
$this->jsonTestCaseContentHandler = new JsonTestCaseContentHandler(
$utilityFactory->newPageCreator(),
$utilityFactory->newPageDeleter(),
$utilityFactory->newLocalFileUpload()
);
if ( $this->getStore() instanceof SPARQLStore ) {
if ( isset( $GLOBALS['smwgSparqlDatabaseConnector'] ) ) {
$connectorId = $GLOBALS['smwgSparqlDatabaseConnector'];
} else {
$connectorId = $GLOBALS['smwgSparqlRepositoryConnector'];
}
$this->connectorId = strtolower( $connectorId );
} elseif ( $this->getStore() instanceof \SMW\Elastic\ElasticStore ) {
$this->connectorId = 'elastic';
} else {
$this->connectorId = strtolower( $this->testDatabaseTableBuilder->getDBConnection()->getType() );
}
}
protected function tearDown(): void {
if ( $this->deletePagesOnTearDown ) {
$this->testEnvironment->flushPages( $this->itemsMarkedForDeletion );
}
$this->testEnvironment->tearDown();
parent::tearDown();
}
/**
* @return string
*/
abstract protected function getTestCaseLocation();
/**
* @param JsonTestCaseFileHandler $jsonTestCaseFileHandler
*/
abstract protected function runTestCaseFile( JsonTestCaseFileHandler $jsonTestCaseFileHandler );
/**
* @return string
*/
protected function getRequiredJsonTestCaseMinVersion() {
return '0.1';
}
/**
* @return array
*/
protected function getAllowedTestCaseFiles() {
return [];
}
/**
* @since 3.0
*
* @return
*/
protected function getDependencyDefinitions() {
return [];
}
/**
* Selected list of settings (internal or MediaWiki related) that are
* permissible for the time of the test run to be manipulated.
*
* For a configuration that requires special treatment (i.e. where a simple
* assignment isn't sufficient), a callback can be assigned to a settings
* key in order to sort out required manipulation (constants etc.).
*
* @return array
*/
protected function getPermittedSettings() {
// Ensure that the context is set for a selected language
// and dependent objects are reset
$this->registerConfigValueCallback( 'wgContLang', function ( $val ) {
RequestContext::getMain()->setLanguage( $val );
Localizer::clear();
// #4682, Avoid any surprises when the `wgLanguageCode` is changed during a test
NamespaceManager::clear();
// Reset title-related services to prevent stale language objects. See #5951.
$this->testEnvironment->resetMediaWikiService( 'TitleParser' );
$this->testEnvironment->resetMediaWikiService( '_MediaWikiTitleCodec' );
$languageFactory = MediaWikiServices::getInstance()->getLanguageFactory();
$lang = $languageFactory->getLanguage( $val );
// https://github.com/wikimedia/mediawiki/commit/49ce67be93dfbb40d036703dad2278ea9843f1ad
$this->testEnvironment->redefineMediaWikiService( 'ContentLanguage', static function () use ( $lang ) {
return $lang;
} );
return $lang;
} );
$this->registerConfigValueCallback( 'wgLang', static function ( $val ) {
RequestContext::getMain()->setLanguage( $val );
Localizer::clear();
NamespaceManager::clear();
$languageFactory = MediaWikiServices::getInstance()->getLanguageFactory();
$lang = $languageFactory->getLanguage( $val );
return $lang;
} );
return [];
}
/**
* @param string $key
* @param Closure $callback
*/
protected function registerConfigValueCallback( $key, \Closure $callback ) {
$this->configValueCallback[$key] = $callback;
}
/**
* @return callable|null
*/
protected function getConfigValueCallback( $key ) {
return isset( $this->configValueCallback[$key] ) ? $this->configValueCallback[$key] : null;
}
/**
* Normally returns TRUE but can act on the list retrieved from
* JsonTestCaseScriptRunner::getAllowedTestCaseFiles (or hereof) to filter
* selected files and help fine tune a setup or debug a potential issue
* without having to run all test files at once.
*
* @param string $file
*
* @return bool
*/
protected function canTestCaseFile( $file ) {
// Filter specific files on-the-fly
$allowedTestCaseFiles = $this->getAllowedTestCaseFiles();
if ( $allowedTestCaseFiles === [] ) {
return true;
}
// Doesn't require the exact name
foreach ( $allowedTestCaseFiles as $fileName ) {
if ( strpos( $file, $fileName ) !== false ) {
return true;
}
}
return false;
}
/**
* @dataProvider jsonFileProvider
*/
public function testCaseFile( $file ) {
if ( !$this->canTestCaseFile( $file ) ) {
$this->markTestSkipped( $file . ' excluded from the test run' );
}
$this->fileReader->setFile( $file );
$this->runTestCaseFile( new JsonTestCaseFileHandler( $this->fileReader ) );
}
/**
* @return array
*/
public function jsonFileProvider() {
$provider = [];
$bulkFileProvider = UtilityFactory::getInstance()->newBulkFileProvider(
$this->getTestCaseLocation()
);
$bulkFileProvider->searchByFileExtension( $this->searchByFileExtension );
foreach ( $bulkFileProvider->getFiles() as $file ) {
$provider[basename( $file )] = [ $file ];
}
return $provider;
}
/**
* @since 2.2
*
* @param mixed $key
* @param mixed $value
*/
protected function changeGlobalSettingTo( $key, $value ) {
$this->testEnvironment->addConfiguration( $key, $value );
}
/**
* @since 2.2
*
* @param JsonTestCaseFileHandler $jsonTestCaseFileHandler
*/
protected function checkEnvironmentToSkipCurrentTest( JsonTestCaseFileHandler $jsonTestCaseFileHandler ) {
if ( $jsonTestCaseFileHandler->isIncomplete() ) {
$this->markTestIncomplete( $jsonTestCaseFileHandler->getReasonForSkip() );
}
if ( !$jsonTestCaseFileHandler->hasAllRequirements( $this->getDependencyDefinitions() ) ) {
$this->markTestSkipped( $jsonTestCaseFileHandler->getReasonForSkip() );
}
if ( $jsonTestCaseFileHandler->requiredToSkipForJsonVersion( $this->getRequiredJsonTestCaseMinVersion() ) ) {
$this->markTestSkipped( $jsonTestCaseFileHandler->getReasonForSkip() );
}
if ( $jsonTestCaseFileHandler->requiredToSkipForMwVersion( MW_VERSION ) ) {
$this->markTestSkipped( $jsonTestCaseFileHandler->getReasonForSkip() );
}
if ( $jsonTestCaseFileHandler->requiredToSkipOnSiteLanguage( $GLOBALS['wgLanguageCode'] ) ) {
$this->markTestSkipped( $jsonTestCaseFileHandler->getReasonForSkip() );
}
if ( $jsonTestCaseFileHandler->requiredToSkipForConnector( $this->testDatabaseTableBuilder->getDBConnection()->getType() ) ) {
$this->markTestSkipped( $jsonTestCaseFileHandler->getReasonForSkip() );
}
if ( $jsonTestCaseFileHandler->requiredToSkipForConnector( $this->testDatabaseTableBuilder->getDBConnection()->getType() ) ) {
$this->markTestSkipped( $jsonTestCaseFileHandler->getReasonForSkip() );
}
}
/**
* @since 2.5
*
* @param array $pages
* @param int $defaultNamespace
*/
protected function createPagesFrom( array $pages, $defaultNamespace = NS_MAIN ) {
$this->jsonTestCaseContentHandler->skipOn(
$this->connectorId
);
$this->jsonTestCaseContentHandler->setTestCaseLocation(
$this->getTestCaseLocation()
);
$this->jsonTestCaseContentHandler->createPagesFrom(
$pages,
$defaultNamespace
);
$this->testEnvironment->executePendingDeferredUpdates();
$this->itemsMarkedForDeletion = $this->jsonTestCaseContentHandler->getPages();
}
/**
* @deprecated 2.5
*/
protected function createPagesFor( array $pages, $defaultNamespace ) {
$this->createPagesFrom( $pages, $defaultNamespace );
}
}