How to have the list of script test with enclosed file in it, from RQM ?
4 answers
Hi,
1. First, please elaborate on what you are looking for, e.g. are you trying to identify all manual test scripts with an image inserted in a step?
2. The URL I gave uses my public URI and project alias, it will not work as-as for you.
Example:
https://clmlocal.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/testingReports/testscript?abbreviate=false
Is:
https://<host>:<port>/<context>/service/com.ibm.rqm.integration.service.IIntegrationService/resources/test<projectAlias>/testscript?abbreviate=false
So you need to replace <host>, <port>, <context>, <projectAlias> with correct values
3. There is no out-of-the-box RRDI report that provides what you need, it would have to be a custom report. I would like to be clear on what exactly you need (question #1 above) though.
Thanks,
Brett
1. First, please elaborate on what you are looking for, e.g. are you trying to identify all manual test scripts with an image inserted in a step?
2. The URL I gave uses my public URI and project alias, it will not work as-as for you.
Example:
https://clmlocal.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/testingReports/testscript?abbreviate=false
Is:
https://<host>:<port>/<context>/service/com.ibm.rqm.integration.service.IIntegrationService/resources/test<projectAlias>/testscript?abbreviate=false
So you need to replace <host>, <port>, <context>, <projectAlias> with correct values
3. There is no out-of-the-box RRDI report that provides what you need, it would have to be a custom report. I would like to be clear on what exactly you need (question #1 above) though.
Thanks,
Brett
Comments
Brett Bohnn
Oct 15 '15, 5:33 p.m.Hi Christelle,
"testingReports" in URL https://clmlocal.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/testingReports/testscript?abbreviate=false is the RQM project alias which you can get from https://<hostname>:<port>/qm/service/com.ibm.rqm.integration.service.IIntegrationService/projectsAre you referring to images inserted in the step of a manual test script? There is no way to filter on scripts with attachments in the RQM UI, which I am sure you have seen.
The test script REST feed does include attachment references.
For example, a GET on https://clmlocal.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/testingReports/testscript?abbreviate=false will return a feed with XML that includes the ID, title and attachment href:
That feed is limited to "Max Feed Entries/Page" value discussed here https://jazz.net/forum/questions/105847/rqm-rest-how-to-get-more-than-50-items-in-response
This would also require client code to parse the XML to something like .cvs so it may not be practical.
If you have RRDI or RPE you might also be able to build a custom report that lists all test scripts and the attachments on each step.
Thanks,
Brett