Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105978590
PhabricatorEdgeTestCase.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
Fri, Mar 21, 06:11
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Mar 23, 06:11 (2 d)
Engine
blob
Format
Raw Data
Handle
25089602
Attached To
rPH Phabricator
PhabricatorEdgeTestCase.php
View Options
<?php
final
class
PhabricatorEdgeTestCase
extends
PhabricatorTestCase
{
protected
function
getPhabricatorTestCaseConfiguration
()
{
return
array
(
self
::
PHABRICATOR_TESTCONFIG_BUILD_STORAGE_FIXTURES
=>
true
,
);
}
public
function
testCycleDetection
()
{
// The editor should detect that this introduces a cycle and prevent the
// edit.
$user
=
new
PhabricatorUser
();
$obj1
=
id
(
new
HarbormasterObject
())->
save
();
$obj2
=
id
(
new
HarbormasterObject
())->
save
();
$phid1
=
$obj1
->
getPHID
();
$phid2
=
$obj2
->
getPHID
();
$editor
=
id
(
new
PhabricatorEdgeEditor
())
->
addEdge
(
$phid1
,
PhabricatorTestNoCycleEdgeType
::
EDGECONST
,
$phid2
)
->
addEdge
(
$phid2
,
PhabricatorTestNoCycleEdgeType
::
EDGECONST
,
$phid1
);
$caught
=
null
;
try
{
$editor
->
save
();
}
catch
(
Exception
$ex
)
{
$caught
=
$ex
;
}
$this
->
assertTrue
(
$caught
instanceof
Exception
);
// The first edit should go through (no cycle), bu the second one should
// fail (it introduces a cycle).
$editor
=
id
(
new
PhabricatorEdgeEditor
())
->
addEdge
(
$phid1
,
PhabricatorTestNoCycleEdgeType
::
EDGECONST
,
$phid2
)
->
save
();
$editor
=
id
(
new
PhabricatorEdgeEditor
())
->
addEdge
(
$phid2
,
PhabricatorTestNoCycleEdgeType
::
EDGECONST
,
$phid1
);
$caught
=
null
;
try
{
$editor
->
save
();
}
catch
(
Exception
$ex
)
{
$caught
=
$ex
;
}
$this
->
assertTrue
(
$caught
instanceof
Exception
);
}
}
Event Timeline
Log In to Comment