Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108053034
PhutilInfrastructureTestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Apr 13, 16:43
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Apr 15, 16:43 (2 d)
Engine
blob
Format
Raw Data
Handle
25517081
Attached To
rPHU libphutil
PhutilInfrastructureTestCase.php
View Options
<?php
final
class
PhutilInfrastructureTestCase
extends
PhutilTestCase
{
/**
* This is more of an acceptance test case instead of a unit test. It verifies
* that all symbols can be loaded correctly. It can catch problems like
* missing methods in descendants of abstract base classes.
*/
public
function
testEverythingImplemented
()
{
id
(
new
PhutilSymbolLoader
())->
selectAndLoadSymbols
();
$this
->
assertTrue
(
true
);
}
/**
* This is more of an acceptance test case instead of a unit test. It verifies
* that all the library map is up-to-date.
*/
public
function
testLibraryMap
()
{
$root
=
phutil_get_library_root
(
'phutil'
);
$new_library_map
=
id
(
new
PhutilLibraryMapBuilder
(
$root
))
->
setQuiet
(
true
)
->
setDryRun
(
true
)
->
buildMap
();
$bootloader
=
PhutilBootloader
::
getInstance
();
$old_library_map
=
$bootloader
->
getLibraryMap
(
'phutil'
);
unset
(
$old_library_map
[
PhutilLibraryMapBuilder
::
LIBRARY_MAP_VERSION_KEY
]);
$this
->
assertEqual
(
$new_library_map
,
$old_library_map
,
'The library map does not appear to be up-to-date. Try '
.
'rebuilding the map with `arc liberate`.'
);
}
}
Event Timeline
Log In to Comment