Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4141742
LegacyLoggerTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
LegacyLoggerTest.php
View Options
<?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
;
/**
* @covers \MediaWiki\Logger\LegacyLogger
*/
class
LegacyLoggerTest
extends
MediaWikiIntegrationTestCase
{
/**
* @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
()
.
']'
,
],
];
}
/**
* @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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 16:04 (4 w, 19 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ec/16/1f4ff971b7d502109fca7d6dd5bf
Default Alt Text
LegacyLoggerTest.php (3 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment