Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

I need to fetch a few fields off a test plan test scripts

 Hi There,

I am using RQM for my project. I am trying to understand the procedure to implement the following.

When i click a release --> goto test plan --> click on test case the UI contains the list of test cases followed by many columns. 

I want to pull these columns from my java code, or CLI.

I am presently using the RQMUrlUtility.jar, but it only returns me data equivalent to ctrl + u.

Please let me know how i can proceed on this.

Many thanks.

0 votes

Comments

Hi Jigar,

Can  you share the RQMURLUtility syntax you are using? Are expecting something other than XML from the GET results from the RQMURlUtility?

Thanks,
Brett

  Hi Brett,


I want to view all the fields of the test cases under a test plan. I means columns such as ID, State, Owner, Validates Requirement.

Regards,
Jigar


Accepted answer

Permanent link
Hi Jigar,

You will have to GET the test case resource and you can retrieve the requirement link using calmlinks=true like this:

https://clmlocal.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/BuildIntegration+%28Quality+Management%29/testcase/urn:com.ibm.rqm:testcase:62?calmlinks=true

The XML from that test case, ID 62, includes ID, priority, state, owner, created by, validates requirement

Without clmlinks=true you will not get the requirement data, e.g. this snippet from a GET on my URL example above:

<ns2:template href="https://clmlocal.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/BuildIntegration+%28Quality+Management%29/template/testcase/com.ibm.rqm.planning.templates.testcase.default"/><ns2:requirement summary="myReqTest" rel="validates" href="https://clmlocal.ibm.com:9443/rm/resources/_y4clM5L2EeWHbOjihWwStw"/></ns2:testcase>

Thanks,
Brett

 
Jigar Shah selected this answer as the correct answer

0 votes


One other answer

Permanent link
Hi Jigar,

Have you looked at the fields parameter of the RQM REST API, e.g. something like this?

https://clmlocal.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/myProject/testcase?fields=feed/entry/content/testcase/(*|testplan[@href='https://clmlocal.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/myProject/testplan/urn:com.ibm.rqm:testplan:23')

To return XML for all test cases associated to test plan ID 23 (in the example above) in RQM project area "myProject"

You can get all the fields from a test case with:

https://clmlocal.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/myProject/testcase/urn:com.ibm.rqm:testcase:64

There are other examples here https://sleroyblog.wordpress.com/2013/04/09/querying-rqm-40-through-oslc-and-rest-api/ and here https://jazz.net/wiki/bin/view/Main/RqmApi#fields

Thanks,
Brett

0 votes

Comments

 Hi Brett,


Thanks for your response. I have managed to make good ground using the reference that you have shared. 

<Link>qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/"+projectName+"/testcase

Returns me in XML all the test cases associated with that test plan. Only the test case names. However on the UI, when i click on the testCases i get all test cases details such as ID, Priority, State, Owner, Created By, Anatom Id .. , Validates Requirement. 


Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 12,019

Question asked: Jan 13 '16, 9:04 p.m.

Question was seen: 2,802 times

Last updated: Jan 18 '16, 7:29 p.m.

Confirmation Cancel Confirm