MediaWiki REL1_28
MagicVariableTest.php
Go to the documentation of this file.
1<?php
21 private $testParser = null;
22
31 'revisionday',
32 'revisionmonth1',
33 ];
34
36 protected function setUp() {
37 parent::setUp();
38
39 $contLang = Language::factory( 'en' );
40 $this->setMwGlobals( [
41 'wgLanguageCode' => 'en',
42 'wgContLang' => $contLang,
43 ] );
44
45 $this->testParser = new Parser();
46 $this->testParser->Options( ParserOptions::newFromUserAndLang( new User, $contLang ) );
47
48 # initialize parser output
49 $this->testParser->clearState();
50
51 # Needs a title to do magic word stuff
52 $title = Title::newFromText( 'Tests' );
53 # Else it needs a db connection just to check if it's a redirect
54 # (when deciding the page language).
55 $title->mRedirect = false;
56
57 $this->testParser->setTitle( $title );
58 }
59
64 private static function createProviderUpTo( $num ) {
65 $ret = [];
66 for ( $i = 1; $i <= $num; $i++ ) {
67 $ret[] = [ $i ];
68 }
69
70 return $ret;
71 }
72
76 public static function provideMonths() {
77 return self::createProviderUpTo( 12 );
78 }
79
83 public static function provideDays() {
84 return self::createProviderUpTo( 31 );
85 }
86
87 # ############## TESTS #############################################
88 # @todo FIXME:
89 # - those got copy pasted, we can probably make them cleaner
90 # - tests are lacking useful messages
91
92 # day
93
95 public function testCurrentdayIsUnPadded( $day ) {
96 $this->assertUnPadded( 'currentday', $day );
97 }
98
100 public function testCurrentdaytwoIsZeroPadded( $day ) {
101 $this->assertZeroPadded( 'currentday2', $day );
102 }
103
105 public function testLocaldayIsUnPadded( $day ) {
106 $this->assertUnPadded( 'localday', $day );
107 }
108
110 public function testLocaldaytwoIsZeroPadded( $day ) {
111 $this->assertZeroPadded( 'localday2', $day );
112 }
113
114 # month
115
117 public function testCurrentmonthIsZeroPadded( $month ) {
118 $this->assertZeroPadded( 'currentmonth', $month );
119 }
120
122 public function testCurrentmonthoneIsUnPadded( $month ) {
123 $this->assertUnPadded( 'currentmonth1', $month );
124 }
125
127 public function testLocalmonthIsZeroPadded( $month ) {
128 $this->assertZeroPadded( 'localmonth', $month );
129 }
130
132 public function testLocalmonthoneIsUnPadded( $month ) {
133 $this->assertUnPadded( 'localmonth1', $month );
134 }
135
136 # revision day
137
139 public function testRevisiondayIsUnPadded( $day ) {
140 $this->assertUnPadded( 'revisionday', $day );
141 }
142
144 public function testRevisiondaytwoIsZeroPadded( $day ) {
145 $this->assertZeroPadded( 'revisionday2', $day );
146 }
147
148 # revision month
149
151 public function testRevisionmonthIsZeroPadded( $month ) {
152 $this->assertZeroPadded( 'revisionmonth', $month );
153 }
154
156 public function testRevisionmonthoneIsUnPadded( $month ) {
157 $this->assertUnPadded( 'revisionmonth1', $month );
158 }
159
160 # ############## HELPERS ############################################
161
163 public function assertZeroPadded( $magic, $value ) {
164 $this->assertMagicPadding( $magic, $value, '%02d' );
165 }
166
168 public function assertUnPadded( $magic, $value ) {
169 $this->assertMagicPadding( $magic, $value, '%d' );
170 }
171
178 private function assertMagicPadding( $magic, $value, $format ) {
179 # Initialize parser timestamp as year 2010 at 12h34 56s.
180 # month and day are given by the caller ($value). Month < 12!
181 if ( $value > 12 ) {
182 $month = $value % 12;
183 } else {
184 $month = $value;
185 }
186
187 $this->setParserTS(
188 sprintf( '2010%02d%02d123456', $month, $value )
189 );
190
191 # please keep the following commented line of code. It helps debugging.
192 // print "\nDEBUG (value $value):" . sprintf( '2010%02d%02d123456', $value, $value ) . "\n";
193
194 # format expectation and test it
195 $expected = sprintf( $format, $value );
196 $this->assertMagic( $expected, $magic );
197 }
198
203 private function setParserTS( $ts ) {
204 $this->testParser->Options()->setTimestamp( $ts );
205 $this->testParser->mRevisionTimestamp = $ts;
206 }
207
213 private function assertMagic( $expected, $magic ) {
214 if ( in_array( $magic, $this->expectedAsInteger ) ) {
215 $expected = (int)$expected;
216 }
217
218 # Generate a message for the assertion
219 $msg = sprintf( "Magic %s should be <%s:%s>",
220 $magic,
221 $expected,
222 gettype( $expected )
223 );
224
225 $this->assertSame(
226 $expected,
227 $this->testParser->getVariableValue( $magic ),
228 $msg
229 );
230 }
231}
assertZeroPadded( $magic, $value)
assertion helper expecting a magic output which is zero padded
setParserTS( $ts)
helper to set the parser timestamp and revision timestamp
static createProviderUpTo( $num)
testRevisiondayIsUnPadded( $day)
provideDays
setUp()
setup a basic parser object
testLocaldaytwoIsZeroPadded( $day)
provideDays
testCurrentdayIsUnPadded( $day)
provideDays
$expectedAsInteger
An array of magicword returned as type integer by the parser They are usually returned as a string fo...
testLocalmonthoneIsUnPadded( $month)
provideMonths
testLocaldayIsUnPadded( $day)
provideDays
testRevisiondaytwoIsZeroPadded( $day)
provideDays
testCurrentdaytwoIsZeroPadded( $day)
provideDays
testRevisionmonthIsZeroPadded( $month)
provideMonths
assertMagic( $expected, $magic)
Assertion helper to test a magic variable output.
testCurrentmonthIsZeroPadded( $month)
provideMonths
assertMagicPadding( $magic, $value, $format)
Main assertion helper for magic variables padding.
testRevisionmonthoneIsUnPadded( $month)
provideMonths
testLocalmonthIsZeroPadded( $month)
provideMonths
assertUnPadded( $magic, $value)
assertion helper expecting a magic output which is unpadded
testCurrentmonthoneIsUnPadded( $month)
provideMonths
setMwGlobals( $pairs, $value=null)
static newFromUserAndLang(User $user, Language $lang)
Get a ParserOptions object from a given user and language.
PHP Parser - Processes wiki markup (which uses a more user-friendly syntax, such as "[[link]]" for ma...
Definition Parser.php:70
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:986
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:1949
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:37