3use Wikimedia\ObjectFactory;
4use Wikimedia\TestingAccessWrapper;
15 'wgForceUIMsgAsContentMsg' => [],
27 $this->assertSame( $key, $message->getKey() );
28 $this->assertSame(
$params, $message->getParams() );
29 $this->assertEquals( $expectedLang, $message->getLanguage() );
31 $messageSpecifier = $this->getMockForAbstractClass( MessageSpecifier::class );
32 $messageSpecifier->expects( $this->
any() )
33 ->method(
'getKey' )->will( $this->returnValue( $key ) );
34 $messageSpecifier->expects( $this->
any() )
35 ->method(
'getParams' )->will( $this->returnValue(
$params ) );
36 $message =
new Message( $messageSpecifier, [], $language );
38 $this->assertSame( $key, $message->getKey() );
39 $this->assertSame(
$params, $message->getParams() );
40 $this->assertEquals( $expectedLang, $message->getLanguage() );
44 $langDe = Language::factory(
'de' );
45 $langEn = Language::factory(
'en' );
48 [ $langDe,
'foo', [], $langDe ],
49 [ $langDe,
'foo', [
'bar' ], $langDe ],
50 [ $langEn,
'foo', [
'bar' ], null ]
81 [ Message::rawParam(
'baz' ) ],
82 [ Message::rawParam(
'baz' ) ],
85 [ Message::rawParam(
'baz' ),
'foo' ],
86 [ Message::rawParam(
'baz' ),
'foo' ],
89 [ Message::rawParam(
'baz' ) ],
90 [ [ Message::rawParam(
'baz' ) ] ],
93 [ Message::rawParam(
'baz' ),
'foo' ],
94 [ [ Message::rawParam(
'baz' ),
'foo' ] ],
99 [ [
'baz',
'foo' ],
'hhh' ],
100 [ [
'baz',
'foo' ],
'hhh' ],
103 [ [
'baz',
'foo' ],
'hhh', [
'ahahahahha' ] ],
104 [ [
'baz',
'foo' ],
'hhh', [
'ahahahahha' ] ],
107 [ [
'baz',
'foo' ], [
'ahahahahha' ] ],
108 [ [
'baz',
'foo' ], [
'ahahahahha' ] ],
111 [ [
'baz' ], [
'ahahahahha' ] ],
112 [ [
'baz' ], [
'ahahahahha' ] ],
123 $msg =
new Message(
'imasomething' );
125 $returned = call_user_func_array( [ $msg,
'params' ],
$args );
127 $this->assertSame( $msg, $returned );
128 $this->assertSame( $expected, $msg->getParams() );
133 [
'foo', [
'bar' ],
'en' ],
134 [
'foo', [
'bar' ],
'de' ]
144 $language = Language::factory( $languageCode );
147 $this->assertEquals( $language, $message->getLanguage() );
154 'expected' => [
'mainpage' ],
157 'key' => [
'mainpage' ],
158 'expected' => [
'mainpage' ],
161 'key' => [
'mainpage-foo',
'mainpage-bar',
'mainpage' ],
162 'expected' => [
'mainpage-foo',
'mainpage-bar',
'mainpage' ],
167 'exception' =>
'InvalidArgumentException',
172 'exception' =>
'InvalidArgumentException',
177 'exception' =>
'InvalidArgumentException',
189 public function testKeys( $key, $expected, $exception =
null ) {
191 $this->setExpectedException( $exception );
195 $this->assertContains( $msg->getKey(), $expected );
196 $this->assertSame( $expected, $msg->getKeysToTry() );
197 $this->assertSame( count( $expected ) > 1, $msg->isMultiKey() );
204 $this->assertInstanceOf( Message::class,
wfMessage(
'mainpage' ) );
205 $this->assertInstanceOf( Message::class,
wfMessage(
'i-dont-exist-evar' ) );
212 $this->assertInstanceOf( Message::class, Message::newFromKey(
'mainpage' ) );
213 $this->assertInstanceOf( Message::class, Message::newFromKey(
'i-dont-exist-evar' ) );
221 $this->assertSame(
'Return to $1.',
wfMessage(
'returnto' )->
text() );
222 $this->assertSame(
'Return to $1.',
wfMessage(
'returnto', [] )->
text() );
229 wfMessage(
'returnto', [ Message::numParam( 1024 ) ] )->
text()
232 'You have foo (bar).',
236 'You have foo (bar).',
240 'You have 1,024 (bar).',
242 'youhavenewmessages',
243 Message::numParam( 1024 ),
'bar'
247 'You have foo (2,048).',
249 'youhavenewmessages',
250 'foo', Message::numParam( 2048 )
254 'You have 1,024 (2,048).',
256 'youhavenewmessages',
257 [ Message::numParam( 1024 ), Message::numParam( 2048 ) ]
266 $this->assertTrue(
wfMessage(
'mainpage' )->exists() );
267 $this->assertTrue(
wfMessage(
'mainpage' )->params( [] )->exists() );
268 $this->assertTrue(
wfMessage(
'mainpage' )->rawParams(
'foo', 123 )->exists() );
269 $this->assertFalse(
wfMessage(
'i-dont-exist-evar' )->exists() );
270 $this->assertFalse(
wfMessage(
'i-dont-exist-evar' )->params( [] )->exists() );
271 $this->assertFalse(
wfMessage(
'i-dont-exist-evar' )->rawParams(
'foo', 123 )->exists() );
282 $this->assertSame(
'Main Page',
wfMessage(
'mainpage' )->
text() );
283 $this->assertSame(
'⧼i-dont-exist-evar⧽',
wfMessage(
'i-dont-exist-evar' )->
text() );
284 $this->assertSame(
'⧼i<dont>exist-evar⧽',
wfMessage(
'i<dont>exist-evar' )->
text() );
285 $this->assertSame(
'⧼i-dont-exist-evar⧽',
wfMessage(
'i-dont-exist-evar' )->
plain() );
286 $this->assertSame(
'⧼i<dont>exist-evar⧽',
wfMessage(
'i<dont>exist-evar' )->
plain() );
287 $this->assertSame(
'⧼i-dont-exist-evar⧽',
wfMessage(
'i-dont-exist-evar' )->escaped() );
289 '⧼i<dont>exist-evar⧽',
290 wfMessage(
'i<dont>exist-evar' )->escaped()
297 [
'mainpage',
'plain',
'Main Page',
'Main Page' ],
298 [
'i-dont-exist-evar',
'plain',
'⧼i-dont-exist-evar⧽',
'⧼i-dont-exist-evar⧽' ],
299 [
'i-dont-exist-evar',
'escaped',
'⧼i-dont-exist-evar⧽',
'⧼i-dont-exist-evar⧽' ],
300 [
'script>alert(1)</script',
'escaped',
'⧼script>alert(1)</script⧽',
301 '⧼script>alert(1)</script⧽' ],
302 [
'script>alert(1)</script',
'plain',
'⧼script>alert(1)</script⧽',
303 '⧼script>alert(1)</script⧽' ],
312 public function testToString( $key, $format, $expect, $expectImplicit ) {
314 $this->assertSame( $expect, $msg->$format() );
315 $this->assertSame( $expect, $msg->toString(),
'toString is unaffected by previous call' );
316 $this->assertSame( $expectImplicit, $msg->__toString() );
317 $this->assertSame( $expect, $msg->toString(),
'toString is unaffected by __toString' );
322 [
'<span>foo</span>',
'parse',
'<span>foo</span>',
'<span>foo</span>' ],
323 [
'<span>foo</span>',
'escaped',
'<span>foo</span>',
324 '<span>foo</span>' ],
325 [
'<span>foo</span>',
'plain',
'<span>foo</span>',
'<span>foo</span>' ],
326 [
'<script>alert(1)</script>',
'parse',
'<script>alert(1)</script>',
327 '<script>alert(1)</script>' ],
328 [
'<script>alert(1)</script>',
'escaped',
'<script>alert(1)</script>',
329 '<script>alert(1)</script>' ],
330 [
'<script>alert(1)</script>',
'plain',
'<script>alert(1)</script>',
331 '<script>alert(1)</script>' ],
342 $msg = $this->getMockBuilder( Message::class )->setMethods( [
'fetchMessage' ] )
343 ->disableOriginalConstructor()
345 $msg->expects( $this->
any() )->method(
'fetchMessage' )->willReturn( $message );
347 $this->assertSame( $expect, $msg->$format() );
348 $this->assertSame( $expect, $msg->toString(),
'toString is unaffected by previous call' );
349 $this->assertSame( $expectImplicit, $msg->__toString() );
350 $this->assertSame( $expect, $msg->toString(),
'toString is unaffected by __toString' );
357 $this->assertSame(
'Main Page',
wfMessage(
'mainpage' )->inLanguage(
'en' )->
text() );
358 $this->assertSame(
'Заглавная страница',
363 $this->assertSame(
'Main Page', $msg->inLanguage( Language::factory(
'en' ) )->text() );
365 'Заглавная страница',
366 $msg->inLanguage( Language::factory(
'ru' ) )->text()
376 '(Заглавная страница)',
380 '(Заглавная страница $1)',
384 '(Заглавная страница)',
385 wfMessage(
'parentheses' )->rawParams(
'Заглавная страница' )->
plain()
388 '(Заглавная страница $1)',
389 wfMessage(
'parentheses' )->rawParams(
'Заглавная страница $1' )->
plain()
399 $this->assertSame(
'example &', $msg->plain() );
400 $this->assertSame(
'example &', $msg->escaped() );
413 $msg =
new RawMessage(
'<html><script>alert("xss")</script></html>' );
414 $txt =
'<span class="error"><html> tags cannot be' .
415 ' used outside of normal pages.</span>';
416 $this->assertSame( $txt, $msg->parse() );
425 $msg =
new RawMessage(
'$1$2$3$4$5$6$7$8$9$10$11$12' );
427 $params = [
'a',
'b',
'c',
'd',
'e',
'f',
'g',
'h',
'i',
'j',
'k' ];
430 $msg->params(
$params )->plain(),
431 'Params > 9 are replaced correctly'
435 $params = [
'ab',
'bc',
'cd' ];
437 'Params: ab, bc, cd',
438 $msg->params(
$params )->text()
447 $lang = Language::factory(
'en' );
451 $lang->formatNum( 123456.789 ),
452 $msg->inLanguage(
$lang )->numParams( 123456.789 )->plain(),
453 'numParams is handled correctly'
462 $lang = Language::factory(
'en' );
466 $lang->formatDuration( 1234 ),
467 $msg->inLanguage(
$lang )->durationParams( 1234 )->plain(),
468 'durationParams is handled correctly'
478 $lang = Language::factory(
'en' );
484 'expiryParams is handled correctly'
493 $lang = Language::factory(
'en' );
497 $lang->formatTimePeriod( 1234 ),
498 $msg->inLanguage(
$lang )->timeperiodParams( 1234 )->plain(),
499 'timeperiodParams is handled correctly'
508 $lang = Language::factory(
'en' );
512 $lang->formatSize( 123456 ),
513 $msg->inLanguage(
$lang )->sizeParams( 123456 )->plain(),
514 'sizeParams is handled correctly'
523 $lang = Language::factory(
'en' );
527 $lang->formatBitrate( 123456 ),
528 $msg->inLanguage(
$lang )->bitrateParams( 123456 )->plain(),
529 'bitrateParams is handled correctly'
536 'one $2 <div>foo</div> [[Bar]] {{Baz}} <',
542 'one $2 <div>foo</div> [[Bar]] {{Baz}} <',
547 'one $2 <div>foo</div> [[Bar]] {{Baz}} &lt;',
552 'one $2 <div>foo</div> [[Bar]] {{Baz}} &lt;',
557 "<p>one $2 <div>foo</div> [[Bar]] {{Baz}} &lt;\n</p>",
573 $lang = Language::factory(
'en' );
578 '<div>foo</div> [[Bar]] {{Baz}} <',
582 $msg->inLanguage(
$lang )->plaintextParams(
$params )->$format(),
583 "Fail formatting for $format"
588 $lang = Language::factory(
'de' );
593 'Simple comma list' => [
600 'Simple semicolon list' => [
607 'Simple pipe list' => [
614 'Simple text list' => [
628 'List with all "before" params, ->text()' => [
629 [
"''link''", Message::numParam( 12345678 ) ],
632 '\'\
'link\'\'; 12,345,678'
635 'List with all "before" params, ->parse()' => [
636 [
"''link''", Message::numParam( 12345678 ) ],
639 '<i>link</i>; 12,345,678'
642 'List with all "after" params, ->text()' => [
643 [ $msg1, $msg2, Message::rawParam(
'[[foo]]' ) ],
646 'Main Page; \'\'link\'\'; [[foo]]'
649 'List with all "after" params, ->parse()' => [
650 [ $msg1, $msg2, Message::rawParam(
'[[foo]]' ) ],
653 'Main Page; <i>link</i>; [[foo]]'
656 'List with both "before" and "after" params, ->text()' => [
657 [ $msg1, $msg2, Message::rawParam(
'[[foo]]' ),
"''link''", Message::numParam( 12345678 ) ],
660 'Main Page; \'\'link\'\'; [[foo]]; \'\'link\'\'; 12,345,678'
663 'List with both "before" and "after" params, ->parse()' => [
664 [ $msg1, $msg2, Message::rawParam(
'[[foo]]' ),
"''link''", Message::numParam( 12345678 ) ],
667 'Main Page; <i>link</i>; [[foo]]; <i>link</i>; 12,345,678'
679 $lang = Language::factory(
'en' );
682 $msg->params( [ Message::listParam( $list,
$type ) ] );
685 $msg->inLanguage(
$lang )->$format()
694 'wgScript' =>
'/wiki/index.php',
695 'wgArticlePath' =>
'/wiki/$1',
698 $msg =
new Message(
'returnto', [
700 'foo',
new Message(
'mainpage', [], Language::factory(
'en' ) )
701 ], Language::factory(
'de' ) )
702 ], Language::factory(
'es' ) );
705 'Volver a [[Special:ApiHelp/foo|Página principal]].',
707 'Process with ->text()'
710 '<p>Volver a <a href="/wiki/Special:ApiHelp/foo" title="Special:ApiHelp/foo">Página '
711 .
"principal</a>.\n</p>",
712 $msg->parseAsBlock(),
713 'Process with ->parseAsBlock()'
720 "''&'' <x><!-- x -->",
725 "''&'' <x><!-- x -->",
729 '<i>&</i> <x>',
734 "<p><i>&</i> <x>\n</p>",
750 $msg =
new RawMessage(
"''&'' <x><!-- x -->" );
753 $msg->inLanguage(
'en' )->$format()
765 $this->assertSame(
'Hauptseite', $msg->inLanguage(
'de' )->plain(),
"inLanguage( 'de' )" );
766 $this->assertSame(
'Main Page', $msg->inContentLanguage()->plain(),
"inContentLanguage()" );
767 $this->assertSame(
'Accueil', $msg->inLanguage(
'fr' )->plain(),
"inLanguage( 'fr' )" );
775 'wgForceUIMsgAsContentMsg' => [
'mainpage' ],
784 $msg->inContentLanguage()->plain(),
785 'inContentLanguage() with ForceUIMsg override enabled'
787 $this->assertSame(
'Main Page', $msg->inLanguage(
'en' )->plain(),
"inLanguage( 'en' )" );
790 $msg->inContentLanguage()->plain(),
791 'inContentLanguage() with ForceUIMsg override enabled'
793 $this->assertSame(
'Hauptseite', $msg->inLanguage(
'de' )->plain(),
"inLanguage( 'de' )" );
809 $msg =
new Message(
'parentheses' );
810 $msg->rawParams(
'<a>foo</a>' );
811 $msg->title( Title::newFromText(
'Testing' ) );
812 $this->assertSame(
'(<a>foo</a>)', $msg->parse(),
'Sanity check' );
814 $this->assertSame(
'(<a>foo</a>)', $msg->parse() );
815 $title = TestingAccessWrapper::newFromObject( $msg )->title;
816 $this->assertInstanceOf( Title::class, $title );
817 $this->assertSame(
'Testing', $title->getFullText() );
819 $msg =
new Message(
'mainpage' );
820 $msg->inLanguage(
'de' );
821 $this->assertSame(
'Hauptseite', $msg->plain(),
'Sanity check' );
823 $this->assertSame(
'Hauptseite', $msg->plain() );
831 $message = Message::newFromSpecifier(
$value );
832 $this->assertInstanceOf( Message::class, $message );
834 $this->assertInstanceOf( get_class(
$value ), $message );
835 $this->assertEquals(
$value, $message );
837 $this->assertSame( $expectedText, $message->text() );
841 $messageSpecifier = $this->getMockForAbstractClass( MessageSpecifier::class );
842 $messageSpecifier->expects( $this->
any() )->method(
'getKey' )->willReturn(
'mainpage' );
843 $messageSpecifier->expects( $this->
any() )->method(
'getParams' )->willReturn( [] );
846 'string' => [
'mainpage',
'Main Page' ],
847 'array' => [ [
'youhavenewmessages',
'foo',
'bar' ],
'You have foo (bar).' ],
848 'Message' => [
new Message(
'youhavenewmessages', [
'foo',
'bar' ] ),
'You have foo (bar).' ],
849 'RawMessage' => [
new RawMessage(
'foo ($1)', [
'bar' ] ),
'foo (bar)' ],
850 'ApiMessage' => [
new ApiMessage( [
'mainpage' ],
'code', [
'data' ] ),
'Main Page' ],
851 'MessageSpecifier' => [ $messageSpecifier,
'Main Page' ],
852 'nested RawMessage' => [ [
new RawMessage(
'foo ($1)', [
'bar' ] ) ],
'foo (bar)' ],
unserialize( $serialized)
they could even be mouse clicks or menu items whatever suits your program You should also get your if any
$wgParserConf
Parser configuration.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
Extension of Message implementing IApiMessage.
static destroyInstance()
Destroy the singleton instance.
testExpiryParams()
FIXME: This should not need database, but Language::formatExpiry does (T57912) Message::expiryParam M...
testConstructorParams( $expected, $args)
Message::__construct Message::getParams provideConstructorParams.
static provideToString_raw()
static provideConstructorParams()
testParser( $expect, $format)
Message::text Message::parse Message::parseAsBlock Message::toString Message::transformText Message::...
testToString( $key, $format, $expect, $expectImplicit)
Message::toString Message::__toString provideToString.
testToString_raw( $message, $format, $expect, $expectImplicit)
Message::toString Message::__toString provideToString_raw.
testInLanguageThrows()
MWException Message::inLanguage.
static provideListParam()
testInLanguage()
Message::inLanguage.
testInContentLanguage()
Message::inContentLanguage.
static provideConstructorLanguage()
testSizeParams()
Message::sizeParam Message::sizeParams.
testRawParams()
Message::rawParam Message::rawParams.
testDurationParams()
Message::durationParam Message::durationParams.
testNumParams()
Message::numParam Message::numParams.
testNewFromSpecifier( $value, $expectedText)
Message::newFromSpecifier provideNewFromSpecifier.
testReplaceManyParams()
Message::params Message::toString Message::replaceParameters.
testExists()
Message::exists.
static provideConstructor()
testWfMessageParams()
wfMessage Message::__construct
testListParam( $list, $type, $format, $expect)
Message::listParam Message::extractParam Message::formatListParam provideListParam.
testTimeperiodParams()
Message::timeperiodParam Message::timeperiodParams.
testBitrateParams()
Message::bitrateParam Message::bitrateParams.
testConstructorLanguage( $key, $params, $languageCode)
Message::__construct Message::getLanguage provideConstructorLanguage.
provideNewFromSpecifier()
testKeys( $key, $expected, $exception=null)
Message::__construct Message::getKey Message::isMultiKey Message::getKeysToTry provideKeys.
testConstructor( $expectedLang, $key, $params, $language)
Message::__construct provideConstructor.
testNewFromKey()
Message::newFromKey.
testPlaintextParams( $expect, $format)
Message::plaintextParam Message::plaintextParams Message::formatPlaintext Message::toString Message::...
testInContentLanguageOverride()
Message::inContentLanguage.
static providePlaintextParams()
testToStringKey()
Message::__construct Message::text Message::plain Message::escaped Message::toString.
testSerialization()
Message::serialize Message::unserialize.
testRawMessage()
RawMessage::__construct RawMessage::fetchMessage.
testMessageAsParam()
Message::extractParam.
The Message class provides methods which fulfil two basic services:
Variant of the Message class.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
if(!isset( $args[0])) $lang