有人可以分享允许我更新给定版本的测试周期的步骤和代码吗? 我可以让它更新 Ad Hoc 的测试结果,但这不是我想要的。 这是我所拥有的:
// 1. Get IssueId via "jira/rest/api/2/issue/" + issueKey
// 2. Get VersionId via "jira/rest/api/2/project/" + projectId + "/versions"
// 3. Get ProjectId via "jira/rest/api/2/project"
// 4. Create ExecutionId via "jira/rest/zapi/latest/execution", with issueId, projectId in header
// 5. Execute execution via "jira/rest/zapi/latest/execution" + executionId + "/execution" , with body containing status = 1 or 2
我有版本ID,但我把它放在哪里?我需要获取 TestCycle ID,但我不知道在哪里获得它,一旦我得到它,我应该把它放在哪里?
测试周期在 Zephyr 中按版本和项目组织,JIRA.So,您应该发出以下 GET 请求以获取所选项目的给定版本的周期 ID。
GET - http://<jira_server>/rest/zapi/latest/cycle?projectId=10000&versionId=10100
通过上述请求,您将获得 cycleId,在执行资源 API "http://jira_server/rest/zapi/latest/execution" 中使用此 ID,如下所示,以获取该周期中的执行 ID。
POST - http://<jira_server>/rest/zapi/latest/execution
HEADERS
Content-Type:application/json
BODY
{
"issueId": 10600,
"versionId": "10000",
"cycleId": "16",
"projectId": 10000
}
现在,在下面的 API 中使用 executeId 作为 {id} 来更新测试结果 http:///rest/zapi/latest/execution/{id}/execute
用法
PUT
http://<jira_server>/rest/zapi/latest/execution/{id}/execute
HEADERS
Content-Type:application/json
BODY
{
"status": "1"
}
Response
200
如果您仍然遇到任何问题,请使用您的公司电子邮件ID注册我们的支持网站"https://support.getzephyr.com/hc/en-us",并使用"提交案例"选项向我们提出票证,我们的一位支持工程师将立即与您联系。这是跟踪Zephyr问题的更好渠道。
我通过查看 zapi 文档弄清楚了,我错误地查看了 REST API 文档并且在那里找不到它,没有意识到测试周期是 Zephyr 解决方案。该请求应如下所示:
https://jira.xxxxx.com/jira/rest/zapi/latest/cycle?{"versionId":12345,"projectId":12345}