Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F8898249
PhabricatorCelerityTestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
PhabricatorCelerityTestCase.php
View Options
<?php
final
class
PhabricatorCelerityTestCase
extends
PhabricatorTestCase
{
/**
* This is more of an acceptance test case instead of a unit test. It verifies
* that the Celerity map is up-to-date.
*/
public
function
testCelerityMaps
()
{
$resources_map
=
CelerityPhysicalResources
::
getAll
();
foreach
(
$resources_map
as
$resources
)
{
$old_map
=
new
CelerityResourceMap
(
$resources
);
$new_map
=
id
(
new
CelerityResourceMapGenerator
(
$resources
))
->
generate
();
// Don't actually compare these values with assertEqual(), since the diff
// isn't helpful and is often enormously huge.
$maps_are_identical
=
(
$new_map
->
getNameMap
()
===
$old_map
->
getNameMap
())
&&
(
$new_map
->
getSymbolMap
()
===
$old_map
->
getSymbolMap
())
&&
(
$new_map
->
getRequiresMap
()
===
$old_map
->
getRequiresMap
())
&&
(
$new_map
->
getPackageMap
()
===
$old_map
->
getPackageMap
());
$this
->
assertTrue
(
$maps_are_identical
,
pht
(
'When this test fails, it means the Celerity resource map is out '
.
'of date. Run `%s` to rebuild it.'
,
'bin/celerity map'
));
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jun 11, 7:00 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
3392913
Default Alt Text
PhabricatorCelerityTestCase.php (1 KB)
Attached To
rP Phabricator
Event Timeline
Log In to Comment