Klaros is a test management tool
developed and supported by verit Informationssysteme GmbH, Kaiserslautern, Germany.
Klaros is available in two kinds of editions, a free community edition and an
enterprise edition with an extended set of functionality, individual configuration
options and full customer support.
The current integration of QF-Test with Klaros comprises:
- Import of QF-Test results into Klaros.
After creating the XML report file as described in
chapter 20, you can upload the results to Klaros. An example
for a QF-Test import URL may look like this, where the result file is contained in the
HTTP request body.
|
http://localhost:18080/klaros-web/seam/resource/rest/importer?config=P00001&env=ENV00001&sut=SUT00001&type=qftest&time=05.02.2013_12:00&username=me&password=secret |
|
| | Example 24.1: Importing test results into Klaros | |
The curl
command line tool can be used on Linux or Windows/Cygwin to
trigger an import in a single command line.
|
curl -v -H "Content-Type: text/xml" -T "my_qftest_report.xml" \
"http://localhost:18080/klaros-web/seam/resource/rest/importer?config=P00001&env=ENV00001&sut=SUT00001&type=qftest&time=05.02.2013_12:00&user=me&password=secret" |
|
| | Example 24.2: Using curl command to import test results into Klaros | |
Further information can be found within the Klaros online manual at https://www.klaros-testmanagement.com/files/doc/html/User-Manual.Import-Export.html.