gpt4 book ai didi

java - 吉拉 API : How to update test result using Version and Test Cycle?

转载 作者:行者123 更新时间:2023-11-30 08:04:37 24 4
gpt4 key购买 nike

有人可以分享允许我更新给定版本的测试周期的步骤和代码吗?我可以获得它来更新 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

我有 VersionId,但我应该把它放在哪里?我需要获取 TestCycle Id,但我不知道从哪里获取它,一旦我获取了它,我应该把它放在哪里?

最佳答案

测试周期在 Zephyr for JIRA 中按版本和项目组织。因此,您应该发出以下 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 中使用 executionId 作为 {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 问题的更好 channel 。

关于java - 吉拉 API : How to update test result using Version and Test Cycle?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35494698/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com