3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
21 namespace MediaWiki\Logger
;
23 use MediaWikiTestCase
;
26 class LegacyLoggerTest
extends MediaWikiTestCase
{
29 * @covers MediaWiki\Logger\LegacyLogger::interpolate
30 * @dataProvider provideInterpolate
32 public function testInterpolate( $message, $context, $expect ) {
34 $expect, LegacyLogger
::interpolate( $message, $context ) );
37 public function provideInterpolate() {
38 $e = new \
Exception( 'boom!' );
56 'greeting' => 'Goodnight',
67 '{ not interpolated }',
69 'not interpolated' => 'This should NOT show up in the message',
71 '{ not interpolated }',
97 'array' => [ 1, 2, 3 ],
106 '[Exception ' . get_class( $e ) . '( ' .
107 $e->getFile() . ':' . $e->getLine() . ') ' .
108 $e->getMessage() . ']',
120 'object' => new \stdClass
,
128 * @covers MediaWiki\Logger\LegacyLogger::shouldEmit
129 * @dataProvider provideShouldEmit
131 public function testShouldEmit( $level, $config, $expected ) {
132 $this->setMwGlobals( 'wgDebugLogGroups', [ 'fakechannel' => $config ] );
135 LegacyLogger
::shouldEmit( 'fakechannel', 'some message', $level, [] )
139 public static function provideShouldEmit() {
140 $dest = [ 'destination' => 'foobar' ];
149 $dest +
[ 'level' => LogLevel
::INFO
],
154 $dest +
[ 'level' => LogLevel
::CRITICAL
],
159 if ( class_exists( '\Monolog\Logger' ) ) {
161 \Monolog\Logger
::INFO
,
162 $dest +
[ 'level' => LogLevel
::INFO
],
166 \Monolog\Logger
::WARNING
,
167 $dest +
[ 'level' => LogLevel
::EMERGENCY
],