如何使用Rally REST API从测试集中删除(取消映射)测试用例?

时间:2012-06-27 17:01:36

标签: rally

如何使用REST API从Rally中的测试集中删除测试用例?

它旨在从JavaScript调用。我无法在他们的文档中找到这些信息;非常感谢链接。

1 个答案:

答案 0 :(得分:2)

由于你使用的是Javascript - 你还使用Rally的AppSDK吗?如果是这样的话,那么用一个简单的AppSDK示例来表示这一点是相对简单的 - 具有AppSDK提供的额外优惠。

如果您正在使用直接REST,那么问题是测试用例没有TestSet属性字段 - 映射是测试集有一组测试用例。这样做的方法是通过REST查询测试集:

https://rally1.rallydev.com/slm/webservice/1.34/testset/12345678910

这将提供类似这样的响应(使用XML获取可读性,建议在实践中使用JSON):

<?xml version="1.0" encoding="UTF-8"?>
<TestSet rallyAPIMajor="1" rallyAPIMinor="34" ref="https://rally1.rallydev.com/slm/webservice/1.34/testset/1234741798" objectVersion="7" refObjectName=" Data Import Tests" CreatedAt="Mar 29">
  <CreationDate>2012-03-30T00:23:59.964Z</CreationDate>
  <ObjectID>1234741798</ObjectID>
  <Subscription rallyAPIMajor="1" rallyAPIMinor="34" ref="https://rally1.rallydev.com/slm/webservice/1.34/subscription/1231154643" refObjectName="My Subscription" type="Subscription" />
  <Workspace rallyAPIMajor="1" rallyAPIMinor="34" ref="https://rally1.rallydev.com/slm/webservice/1.34/workspace/1234498610" refObjectName="My Workspace" type="Workspace" />
  <Changesets />
  <Description>Tests to validate data import</Description>
  <Discussion />
  <FormattedID>TS11</FormattedID>
  <LastUpdateDate>2012-03-30T00:25:56.544Z</LastUpdateDate>
  <Name>Grid Data Import Tests</Name>
  <Notes />
  <Owner rallyAPIMajor="1" rallyAPIMinor="34" ref="https://rally1.rallydev.com/slm/webservice/1.34/user/1234320127" refObjectName="My Username" type="User" />
  <Project rallyAPIMajor="1" rallyAPIMinor="34" ref="https://rally1.rallydev.com/slm/webservice/1.34/project/1234731604" refObjectName="My Project" type="Project" />
  <RevisionHistory rallyAPIMajor="1" rallyAPIMinor="34" ref="https://rally1.rallydev.com/slm/webservice/1.34/revisionhistory/1234741799" type="RevisionHistory" />
  <Tags />
  <Blocked>false</Blocked>
  <Iteration rallyAPIMajor="1" rallyAPIMinor="34" ref="https://rally1.rallydev.com/slm/webservice/1.34/iteration/1234172067" refObjectName="Iteration 1" type="Iteration" />
  <PlanEstimate>2.0</PlanEstimate>
  <Rank>500000010240.000</Rank>
  <Release rallyAPIMajor="1" rallyAPIMinor="34" ref="https://rally1.rallydev.com/slm/webservice/1.34/release/1234791788" refObjectName="Release 1" type="Release" />
  <ScheduleState>Defined</ScheduleState>
  <Tasks />
  <TestCaseStatus>SOME_RUN_SOME_NOT_PASSING</TestCaseStatus>
  <TestCases>
    <TestCase rallyAPIMajor="1" rallyAPIMinor="34" ref="https://rally1.rallydev.com/slm/webservice/1.34/testcase/1234758065" refObjectName="Test Case 1" type="TestCase" />
    <TestCase rallyAPIMajor="1" rallyAPIMinor="34" ref="https://rally1.rallydev.com/slm/webservice/1.34/testcase/1234757395" refObjectName="Test Case 2" type="TestCase" />
    <TestCase rallyAPIMajor="1" rallyAPIMinor="34" ref="https://rally1.rallydev.com/slm/webservice/1.34/testcase/1234000782" refObjectName="Test Case 3" type="TestCase" />
  </TestCases>
</TestSet>

其中显示了三个测试用例的集合。要删除测试用例3,您需要提交一个仅包含测试用例1和测试用例2的REST请求,如下所示:

<TestSet ref="/testset/1234741798">
  <TestCases>
    <TestCase ref="/testcase/1234758065"/>
    <TestCase ref="/testcase/1234757395"/>
  </TestCases>
</TestSet>

这将更新测试集,以便删除测试用例3并且只有前两个测试用例。

您的客户端代码需要在测试集查询中循环执行REST响应,并构造一个POST请求,抛弃不需要的测试用例并保留您想要的测试用例。