MediaWiki  1.33.0
ArticleTest.php
Go to the documentation of this file.
1 <?php
2 
4 
8  private $title;
12  private $article;
13 
15  protected function setUp() {
16  parent::setUp();
17  $this->title = Title::makeTitle( NS_MAIN, 'SomePage' );
18  $this->article = new Article( $this->title );
19  }
20 
22  protected function tearDown() {
23  parent::tearDown();
24  $this->title = null;
25  $this->article = null;
26  }
27 
31  public function testImplementsGetMagic() {
32  $this->assertEquals( false, $this->article->mLatest, "Article __get magic" );
33  }
34 
39  public function testImplementsSetMagic() {
40  $this->article->mLatest = 2;
41  $this->assertEquals( 2, $this->article->mLatest, "Article __set magic" );
42  }
43 
48  public function testGetOrSetOnNewProperty() {
49  $this->article->ext_someNewProperty = 12;
50  $this->assertEquals( 12, $this->article->ext_someNewProperty,
51  "Article get/set magic on new field" );
52 
53  $this->article->ext_someNewProperty = -8;
54  $this->assertEquals( -8, $this->article->ext_someNewProperty,
55  "Article get/set magic on update to new field" );
56  }
57 }
ArticleTest\$article
Article $article
Definition: ArticleTest.php:12
ArticleTest\testImplementsSetMagic
testImplementsSetMagic()
@depends testImplementsGetMagic Article::__set
Definition: ArticleTest.php:39
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
NS_MAIN
const NS_MAIN
Definition: Defines.php:64
MediaWikiTestCase
Definition: MediaWikiTestCase.php:17
ArticleTest\testImplementsGetMagic
testImplementsGetMagic()
Article::__get.
Definition: ArticleTest.php:31
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:576
ArticleTest\testGetOrSetOnNewProperty
testGetOrSetOnNewProperty()
Article::__get Article::__set.
Definition: ArticleTest.php:48
ArticleTest
Definition: ArticleTest.php:3
ArticleTest\setUp
setUp()
creates a title object and its article object
Definition: ArticleTest.php:15
title
title
Definition: parserTests.txt:245
article
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of or an object and a method hook function The function part of a third party developers and administrators to define code that will be run at certain points in the mainline and to modify the data run by that mainline code Hooks can keep mainline code and make it easier to write extensions Hooks are a principled alternative to patches for two options in MediaWiki One reverses the order of a title before displaying the article
Definition: hooks.txt:23
Title
Represents a title within MediaWiki.
Definition: Title.php:40
ArticleTest\tearDown
tearDown()
cleanup title object and its article object
Definition: ArticleTest.php:22
Article
Class for viewing MediaWiki article and history.
Definition: Article.php:37
ArticleTest\$title
Title $title
Definition: ArticleTest.php:8