MediaWiki  1.29.1
WikiPageTestContentHandlerUseDB.php
Go to the documentation of this file.
1 <?php
2 
9 
10  protected function setUp() {
11  parent::setUp();
12  $this->setMwGlobals( 'wgContentHandlerUseDB', false );
13 
14  $dbw = wfGetDB( DB_MASTER );
15 
16  $page_table = $dbw->tableName( 'page' );
17  $revision_table = $dbw->tableName( 'revision' );
18  $archive_table = $dbw->tableName( 'archive' );
19 
20  if ( $dbw->fieldExists( $page_table, 'page_content_model' ) ) {
21  $dbw->query( "alter table $page_table drop column page_content_model" );
22  $dbw->query( "alter table $revision_table drop column rev_content_model" );
23  $dbw->query( "alter table $revision_table drop column rev_content_format" );
24  $dbw->query( "alter table $archive_table drop column ar_content_model" );
25  $dbw->query( "alter table $archive_table drop column ar_content_format" );
26  }
27  }
28 
32  public function testGetContentModel() {
33  $page = $this->createPage(
34  "WikiPageTest_testGetContentModel",
35  "some text",
37  );
38 
39  $page = new WikiPage( $page->getTitle() );
40 
41  // NOTE: since the content model is not recorded in the database,
42  // we expect to get the default, namely CONTENT_MODEL_WIKITEXT
43  $this->assertEquals( CONTENT_MODEL_WIKITEXT, $page->getContentModel() );
44  }
45 
49  public function testGetContentHandler() {
50  $page = $this->createPage(
51  "WikiPageTest_testGetContentHandler",
52  "some text",
54  );
55 
56  // NOTE: since the content model is not recorded in the database,
57  // we expect to get the default, namely CONTENT_MODEL_WIKITEXT
58  $page = new WikiPage( $page->getTitle() );
59  $this->assertEquals( 'WikitextContentHandler', get_class( $page->getContentHandler() ) );
60  }
61 }
WikiPageTest\createPage
createPage( $page, $text, $model=null)
Definition: WikiPageTest.php:82
WikiPage
Class representing a MediaWiki article and history.
Definition: WikiPage.php:36
CONTENT_MODEL_WIKITEXT
const CONTENT_MODEL_WIKITEXT
Definition: Defines.php:233
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
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:3060
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Definition: MediaWikiTestCase.php:658
$page
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2536
WikiPageTest
ContentHandler Database ^— important, causes temporary tables to be used instead of the real database...
Definition: WikiPageTest.php:9
DB_MASTER
const DB_MASTER
Definition: defines.php:26
WikiPageTestContentHandlerUseDB
ContentHandler Database ^— important, causes temporary tables to be used instead of the real database...
Definition: WikiPageTestContentHandlerUseDB.php:8
WikiPageTestContentHandlerUseDB\testGetContentHandler
testGetContentHandler()
WikiPage::getContentHandler.
Definition: WikiPageTestContentHandlerUseDB.php:49
WikiPageTestContentHandlerUseDB\testGetContentModel
testGetContentModel()
WikiPage::getContentModel.
Definition: WikiPageTestContentHandlerUseDB.php:32
CONTENT_MODEL_JAVASCRIPT
const CONTENT_MODEL_JAVASCRIPT
Definition: Defines.php:234
WikiPageTestContentHandlerUseDB\setUp
setUp()
Definition: WikiPageTestContentHandlerUseDB.php:10