Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102080705
DifferentialCommitMessageFieldTestCase.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, Feb 16, 22:11
Size
842 B
Mime Type
text/x-php
Expires
Tue, Feb 18, 22:11 (2 d)
Engine
blob
Format
Raw Data
Handle
24277417
Attached To
rPH Phabricator
DifferentialCommitMessageFieldTestCase.php
View Options
<?php
final
class
DifferentialCommitMessageFieldTestCase
extends
PhabricatorTestCase
{
public
function
testRevisionCommitMessageFieldParsing
()
{
$base_uri
=
'https://www.example.com/'
;
$tests
=
array
(
'D123'
=>
123
,
'd123'
=>
123
,
"
\n
d123
\n
"
=>
123
,
"D123
\n
Some-Custom-Field: The End"
=>
123
,
"{$base_uri}D123"
=>
123
,
"{$base_uri}D123
\n
Some-Custom-Field: The End"
=>
123
,
'https://www.other.com/D123'
=>
null
,
);
$env
=
PhabricatorEnv
::
beginScopedEnv
();
$env
->
overrideEnvConfig
(
'phabricator.base-uri'
,
$base_uri
);
foreach
(
$tests
as
$input
=>
$expect
)
{
$actual
=
id
(
new
DifferentialRevisionIDCommitMessageField
())
->
parseFieldValue
(
$input
);
$this
->
assertEqual
(
$expect
,
$actual
,
pht
(
'Parse of: %s'
,
$input
));
}
unset
(
$env
);
}
}
Event Timeline
Log In to Comment