���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/rickpfrv/wiki.craftaro.com/tests/phpunit/integration/includes/Permissions/GrantsLocalizationTest.php
���ѧ٧ѧ�
<?php namespace MediaWiki\Tests\Integration\Permissions; use MediaWiki\Permissions\GrantsLocalization; use MediaWikiIntegrationTestCase; use Message; use SpecialPage; /** * @author Zabe * * @coversDefaultClass \MediaWiki\Permissions\GrantsLocalization */ class GrantsLocalizationTest extends MediaWikiIntegrationTestCase { /** @var GrantsLocalization */ private $grantsLocalization; protected function setUp(): void { parent::setUp(); $this->grantsLocalization = $this->getServiceContainer()->getGrantsLocalization(); } /** * @covers ::getGrantDescription * @dataProvider grantDescriptions */ public function testGetGrantDescription( string $grant ) { $message = new Message( 'grant-' . $grant ); $this->assertSame( $message->text(), $this->grantsLocalization->getGrantDescription( $grant ) ); $this->assertSame( $message->inLanguage( 'de' )->text(), $this->grantsLocalization->getGrantDescription( $grant, 'de' ) ); } public function grantDescriptions() { yield [ 'blockusers' ]; yield [ 'createeditmovepage' ]; yield [ 'delete' ]; } /** * @covers ::getGrantDescription */ public function testGetNonExistingGrantDescription() { $message = ( new Message( 'grant-generic' ) )->params( 'foo' ); $this->assertSame( $message->text(), $this->grantsLocalization->getGrantDescription( 'foo' ) ); $this->assertSame( $message->inLanguage( 'zh' )->text(), $this->grantsLocalization->getGrantDescription( 'foo', 'zh' ) ); } /** * @covers ::getGrantDescriptions */ public function testGetGrantDescriptions() { $this->assertSame( [ ( new Message( 'grant-blockusers' ) )->inLanguage( 'de' )->text(), ( new Message( 'grant-delete' ) )->inLanguage( 'de' )->text() ], $this->grantsLocalization->getGrantDescriptions( [ 'blockusers', 'delete' ], 'de' ) ); } /** * @covers ::getGrantsLink */ public function testGetGrantsLink() { $this->assertSame( $this->getServiceContainer()->getLinkRenderer()->makeKnownLink( SpecialPage::getTitleFor( 'Listgrants', false, 'delete' ), ( new Message( 'grant-delete' ) )->text() ), $this->grantsLocalization->getGrantsLink( 'delete' ) ); } /** * @covers ::getGrantsWikiText */ public function testGetGrantsWikiText() { $this->assertSame( "*<span class=\"mw-grantgroup\">Perform high volume activity</span>\n:High-volume editing\n\n", $this->grantsLocalization->getGrantsWikiText( [ 'highvolume' ] ) ); } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0.1 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�