MediaWiki  1.29.1
ContentHandlerSanityTest.php
Go to the documentation of this file.
1 <?php
2 
3 use Wikimedia\TestingAccessWrapper;
4 
23 
24  public static function provideHandlers() {
26  $handlers = [];
27  foreach ( $models as $model ) {
28  $handlers[] = [ ContentHandler::getForModelID( $model ) ];
29  }
30 
31  return $handlers;
32  }
33 
39  $content = $handler->makeEmptyContent();
40  $this->assertInstanceOf( Content::class, $content );
41  if ( $handler instanceof TextContentHandler ) {
42  // TextContentHandler::getContentClass() is protected, so bypass
43  // that restriction
44  $testingWrapper = TestingAccessWrapper::newFromObject( $handler );
45  $this->assertInstanceOf( $testingWrapper->getContentClass(), $content );
46  }
47 
48  $handlerClass = get_class( $handler );
49  $contentClass = get_class( $content );
50 
51  if ( $handler->supportsDirectEditing() ) {
52  $this->assertTrue(
53  $content->isValid(),
54  "$handlerClass::makeEmptyContent() did not return a valid content ($contentClass::isValid())"
55  );
56  }
57  }
58 
59 }
ContentHandler
A content handler knows how do deal with a specific type of content on a wiki page.
Definition: ContentHandler.php:49
ContentHandler\getForModelID
static getForModelID( $modelId)
Returns the ContentHandler singleton for the given model ID.
Definition: ContentHandler.php:293
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
ContentHandlerSanityTest
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Ge...
Definition: ContentHandlerSanityTest.php:22
ContentHandler\getContentModels
static getContentModels()
Definition: ContentHandler.php:361
$content
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
Definition: hooks.txt:1049
MediaWikiTestCase
Definition: MediaWikiTestCase.php:13
ContentHandlerSanityTest\testMakeEmptyContent
testMakeEmptyContent(ContentHandler $handler)
provideHandlers
Definition: ContentHandlerSanityTest.php:38
TextContentHandler
Base content handler implementation for flat text contents.
Definition: TextContentHandler.php:31
$handler
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Definition: hooks.txt:783
ContentHandlerSanityTest\provideHandlers
static provideHandlers()
Definition: ContentHandlerSanityTest.php:24
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52