Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14399781
PhutilSystemTestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1012 B
Referenced Files
None
Subscribers
None
PhutilSystemTestCase.php
View Options
<?php
final
class
PhutilSystemTestCase
extends
PhutilTestCase
{
public
function
testParseVMStat
()
{
$tests
=
array
(
'vmstat.yosemite.txt'
=>
array
(
'total'
=>
16503578624
,
'free'
=>
1732366336
,
),
);
$dir
=
dirname
(
__FILE__
).
'/memory'
;
foreach
(
$tests
as
$input
=>
$expect
)
{
$raw
=
Filesystem
::
readFile
(
$dir
.
'/'
.
$input
);
$actual
=
PhutilSystem
::
parseVMStat
(
$raw
);
$this
->
assertEqual
(
$expect
,
$actual
,
pht
(
'Parse of "%s".'
,
$input
));
}
}
public
function
testParseMeminfo
()
{
$tests
=
array
(
'meminfo.ubuntu14.txt'
=>
array
(
'total'
=>
7843336192
,
'free'
=>
3758297088
,
),
);
$dir
=
dirname
(
__FILE__
).
'/memory'
;
foreach
(
$tests
as
$input
=>
$expect
)
{
$raw
=
Filesystem
::
readFile
(
$dir
.
'/'
.
$input
);
$actual
=
PhutilSystem
::
parseMemInfo
(
$raw
);
$this
->
assertEqual
(
$expect
,
$actual
,
pht
(
'Parse of "%s".'
,
$input
));
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Dec 24, 5:46 PM (1 d, 17 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6901435
Default Alt Text
PhutilSystemTestCase.php (1012 B)
Attached To
Mode
rPHU libphutil
Attached
Detach File
Event Timeline
Log In to Comment