Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4142029
DumpableObjectsTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
DumpableObjectsTest.php
View Options
<?php
use
MediaWiki\Title\Title
;
use
MediaWiki\User\User
;
/**
* Integration test for T277618.
*
* Add @noVarDump annotations to large properties if these tests fail.
*
* @group Database
* @coversNothing
*/
class
DumpableObjectsTest
extends
MediaWikiIntegrationTestCase
{
private
function
dumpSize
(
$object
)
{
$n
=
0
;
ob_start
(
static
function
(
$buffer
)
use
(
&
$n
)
{
$n
+=
strlen
(
$buffer
);
},
4096
);
var_dump
(
$object
);
ob_end_flush
();
return
$n
;
}
public
function
testUser
()
{
$u
=
new
User
();
$u
->
isAllowed
(
'read'
);
$this
->
assertLessThan
(
100000
,
$this
->
dumpSize
(
$u
)
);
}
public
function
testTitle
()
{
$object
=
Title
::
makeTitle
(
NS_MAIN
,
'Test'
);
$this
->
assertLessThan
(
100000
,
$this
->
dumpSize
(
$object
)
);
}
public
function
testLanguage
()
{
$object
=
\MediaWiki\MediaWikiServices
::
getInstance
()->
getLanguageFactory
()->
getLanguage
(
'en'
);
$this
->
assertLessThan
(
100000
,
$this
->
dumpSize
(
$object
)
);
}
public
function
testMessage
()
{
$object
=
wfMessage
(
'jan'
);
$this
->
assertLessThan
(
100000
,
$this
->
dumpSize
(
$object
)
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 16:11 (4 w, 1 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
11/95/13915b61654402eb4ed083290eac
Default Alt Text
DumpableObjectsTest.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment