Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96248373
DifferentialRevisionTestPlanTransaction.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
Tue, Dec 24, 03:38
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Dec 26, 03:38 (1 d, 10 h)
Engine
blob
Format
Raw Data
Handle
23148371
Attached To
rPH Phabricator
DifferentialRevisionTestPlanTransaction.php
View Options
<?php
final
class
DifferentialRevisionTestPlanTransaction
extends
DifferentialRevisionTransactionType
{
const
TRANSACTIONTYPE
=
'differential.revision.testplan'
;
const
EDITKEY
=
'testPlan'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getTestPlan
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setTestPlan
(
$value
);
}
public
function
getTitle
()
{
return
pht
(
'%s edited the test plan for this revision.'
,
$this
->
renderAuthor
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s updated the test plan for %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
public
function
hasChangeDetailView
()
{
return
true
;
}
public
function
getMailDiffSectionHeader
()
{
return
pht
(
'CHANGES TO TEST PLAN'
);
}
public
function
newChangeDetailView
()
{
$viewer
=
$this
->
getViewer
();
return
id
(
new
PhabricatorApplicationTransactionTextDiffDetailView
())
->
setViewer
(
$viewer
)
->
setOldText
(
$this
->
getOldValue
())
->
setNewText
(
$this
->
getNewValue
());
}
public
function
newRemarkupChanges
()
{
$changes
=
array
();
$changes
[]
=
$this
->
newRemarkupChange
()
->
setOldValue
(
$this
->
getOldValue
())
->
setNewValue
(
$this
->
getNewValue
());
return
$changes
;
}
public
function
validateTransactions
(
$object
,
array
$xactions
)
{
$errors
=
$this
->
validateCommitMessageCorpusTransactions
(
$object
,
$xactions
,
pht
(
'Test Plan'
));
$is_required
=
PhabricatorEnv
::
getEnvConfig
(
'differential.require-test-plan-field'
);
if
(
$is_required
)
{
if
(
$this
->
isEmptyTextTransaction
(
$object
->
getTestPlan
(),
$xactions
))
{
$errors
[]
=
$this
->
newRequiredError
(
pht
(
'You must provide a test plan. Describe the actions you '
.
'performed to verify the behavior of this change.'
));
}
}
return
$errors
;
}
}
Event Timeline
Log In to Comment