Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2895543
DifferentialCommitMessageParserTestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
2 KB
Referenced Files
None
Subscribers
None
DifferentialCommitMessageParserTestCase.php
View Options
<?php
final
class
DifferentialCommitMessageParserTestCase
extends
PhabricatorTestCase
{
public
function
testDifferentialCommitMessageParser
(
)
{
$dir
=
dirname
(
__FILE__
)
.
'/messages/'
;
$list
=
Filesystem
::
listDirectory
(
$dir
,
$include_hidden
=
false
)
;
foreach
(
$list
as
$file
)
{
if
(
!
preg_match
(
'/.txt$/'
,
$file
)
)
{
continue
;
}
$data
=
Filesystem
::
readFile
(
$dir
.
$file
)
;
$divider
=
"~~~~~~~~~~\n"
;
$parts
=
explode
(
$divider
,
$data
)
;
if
(
count
(
$parts
)
!==
4
)
{
throw
new
Exception
(
pht
(
'Expected test file "%s" to contain four parts (message, fields, '
.
'output, errors) divided by "%s".'
,
$file
,
'~~~~~~~~~~'
)
)
;
}
list
(
$message
,
$fields
,
$output
,
$errors
)
=
$parts
;
$fields
=
phutil_json_decode
(
$fields
)
;
$output
=
phutil_json_decode
(
$output
)
;
$errors
=
phutil_json_decode
(
$errors
)
;
$parser
=
id
(
new
DifferentialCommitMessageParser
(
)
)
->
setLabelMap
(
$fields
)
->
setTitleKey
(
'title'
)
->
setSummaryKey
(
'summary'
)
;
$result_output
=
$parser
->
parseCorpus
(
$message
)
;
$result_errors
=
$parser
->
getErrors
(
)
;
$this
->
assertEqual
(
$output
,
$result_output
)
;
$this
->
assertEqual
(
$errors
,
$result_errors
)
;
}
}
public
function
testDifferentialCommitMessageFieldParser
(
)
{
$message
=
<<<EOMESSAGE
This is the title.
Summary: This is the summary.
EOMESSAGE
;
$fields
=
array
(
new
DifferentialTitleCommitMessageField
(
)
,
new
DifferentialSummaryCommitMessageField
(
)
,
)
;
$expect
=
array
(
DifferentialTitleCommitMessageField
::
FIELDKEY
=>
'This is the title.'
,
DifferentialSummaryCommitMessageField
::
FIELDKEY
=>
'This is the summary.'
,
)
;
$parser
=
id
(
new
DifferentialCommitMessageParser
(
)
)
->
setCommitMessageFields
(
$fields
)
->
setTitleKey
(
DifferentialTitleCommitMessageField
::
FIELDKEY
)
->
setSummaryKey
(
DifferentialSummaryCommitMessageField
::
FIELDKEY
)
;
$actual
=
$parser
->
parseFields
(
$message
)
;
$this
->
assertEqual
(
$expect
,
$actual
)
;
}
public
function
testDifferentialCommitMessageParserNormalization
(
)
{
$map
=
array
(
'Test Plan'
=>
'test plan'
,
'REVIEWERS'
=>
'reviewers'
,
'sUmmArY'
=>
'summary'
,
)
;
foreach
(
$map
as
$input
=>
$expect
)
{
$this
->
assertEqual
(
$expect
,
DifferentialCommitMessageParser
::
normalizeFieldLabel
(
$input
)
,
pht
(
'Field normalization of label "%s".'
,
$input
)
)
;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Jan 19 2025, 21:36 (6 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1129021
Default Alt Text
DifferentialCommitMessageParserTestCase.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment