wiki.techinc.nl/tests/phpunit/integration/includes/ExtensionJsonTestBase.php
mainframe98 ffed58bcef Make ExtensionJsonTestBase more extendable
Extensions or skins might want to define their own tests and not
giving them access to the cached JSON is limiting. Because the
method was private for a reason, make it final to prevent overriding
it and breaking things in weird ways.

Also, now that we are on PHP 7.4, use JSON_THROW_ON_ERROR to allow
PHPUnit to have clearer error messages when extension.json/skin.json
is not valid JSON.

Follows-Up: I47757958e54d5e9d47a309b4037ff47dd9c1d382
Change-Id: I5819da9c59499d1752057f79b1855872064ff32e
2023-03-28 20:38:58 +02:00

290 lines
9.7 KiB
PHP

<?php
declare( strict_types=1 );
namespace MediaWiki\Tests;
use ApiMain;
use ApiQuery;
use ApiTestContext;
use ContentHandler;
use FauxRequest;
use MediaWiki\Http\HttpRequestFactory;
use MediaWiki\MediaWikiServices;
use MediaWikiIntegrationTestCase;
use MultiHttpClient;
use Wikimedia\Rdbms\DBConnRef;
use Wikimedia\Rdbms\ILoadBalancer;
use Wikimedia\Rdbms\LBFactory;
/**
* Base class for testing extension.json.
*
* While {@link \ExtensionJsonValidationTest} tests basic validity of all
* extension.json and skin.json files that are available,
* individual extensions can use this class to opt into further testing
* by adding a test class extending this base class.
*
* This includes tests for object factory specifications
* (API modules, special pages, hook handlers, etc.) to ensure that:
* * The specifications are valid,
* i.e. they can be created without any errors.
* This protects, for instance, against misconfigured services.
* (This works best if the constructor factory function being called
* declares types for the parameters it receives.)
* * No HTTP or database connections are made during initialization.
* Opening connections already when an object is created,
* not only when it is used, is a potential performance issue.
* * Optionally: Each specification's list of services is sorted.
* Prescribing an automatically testable order frees the developer
* from having to think about the most logical order for any services.
*
* @license GPL-2.0-or-later
*/
abstract class ExtensionJsonTestBase extends MediaWikiIntegrationTestCase {
/**
* @var string The path to the extension.json file.
* Should be specified as `__DIR__ . '/.../extension.json'`.
*/
protected string $extensionJsonPath;
/**
* @var string|null The prefix of the extension's own services in the service container.
* If non-null, all services lists must be sorted,
* and first list all services outside the extension (without the prefix),
* then all services within the extension (with the prefix), in alphabetical order.
* If null (default), the order of services lists is not tested.
* To require all services to be listed in alphabetical order,
* regardless of whether they belong to the extension or not,
* set this to the empty string.
* @see ExtensionServicesTestBase::$serviceNamePrefix
*/
protected ?string $serviceNamePrefix = null;
protected function setUp(): void {
parent::setUp();
// Factory methods should never access the database or do http requests
// https://phabricator.wikimedia.org/T243729
$this->disallowDBAccess();
$this->disallowHttpAccess();
}
final protected function getExtensionJson(): array {
static $extensionJson = null;
if ( $extensionJson === null ) {
$extensionJson = json_decode(
file_get_contents( $this->extensionJsonPath ),
true,
512,
JSON_THROW_ON_ERROR
);
}
return $extensionJson;
}
/** @dataProvider provideHookHandlerNames */
public function testHookHandler( string $hookHandlerName ): void {
$specification = $this->getExtensionJson()['HookHandlers'][$hookHandlerName];
$objectFactory = MediaWikiServices::getInstance()->getObjectFactory();
$objectFactory->createObject( $specification, [
'allowClassName' => true,
] );
$this->assertTrue( true );
}
public function provideHookHandlerNames(): iterable {
foreach ( $this->getExtensionJson()['HookHandlers'] ?? [] as $hookHandlerName => $specification ) {
yield [ $hookHandlerName ];
}
}
/** @dataProvider provideContentModelIDs */
public function testContentHandler( string $contentModelID ): void {
$specification = $this->getExtensionJson()['ContentHandlers'][$contentModelID];
$objectFactory = MediaWikiServices::getInstance()->getObjectFactory();
$objectFactory->createObject( $specification, [
'assertClass' => ContentHandler::class,
'allowCallable' => true,
'allowClassName' => true,
'extraArgs' => [ $contentModelID ],
] );
$this->assertTrue( true );
}
public function provideContentModelIDs(): iterable {
foreach ( $this->getExtensionJson()['ContentHandlers'] ?? [] as $contentModelID => $specification ) {
yield [ $contentModelID ];
}
}
/** @dataProvider provideApiModuleNames */
public function testApiModule( string $moduleName ): void {
$specification = $this->getExtensionJson()['APIModules'][$moduleName];
$objectFactory = MediaWikiServices::getInstance()->getObjectFactory();
$objectFactory->createObject( $specification, [
'allowClassName' => true,
'extraArgs' => [ $this->mockApiMain(), 'modulename' ],
] );
$this->assertTrue( true );
}
public function provideApiModuleNames(): iterable {
foreach ( $this->getExtensionJson()['APIModules'] ?? [] as $moduleName => $specification ) {
yield [ $moduleName ];
}
}
/** @dataProvider provideApiQueryModuleListsAndNames */
public function testApiQueryModule( string $moduleList, string $moduleName ): void {
$specification = $this->getExtensionJson()[$moduleList][$moduleName];
$objectFactory = MediaWikiServices::getInstance()->getObjectFactory();
$objectFactory->createObject( $specification, [
'allowClassName' => true,
'extraArgs' => [ $this->mockApiQuery(), 'query' ],
] );
$this->assertTrue( true );
}
public function provideApiQueryModuleListsAndNames(): iterable {
foreach ( [ 'APIListModules', 'APIMetaModules', 'APIPropModules' ] as $moduleList ) {
foreach ( $this->getExtensionJson()[$moduleList] ?? [] as $moduleName => $specification ) {
yield [ $moduleList, $moduleName ];
}
}
}
/** @dataProvider provideSpecialPageNames */
public function testSpecialPage( string $specialPageName ): void {
$specification = $this->getExtensionJson()['SpecialPages'][$specialPageName];
$objectFactory = MediaWikiServices::getInstance()->getObjectFactory();
$objectFactory->createObject( $specification, [
'allowClassName' => true,
] );
$this->assertTrue( true );
}
public function provideSpecialPageNames(): iterable {
foreach ( $this->getExtensionJson()['SpecialPages'] as $specialPageName => $specification ) {
yield [ $specialPageName ];
}
}
/** @dataProvider provideServicesLists */
public function testServicesSorted( array $services ): void {
$sortedServices = $services;
usort( $sortedServices, function ( $serviceA, $serviceB ) {
$isExtensionServiceA = strpos( $serviceA, $this->serviceNamePrefix ) === 0;
$isExtensionServiceB = strpos( $serviceB, $this->serviceNamePrefix ) === 0;
if ( $isExtensionServiceA !== $isExtensionServiceB ) {
return $isExtensionServiceA ? 1 : -1;
}
return strcmp( $serviceA, $serviceB );
} );
$this->assertSame( $sortedServices, $services,
'Services should be sorted: first all MediaWiki services, then all extension ones.' );
}
public function provideServicesLists(): iterable {
if ( $this->serviceNamePrefix === null ) {
return; // do not test sorting
}
foreach ( $this->provideSpecifications() as $name => $specification ) {
if (
is_array( $specification ) &&
array_key_exists( 'services', $specification )
) {
yield $name => [ $specification['services'] ];
}
}
}
public function provideSpecifications(): iterable {
foreach ( $this->provideHookHandlerNames() as [ $hookHandlerName ] ) {
yield "HookHandlers/$hookHandlerName" => $this->getExtensionJson()['HookHandlers'][$hookHandlerName];
}
foreach ( $this->provideContentModelIDs() as [ $contentModelID ] ) {
yield "ContentHandlers/$contentModelID" => $this->getExtensionJson()['ContentHandlers'][$contentModelID];
}
foreach ( $this->provideApiModuleNames() as [ $moduleName ] ) {
yield "APIModules/$moduleName" => $this->getExtensionJson()['APIModules'][$moduleName];
}
foreach ( $this->provideApiQueryModuleListsAndNames() as [ $moduleList, $moduleName ] ) {
yield "$moduleList/$moduleName" => $this->getExtensionJson()[$moduleList][$moduleName];
}
foreach ( $this->provideSpecialPageNames() as [ $specialPageName ] ) {
yield "SpecialPages/$specialPageName" => $this->getExtensionJson()['SpecialPages'][$specialPageName];
}
}
private function disallowDBAccess() {
$this->setService(
'DBLoadBalancerFactory',
function () {
$lb = $this->createMock( ILoadBalancer::class );
$lb->expects( $this->never() )
->method( 'getMaintenanceConnectionRef' );
$lb->method( 'getLocalDomainID' )
->willReturn( 'banana' );
// This LazyConnectionRef will use our mocked LoadBalancer when actually
// trying to connect, thus using it for DB queries will fail.
$lazyDb = new DBConnRef(
$lb,
[ 'dummy', 'dummy', 'dummy', 'dummy' ],
DB_REPLICA
);
$lb->method( 'getConnectionRef' )
->willReturn( $lazyDb );
$lb->method( 'getConnection' )
->willReturn( $lazyDb );
$lbFactory = $this->createMock( LBFactory::class );
$lbFactory->method( 'getMainLB' )
->willReturn( $lb );
$lbFactory->method( 'getLocalDomainID' )
->willReturn( 'banana' );
return $lbFactory;
}
);
}
private function disallowHttpAccess() {
$this->setService(
'HttpRequestFactory',
function () {
$factory = $this->createMock( HttpRequestFactory::class );
$factory->expects( $this->never() )
->method( 'create' );
$factory->expects( $this->never() )
->method( 'request' );
$factory->expects( $this->never() )
->method( 'get' );
$factory->expects( $this->never() )
->method( 'post' );
$factory->method( 'createMultiClient' )
->willReturn( $this->createMock( MultiHttpClient::class ) );
return $factory;
}
);
}
private function mockApiMain(): ApiMain {
$request = new FauxRequest();
$ctx = new ApiTestContext();
$ctx = $ctx->newTestContext( $request );
return new ApiMain( $ctx );
}
private function mockApiQuery(): ApiQuery {
return $this->mockApiMain()->getModuleManager()->getModule( 'query' );
}
}