Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93646854
DifferentialTestPlanFieldSpecification.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
Sat, Nov 30, 10:12
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Dec 2, 10:12 (2 d)
Engine
blob
Format
Raw Data
Handle
22682748
Attached To
rPH Phabricator
DifferentialTestPlanFieldSpecification.php
View Options
<?php
final
class
DifferentialTestPlanFieldSpecification
extends
DifferentialFieldSpecification
{
private
$plan
=
''
;
// NOTE: This means "uninitialized".
private
$error
=
false
;
public
function
shouldAppearOnEdit
()
{
return
PhabricatorEnv
::
getEnvConfig
(
'differential.show-test-plan-field'
);
}
protected
function
didSetRevision
()
{
$this
->
plan
=
(
string
)
$this
->
getRevision
()->
getTestPlan
();
}
public
function
setValueFromRequest
(
AphrontRequest
$request
)
{
$this
->
plan
=
$request
->
getStr
(
'testplan'
);
$this
->
error
=
null
;
return
$this
;
}
public
function
renderEditControl
()
{
if
(
$this
->
error
===
false
)
{
if
(
$this
->
isRequired
())
{
$this
->
error
=
true
;
}
else
{
$this
->
error
=
null
;
}
}
return
id
(
new
AphrontFormTextAreaControl
())
->
setLabel
(
'Test Plan'
)
->
setName
(
'testplan'
)
->
setValue
(
$this
->
plan
)
->
setError
(
$this
->
error
);
}
public
function
shouldExtractMentions
()
{
return
true
;
}
public
function
willWriteRevision
(
DifferentialRevisionEditor
$editor
)
{
$this
->
getRevision
()->
setTestPlan
(
$this
->
plan
);
}
public
function
validateField
()
{
if
(
$this
->
isRequired
())
{
if
(!
strlen
(
$this
->
plan
))
{
$this
->
error
=
'Required'
;
throw
new
DifferentialFieldValidationException
(
"You must provide a test plan."
);
}
}
}
public
function
shouldAppearOnCommitMessage
()
{
return
PhabricatorEnv
::
getEnvConfig
(
'differential.show-test-plan-field'
);
}
public
function
getCommitMessageKey
()
{
return
'testPlan'
;
}
public
function
setValueFromParsedCommitMessage
(
$value
)
{
$this
->
plan
=
(
string
)
$value
;
return
$this
;
}
public
function
shouldOverwriteWhenCommitMessageIsEdited
()
{
return
true
;
}
public
function
renderLabelForCommitMessage
()
{
return
'Test Plan'
;
}
public
function
getSupportedCommitMessageLabels
()
{
return
array
(
'Test Plan'
,
'Testplan'
,
'Tested'
,
'Tests'
,
);
}
public
function
renderValueForCommitMessage
(
$is_edit
)
{
return
$this
->
plan
;
}
public
function
parseValueFromCommitMessage
(
$value
)
{
return
$value
;
}
public
function
renderValueForMail
(
$phase
)
{
if
(
$phase
!=
DifferentialMailPhase
::
WELCOME
)
{
return
null
;
}
if
(
$this
->
plan
==
''
)
{
return
null
;
}
return
"TEST PLAN
\n
"
.
preg_replace
(
'/^/m'
,
' '
,
$this
->
plan
);
}
public
function
shouldAddToSearchIndex
()
{
return
true
;
}
public
function
getValueForSearchIndex
()
{
return
$this
->
plan
;
}
public
function
getKeyForSearchIndex
()
{
return
'tpln'
;
}
private
function
isRequired
()
{
return
PhabricatorEnv
::
getEnvConfig
(
'differential.require-test-plan-field'
);
}
}
Event Timeline
Log In to Comment