Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116735363
DiffusionCommitRemarkupRuleTestCase.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, Jun 8, 21:17
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jun 10, 21:17 (2 d)
Engine
blob
Format
Raw Data
Handle
26502979
Attached To
rPH Phabricator
DiffusionCommitRemarkupRuleTestCase.php
View Options
<?php
final
class
DiffusionCommitRemarkupRuleTestCase
extends
PhabricatorTestCase
{
public
function
testProjectObjectRemarkup
()
{
$cases
=
array
(
'{rP12f3f6d3a9ef9c7731051815846810cb3c4cd248}'
=>
array
(
'embed'
=>
array
(
array
(
'offset'
=>
1
,
'id'
=>
'rP12f3f6d3a9ef9c7731051815846810cb3c4cd248'
,
),
),
'ref'
=>
array
(
array
(
'offset'
=>
1
,
'id'
=>
'rP12f3f6d3a9ef9c7731051815846810cb3c4cd248'
,
),
),
),
'{rP1234, key=value}'
=>
array
(
'embed'
=>
array
(
array
(
'offset'
=>
1
,
'id'
=>
'rP1234'
,
'tail'
=>
', key=value'
,
),
),
'ref'
=>
array
(
array
(
'offset'
=>
1
,
'id'
=>
'rP1234'
,
),
),
),
'{rP1234 key=value}'
=>
array
(
'embed'
=>
array
(
array
(
'offset'
=>
1
,
'id'
=>
'rP1234'
,
'tail'
=>
' key=value'
,
),
),
'ref'
=>
array
(
array
(
'offset'
=>
1
,
'id'
=>
'rP1234'
,
),
),
),
);
foreach
(
$cases
as
$input
=>
$expect
)
{
$rule
=
new
DiffusionCommitRemarkupRule
();
$matches
=
$rule
->
extractReferences
(
$input
);
$this
->
assertEqual
(
$expect
,
$matches
,
$input
);
}
}
}
Event Timeline
Log In to Comment