1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
<?php
namespace MediaWiki\Tests\Message;
use MediaWiki\Message\Message;
use MediaWiki\Message\TextFormatter;
use MediaWiki\Message\UserGroupMembershipParam;
use MediaWiki\User\UserIdentityValue;
use MediaWikiIntegrationTestCase;
use Wikimedia\Message\MessageValue;
use Wikimedia\Message\ParamType;
use Wikimedia\Message\ScalarParam;
/**
* @covers \MediaWiki\Message\TextFormatter
* @covers \Wikimedia\Message\MessageValue
* @covers \Wikimedia\Message\ListParam
* @covers \Wikimedia\Message\ScalarParam
* @covers \Wikimedia\Message\MessageParam
*/
class TextFormatterTest extends MediaWikiIntegrationTestCase {
private function createTextFormatter( $langCode,
$includeWikitext = false,
$format = Message::FORMAT_TEXT
) {
$formatter = $this->getMockBuilder( TextFormatter::class )
->onlyMethods( [ 'createMessage' ] )
->setConstructorArgs( [ $langCode, $format ] )
->getMock();
$formatter->method( 'createMessage' )
->willReturnCallback( function ( $spec ) use ( $includeWikitext ) {
$message = $this->getMockBuilder( Message::class )
->setConstructorArgs( [ $spec ] )
->onlyMethods( [ 'fetchMessage' ] )
->getMock();
$message->method( 'fetchMessage' )
->willReturnCallback( static function () use ( $message, $includeWikitext ) {
/** @var Message $message */
$result = "{$message->getKey()} $1 $2";
if ( $includeWikitext ) {
$result .= " {{SITENAME}}";
}
return $result;
} );
return $message;
} );
return $formatter;
}
public function testGetLangCode() {
$formatter = new TextFormatter( 'fr' );
$this->assertSame( 'fr', $formatter->getLangCode() );
}
public function testFormatBitrate() {
$formatter = $this->createTextFormatter( 'en' );
$mv = ( new MessageValue( 'test' ) )->bitrateParams( 100, 200 );
$result = $formatter->format( $mv );
$this->assertSame( 'test 100 bps 200 bps', $result );
}
public function testFormatShortDuration() {
$formatter = $this->createTextFormatter( 'en' );
$mv = ( new MessageValue( 'test' ) )->shortDurationParams( 100, 200 );
$result = $formatter->format( $mv );
$this->assertSame( 'test 1 min 40 s 3 min 20 s', $result );
}
public function testFormatList() {
$formatter = $this->createTextFormatter( 'en' );
$mv = ( new MessageValue( 'test' ) )->commaListParams( [
'a',
new ScalarParam( ParamType::BITRATE, 100 ),
] );
$result = $formatter->format( $mv );
$this->assertSame( 'test a, 100 bps $2', $result );
}
public static function provideTestFormatMessage() {
yield [ ( new MessageValue( 'test' ) )
->params( new MessageValue( 'test2', [ 'a', 'b' ] ) )
->commaListParams( [
'x',
new ScalarParam( ParamType::BITRATE, 100 ),
new MessageValue( 'test3', [ 'c', new MessageValue( 'test4', [ 'd', 'e' ] ) ] )
] ),
'test (test2: a, b) x(comma-separator)(bitrate-bits)(comma-separator)(test3: c, (test4: d, e))'
];
yield [ ( new MessageValue( 'test' ) )
->userGroupParams( 'bot' ),
'test (group-bot) $2'
];
// Deprecated, silence deprecation warnings
@yield [ ( new MessageValue( 'test' ) )
->objectParams(
new UserGroupMembershipParam( 'bot', new UserIdentityValue( 1, 'user' ) )
),
'test (group-bot-member: user) $2'
];
}
/**
* @dataProvider provideTestFormatMessage
*/
public function testFormatMessage( $message, $expected ) {
$formatter = $this->createTextFormatter( 'qqx' );
$result = $formatter->format( $message );
$this->assertSame( $expected, $result );
}
public function testFormatMessageFormatsWikitext() {
global $wgSitename;
$formatter = $this->createTextFormatter( 'en', true );
$mv = MessageValue::new( 'test' )
->plaintextParams( '1', '2' );
$this->assertSame( "test 1 2 $wgSitename", $formatter->format( $mv ) );
}
public function testFormatMessageNotWikitext() {
$formatter = $this->createTextFormatter( 'en', true, Message::FORMAT_PLAIN );
$mv = MessageValue::new( 'test' )
->plaintextParams( '1', '2' );
$this->assertSame( "test 1 2 {{SITENAME}}", $formatter->format( $mv ) );
}
}
|