Test Suite Summary
API Explorer: /masters/{masterId}/test-suite-summary
To get the summary details from a test suite master, a masterId is required. The sample code returns the summary details of a teset suite for the master with masterId of 12345678. Use the actaul masterId in place of 12345678.
Test Suite Summary
curl 'https://a.blazemeter.com/api/v4/masters/12345678/test-suite-summary' \
--user 'api_key_id:api_key_secret'
Test Suite Summary Response Attributes
All timestamps are in UNIX Epoch time.
Attributes
-
testsResultarrayThe list of test results from all tests in the test suite
Show/Hide Child Attributes
-
testIdintegerThe unique identifier of the test. This is known as the
testIdand cannot be modified -
testNamestringThe name of the test
-
testTypestringThe type of test. Can be either of the following:
functionalApi- Denotes an API functional testfunctionalGui- Denote a GUI functional test -
definedStatusstringDenotes if the test
passedorfailed, or isbroken(in the case of GUI functional) -
suitesPassedintegerDenotes the number of tests that passed
-
suitesTotalintegerDenotes the number of tests in total
-
sessionsPassedintegerDenotes the number of sessions that passed
-
sessionsTotalintegerDenotes the number of sessions in total
-
startedfloatThe timestamp of the start time of the test
-
endedfloatThe timestamp of the end time of the test
-
-
uniqueLocationNamesarrayList of all unique locations run in the test suite. These values uses the location names, not the location Ids
-
suiteSummaryobjectThe summary details of the whole test suite
Show/Hide Child Attributes
-
suitesPassedintegerDenotes the number of tests that passed
-
suitesTotalintegerDenotes the number of tests in total
-
sessionsPassedintegerDenotes the number of sessions that passed
-
sessionsTotalintegerDenotes the number of sessions in total
-
definedStatusstringDenotes if the test suite
passedorfailed, or isbrokenorundefined(in the case of GUI functional) -
startedintegerThe timestamp of the start time of the test suite
-
endedfloatThe timestamp of the end time of the test suite
-
-
updatedintegerThe timestampe of the last update to the test suite summary
Response200 OK
{
"api_version": 4,
"error": null,
"result": {
"testsResult": [
{
"testId": 7632610,
"testName": "Santander Proxy GUI Functional Validation Test",
"testType": "functionalGui",
"definedStatus": "passed",
"suitesPassed": 1,
"suitesTotal": 1,
"sessionsPassed": 1,
"sessionsTotal": 1,
"started": 1592939030.8151221,
"ended": 1592939051.8028064
},
{
"testId": 7895446,
"testName": "API Functional Validation Test",
"testType": "functionalApi",
"definedStatus": "passed",
"suitesPassed": 1,
"suitesTotal": 1,
"sessionsPassed": 1,
"sessionsTotal": 1,
"started": 1592938966,
"ended": 1592939017
}
],
"uniqueLocationNames": [
"US West (Oregon) - Functional GUI Test",
"US West (Los Angeles) - Functional Test"
],
"suiteSummary": {
"suitesPassed": 2,
"suitesTotal": 2,
"sessionsPassed": 2,
"sessionsTotal": 2,
"definedStatus": "passed",
"started": 1592938966,
"ended": 1592939051.8028064
},
"updated": 1592939391
},
"request_id": "5ef36d19ac49f"
}