MediaWiki  1.28.1
RevisionStorageTestContentHandlerUseDB.php
Go to the documentation of this file.
1 <?php
2 
9 
10  protected function setUp() {
11  $this->setMwGlobals( 'wgContentHandlerUseDB', false );
12 
13  $dbw = wfGetDB( DB_MASTER );
14 
15  $page_table = $dbw->tableName( 'page' );
16  $revision_table = $dbw->tableName( 'revision' );
17  $archive_table = $dbw->tableName( 'archive' );
18 
19  if ( $dbw->fieldExists( $page_table, 'page_content_model' ) ) {
20  $dbw->query( "alter table $page_table drop column page_content_model" );
21  $dbw->query( "alter table $revision_table drop column rev_content_model" );
22  $dbw->query( "alter table $revision_table drop column rev_content_format" );
23  $dbw->query( "alter table $archive_table drop column ar_content_model" );
24  $dbw->query( "alter table $archive_table drop column ar_content_format" );
25  }
26 
27  parent::setUp();
28  }
29 
33  public function testSelectFields() {
34  $fields = Revision::selectFields();
35 
36  $this->assertTrue( in_array( 'rev_id', $fields ), 'missing rev_id in list of fields' );
37  $this->assertTrue( in_array( 'rev_page', $fields ), 'missing rev_page in list of fields' );
38  $this->assertTrue(
39  in_array( 'rev_timestamp', $fields ),
40  'missing rev_timestamp in list of fields'
41  );
42  $this->assertTrue( in_array( 'rev_user', $fields ), 'missing rev_user in list of fields' );
43 
44  $this->assertFalse(
45  in_array( 'rev_content_model', $fields ),
46  'missing rev_content_model in list of fields'
47  );
48  $this->assertFalse(
49  in_array( 'rev_content_format', $fields ),
50  'missing rev_content_format in list of fields'
51  );
52  }
53 
57  public function testGetContentModel() {
58  try {
59  $this->makeRevision( [ 'text' => 'hello hello.',
60  'content_model' => CONTENT_MODEL_JAVASCRIPT ] );
61 
62  $this->fail( "Creating JavaScript content on a wikitext page should fail with "
63  . "\$wgContentHandlerUseDB disabled" );
64  } catch ( MWException $ex ) {
65  $this->assertTrue( true ); // ok
66  }
67  }
68 
72  public function testGetContentFormat() {
73  try {
74  // @todo change this to test failure on using a non-standard (but supported) format
75  // for a content model supported in the given location. As of 1.21, there are
76  // no alternative formats for any of the standard content models that could be
77  // used for this though.
78 
79  $this->makeRevision( [ 'text' => 'hello hello.',
80  'content_model' => CONTENT_MODEL_JAVASCRIPT,
81  'content_format' => 'text/javascript' ] );
82 
83  $this->fail( "Creating JavaScript content on a wikitext page should fail with "
84  . "\$wgContentHandlerUseDB disabled" );
85  } catch ( MWException $ex ) {
86  $this->assertTrue( true ); // ok
87  }
88  }
89 }
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
Test class for Revision storage.
const DB_MASTER
Definition: defines.php:23
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
Definition: Revision.php:442
CONTENT_MODEL_JAVASCRIPT
Uploads have to be specially set up to be secure.
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
ContentHandler Database ^— important, causes temporary tables to be used instead of the real databas...
setMwGlobals($pairs, $value=null)