我正在Groovy中编写工作流验证程序,以根据创建案例时的自定义字段值输入链接两个问题。要求Jira问题链接的自定义归档值是唯一的。换句话说,我需要确保只有一个问题具有特定的自定义字段值。如果存在多个具有输入自定义字段值的问题,则验证应该失败。
我如何或如何返回导致工作流验证程序失败?
示例代码:
// Set up jqlQueryParser object
jqlQueryParser = ComponentManager.getComponentInstanceOfType(JqlQueryParser.class) as JqlQueryParser
// Form the JQL query
query = jqlQueryParser.parseQuery('<my_jql_query>')
// Set up SearchService object used to query Jira
searchService = componentManager.getSearchService()
// Run the query to get all issues with Article number that match input
results = searchService.search(componentManager.getJiraAuthenticationContext().getUser(), query, PagerFilter.getUnlimitedFilter())
// Throw a FATAL level log statement because we should never have more than one case associated with a given KB article
if (results.getIssues().size() > 1) {
for (r in results.getIssues()) {
log.fatal('Custom field has more than one Jira ssue associated with it. ' + r.getKey() + ' is one of the offending issues')
}
return "?????"
}
// Create link from new Improvement to parent issue
for (r in results) {
IssueLinkManager.createIssueLink(issue.getId(), r.getId(), 10201, 1, getJiraAuthenticationContext().getUser())
}
答案 0 :(得分:1)
尝试类似
的内容import com.opensymphony.workflow.InvalidInputException
invalidInputException = new InvalidInputException("Validation failure")
这是基于groovy script runner。如果它不适合你,我会建议你使用某种框架来简化脚本,我喜欢使用groovy script runner,Jira Scripting Suite或Behaviours Plugin 。所有这些都使脚本编写更容易,更直观。