Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/tests/phpunit/unit/includes/HookContainer/DeprecatedHooksTest.php
Ðазад
<?php namespace MediaWiki\Tests\HookContainer; use MediaWiki\HookContainer\DeprecatedHooks; use MediaWikiUnitTestCase; use Wikimedia\TestingAccessWrapper; class DeprecatedHooksTest extends MediaWikiUnitTestCase { /** * @covers \MediaWiki\HookContainer\DeprecatedHooks::__construct * @covers \MediaWiki\HookContainer\DeprecatedHooks::isHookDeprecated */ public function testIsHookDeprecated() { $extDeprecatedHooks = [ 'FooBaz' => [ 'deprecatedVersion' => '1.35', 'component' => 'ComponentFooBaz' ] ]; $deprecatedHooks = new DeprecatedHooks( $extDeprecatedHooks ); $this->assertTrue( $deprecatedHooks->isHookDeprecated( 'FooBaz' ) ); $this->assertFalse( $deprecatedHooks->isHookDeprecated( 'FooBazBar' ) ); } /** * @covers \MediaWiki\HookContainer\DeprecatedHooks::markDeprecated */ public function testMarkDeprecatedException() { $extDeprecatedHooks = [ 'FooBaz' => [ 'deprecatedVersion' => '1.35', 'component' => 'ComponentFooBaz' ] ]; $deprecatedHooks = new DeprecatedHooks( $extDeprecatedHooks ); $this->expectExceptionMessage( "Cannot mark hook 'FooBaz' deprecated with version 1.31. " . "It is already marked deprecated with version 1.35" ); $deprecatedHooks->markDeprecated( 'FooBaz', '1.31' ); } /** * @covers \MediaWiki\HookContainer\DeprecatedHooks::markDeprecated */ public function testMarkDeprecated() { $deprecatedHooks = new DeprecatedHooks(); $deprecatedHooks->markDeprecated( 'FooBaz', '1.31', 'ComponentFooBaz' ); $allDeprecated = $deprecatedHooks->getDeprecationInfo(); $this->assertArrayHasKey( 'FooBaz', $allDeprecated ); $this->assertEquals( [ 'deprecatedVersion' => '1.31', 'component' => 'ComponentFooBaz', 'silent' => false ], $allDeprecated['FooBaz'] ); } /** * @covers \MediaWiki\HookContainer\DeprecatedHooks::getDeprecationInfo */ public function testGetDeprecationInfo() { $extDeprecatedHooks = [ 'FooBar' => [ 'deprecatedVersion' => '1.21', 'component' => 'ComponentFooBar' ], 'FooBarBaz' => [ 'deprecatedVersion' => '1.21' ], 'SoftlyDeprecated' => [ 'deprecatedVersion' => '1.21', 'component' => 'ComponentFooBar', 'silent' => true ] ]; $deprecatedHooksWrapper = TestingAccessWrapper::newFromObject( new DeprecatedHooks() ); $preRegisteredDeprecated = $deprecatedHooksWrapper->deprecatedHooks; $deprecatedHooks = new DeprecatedHooks( $extDeprecatedHooks ); $hookDeprecationInfo = $deprecatedHooks->getDeprecationInfo( 'FooBar' ); $this->assertNull( $deprecatedHooks->getDeprecationInfo( 'FooBazBaz' ) ); $this->assertEquals( [ 'deprecatedVersion' => '1.21', 'component' => 'ComponentFooBar', 'silent' => false, ], $hookDeprecationInfo ); $this->assertEquals( [ 'deprecatedVersion' => '1.21', 'component' => 'ComponentFooBar', 'silent' => true, ], $deprecatedHooks->getDeprecationInfo( 'SoftlyDeprecated' ) ); $this->assertCount( count( $preRegisteredDeprecated ) + count( $extDeprecatedHooks ), $deprecatedHooks->getDeprecationInfo() ); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка