It's all about the answers!

Ask a question

Update/Set Result Details content of RQM Test Result Resource using OSLC/REST API


Jayesh Gaikar (59215) | asked Apr 08 '20, 4:04 p.m.

Hi,


I'm trying to update a RQM Test Result resource with extendedproperty 'richTextSection' using OSLC API call to 'updateResource'. I believe 'richTextSection' is associated with Result Details section of Test Result where i want to update some content.

Even after client.updateResource executed without any exception Result Details content is not updated and missing from Test Result.
I wonder, Is this correct way to update Test Result resource? Are reportable REST APIs more convenient to achieve this update.
E.g Source code snapshot
TestResult testResult= client.getResource(testresultLocation, OSLCConstants.CT_RDF).getEntity(TestResult.class);
 Map<QName, Object> extProp1 = testResult.getExtendedProperties();
 extProp1.put(qName, "Comment updated by using API ");
 testResult.setExtendedProperties(extProp1);
 ClientResponse updateResponse = client.updateResource(testresultLocation, testResult,
                            OslcMediaType.APPLICATION_RDF_XML);

Your feedback is appreciated! Thank You!
-Jay

Accepted answer


permanent link
Vijay Patil (4813) | answered Apr 14 '20, 5:48 a.m.
JAZZ DEVELOPER
Hi Jayesh,

Currently the "richTextSection" property is supported only for creating the test result. It is not supported for updating the test result. Hence Result Details content is not updated using OSLC API call to 'updateResource'.

I would suggest to open an RFE for your use case in RQM.

Thank You,
Vijay Patil
Jayesh Gaikar selected this answer as the correct answer

Comments
Jayesh Gaikar commented Sep 01 '20, 1:49 p.m.

Thanks for reply Vijay!

Your answer


Register or 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.