Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/Echo/tests/phpunit/EchoHooksTest.php
Ðазад
<?php namespace MediaWiki\Extension\Notifications\Test; use MediaWiki\Extension\Notifications\Hooks as EchoHooks; use MediaWiki\Extension\Notifications\Services; use MediaWiki\MainConfigNames; use MediaWikiIntegrationTestCase; class EchoHooksTest extends MediaWikiIntegrationTestCase { /** * @covers \MediaWiki\Extension\Notifications\Hooks::onUserGetDefaultOptions() */ public function testOnUserGetDefaultOptions() { $this->overrideConfigValues( [ 'EchoNotificationCategories' => [ 'emailuser' => [ 'priority' => 9, 'tooltip' => 'echo-pref-tooltip-emailuser', ], 'mention' => [ 'priority' => 4, 'tooltip' => 'echo-pref-tooltip-mention', ], 'system' => [ 'priority' => 9, 'no-dismiss' => [ 'all' ], ], 'some-custom-category' => [ 'priority' => 9001, ], ], MainConfigNames::AllowHTMLEmail => true, ] ); $defaults = [ 'something' => 'unrelated', // T174220: don't overwrite defaults set elsewhere 'echo-subscriptions-web-mention' => false, ]; $hooks = $this->getHooks(); $hooks->onUserGetDefaultOptions( $defaults ); self::assertEquals( [ 'something' => 'unrelated', 'echo-email-format' => 'html', 'echo-subscriptions-email-mention' => false, 'echo-subscriptions-web-mention' => false, 'echo-subscriptions-email-emailuser' => false, 'echo-subscriptions-web-emailuser' => true, 'echo-subscriptions-email-system' => true, 'echo-subscriptions-web-system' => true, 'echo-subscriptions-email-some-custom-category' => false, 'echo-subscriptions-web-some-custom-category' => true, ], $defaults ); } public function getHooks() { $services = $this->getServiceContainer(); $hooks = new EchoHooks( $services->getAuthManager(), $services->getCentralIdLookup(), $services->getMainConfig(), Services::wrap( $services )->getAttributeManager(), $services->getHookContainer(), $services->getContentLanguage(), $services->getLinkRenderer(), $services->getNamespaceInfo(), $services->getPermissionManager(), $services->getRevisionStore(), $services->getStatsFactory(), $services->getTalkPageNotificationManager(), $services->getUserEditTracker(), $services->getUserFactory(), $services->getUserOptionsManager(), ); return $hooks; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка