Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/tests/phpunit/includes/debug/logger/LegacyLoggerTest.php
Ðазад
<?php /** * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * * @file */ namespace MediaWiki\Tests\Logger; use MediaWiki\Logger\LegacyLogger; use MediaWiki\MainConfigNames; use MediaWikiIntegrationTestCase; use Psr\Log\LogLevel; class LegacyLoggerTest extends MediaWikiIntegrationTestCase { /** * @covers \MediaWiki\Logger\LegacyLogger::interpolate * @dataProvider provideInterpolate */ public function testInterpolate( $message, $context, $expect ) { $this->assertEquals( $expect, LegacyLogger::interpolate( $message, $context ) ); } public static function provideInterpolate() { $e = new \Exception( 'boom!' ); $d = new \DateTime(); $err = new \Error( 'Test error' ); return [ [ 'no-op', [], 'no-op', ], [ 'Hello {world}!', [ 'world' => 'World', ], 'Hello World!', ], [ '{greeting} {user}', [ 'greeting' => 'Goodnight', 'user' => 'Moon', ], 'Goodnight Moon', ], [ 'Oops {key_not_set}', [], 'Oops {key_not_set}', ], [ '{ not interpolated }', [ 'not interpolated' => 'This should NOT show up in the message', ], '{ not interpolated }', ], [ '{null}', [ 'null' => null, ], '[Null]', ], [ '{bool}', [ 'bool' => true, ], 'true', ], [ '{float}', [ 'float' => 1.23, ], '1.23', ], [ '{array}', [ 'array' => [ 1, 2, 3 ], ], '[Array(3)]', ], [ '{exception}', [ 'exception' => $e, ], '[Exception ' . get_class( $e ) . '( ' . $e->getFile() . ':' . $e->getLine() . ') ' . $e->getMessage() . ']', ], [ '{datetime}', [ 'datetime' => $d, ], $d->format( 'c' ), ], [ '{object}', [ 'object' => new \stdClass, ], '[Object stdClass]', ], [ '{exception}', [ 'exception' => $err, ], '[Error ' . get_class( $err ) . '( ' . $err->getFile() . ':' . $err->getLine() . ') ' . $err->getMessage() . ']', ], ]; } /** * @covers \MediaWiki\Logger\LegacyLogger::shouldEmit * @dataProvider provideShouldEmit */ public function testShouldEmit( $level, $config, $expected ) { $this->overrideConfigValue( MainConfigNames::DebugLogGroups, [ 'fakechannel' => $config ] ); $this->assertEquals( $expected, LegacyLogger::shouldEmit( 'fakechannel', 'some message', $level, [] ) ); } public static function provideShouldEmit() { $dest = [ 'destination' => 'foobar' ]; $tests = [ [ LogLevel::DEBUG, $dest, true ], [ LogLevel::WARNING, $dest + [ 'level' => LogLevel::INFO ], true, ], [ LogLevel::INFO, $dest + [ 'level' => LogLevel::CRITICAL ], false, ], [ \Monolog\Logger::INFO, $dest + [ 'level' => LogLevel::INFO ], true, ], [ \Monolog\Logger::WARNING, $dest + [ 'level' => LogLevel::EMERGENCY ], false, ] ]; return $tests; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка