MediaWiki  1.33.0
RevisionMcrDbTest.php
Go to the documentation of this file.
1 <?php
2 
6 
19 
21 
22  public function setUp() {
23  parent::setUp();
24  }
25 
26  protected function getContentHandlerUseDB() {
27  return true;
28  }
29 
30  public function provideGetTextId() {
31  yield [ [], null ];
32 
33  $slot = new SlotRecord( (object)[
34  'slot_revision_id' => 42,
35  'slot_content_id' => 1,
36  'content_address' => 'tt:789',
37  'model_name' => CONTENT_MODEL_WIKITEXT,
38  'role_name' => SlotRecord::MAIN,
39  'slot_origin' => 1,
40  ], new WikitextContent( 'Test' ) );
41 
42  $rec = new MutableRevisionRecord( $this->getMockTitle() );
43  $rec->setId( 42 );
44  $rec->setSlot( $slot );
45 
46  yield [ $rec, 789 ];
47  }
48 
49  public function provideGetRevisionText() {
50  yield 'no text table' => [
51  []
52  ];
53  }
54 
55 }
RevisionMcrDbTest
Tests Revision against the MCR DB schema after schema migration.
Definition: RevisionMcrDbTest.php:18
RevisionMcrDbTest\provideGetTextId
provideGetTextId()
Definition: RevisionMcrDbTest.php:30
RevisionMcrDbTest\setUp
setUp()
Definition: RevisionMcrDbTest.php:22
RevisionMcrDbTest\provideGetRevisionText
provideGetRevisionText()
Definition: RevisionMcrDbTest.php:49
RevisionDbTestBase\getMockTitle
getMockTitle()
Definition: RevisionDbTestBase.php:112
CONTENT_MODEL_WIKITEXT
const CONTENT_MODEL_WIKITEXT
Definition: Defines.php:235
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
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
RevisionMcrDbTest\getContentHandlerUseDB
getContentHandlerUseDB()
Definition: RevisionMcrDbTest.php:26
WikitextContent
Content object for wiki text pages.
Definition: WikitextContent.php:36
RevisionDbTestBase
RevisionDbTestBase contains test cases for the Revision class that have Database interactions.
Definition: RevisionDbTestBase.php:15
null
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition: hooks.txt:780
Revision\MutableRevisionRecord
Mutable RevisionRecord implementation, for building new revision entries programmatically.
Definition: MutableRevisionRecord.php:41
MediaWiki\Tests\Revision\McrSchemaOverride
trait McrSchemaOverride
Trait providing schema overrides that allow tests to run against the post-migration MCR database sche...
Definition: McrSchemaOverride.php:11
Revision\SlotRecord
Value object representing a content slot associated with a page revision.
Definition: SlotRecord.php:39