Test Sessions API (a.k.a TIA API)
You can integrate any Testing framework with Sealights to capture Tests Events like Start and End of Test Stage, Tests results, etc using the API described on this page.
This API includes getting the list of tests recommended to be skipped by Sealights for Test Optimization (TIA) and forcing a Full-Run on the next execution of a Test Stage.
For your reference, you’ll find a few sample integrations with various Testing frameworks listed on our dedicated documentation page.
This API requires an Agent Token.
Creating Test Session
Create a test session with a specific Labid and test stage, if there is no labId - use BSId instead
Calling this request to create a new test session for the current run
POST /sl-api/v1/test-sessions
Request details
Request body
Parameter | Description | Default value | Is mandatory? |
---|---|---|---|
| Lab Id |
|
|
| Test Stage |
|
|
| Build Session Id |
|
|
| Session Timeout (seconds) | 14,400 (4 hours) |
|
Request Samples
POST /sl-api/v1/test-sessions HTTP/1.1
Authorization: Bearer {sealights-agent-token}
Content-Type: application/json
{
"labId": "LabId",
"testStage": "Unit Tests",
"bsid": "bsId",
"sessionTimeout": 10000
}
HTTP/1.1 200 OK
HTTP/1.1 404 NOT_FOUND
HTTP/1.1 500 BAD_REQUEST
Response Sample
{
"data": {
"testSessionId": "341dc795-71a8-4253-b686-27ff09f04468"
}
}
Sample Shell command and response:
Linux |
CODE
|
---|---|
Powershell |
CODE
|
Get Exclude Tests
Getting a list of tests that should be excluded
Test Optimization must be turned on for the Test Stage in order to receive a non-empty response.
Calling this request to get a list of test names that should be excluded in the current run (by default with test names)
GET /sl-api/v1/test-sessions/{testSessionId}/exclude-tests
You can specify to get only the External Tests IDs (instead of Test Names) to be returned in the response
GET /sl-api/v1/test-sessions/{testSessionId}/exclude-tests?type=externalId
Request details
Request parameters
Parameter | Description | Is mandatory? |
---|---|---|
| Test Session ID |
|
| enum:
|
Request/Response Samples
Sample | Request | Response |
---|---|---|
Default (using test names) |
CODE
|
CODE
|
|
CODE
|
CODE
|
Sample Shell command and response:
curl -X GET "https://$DOMAIN/sl-api/v1/test-sessions/$TESTSESSIONID/exclude-tests" \
-H "Authorization: Bearer $SEALIGHTS_AGENT_TOKEN" \
-H "Content-Type: application/json"
200 OK
404 NOT_FOUND
500 BAD_REQUEST
Sending Test Events
Sending test events with status
Calling this request for reporting SeaLights test event result.
POST /sl-api/v2/test-sessions/{testSessionId}
This API must be called before closing/deleting the session.
Please notice this specific endpoint uses a
v2
URL
This API can be called several times during a session to report tests in bulk.
Request details
Request parameters
Parameter | Description | Is mandatory? |
---|---|---|
| Test Session ID |
|
Request Body
The tests skipped per the recommendation (GetExcluded Tests API above) must be explicitly included in the results of the test sent to Sealights (with the status
skipped
)Skipped tests must be provided with start and end parameters, as well. We recommend providing them with
start = end = now()
value.
Parameter | Description | Is mandatory? |
---|---|---|
| Array of Test run events (even for a single test) | |
Test run event |
|
|
| Test Name |
|
| (Optional) Test ID from the Test Management platform/framework . | |
| Starting time of the test (milliseconds since epoch) |
|
| Ending time of the test (milliseconds since epoch) |
|
| Test status: |
|
In case of Invalid parameters, API will return an Error code 400 INVALID
. For example, if the timestamps are not sent in milliseconds format, API will return with code 400
and a message Invalid timestamp
Request Samples
POST /sl-api/v2/test-sessions/{testSessionId}
Authorization: Bearer {sealights-agent-token}
Content-Type: application/json
[
{
"name": "TestToRun1",
"start": 1619341754996,
"end": 1619341754998,
"status": "passed"
}
]
HTTP/1.1 200 OK
HTTP/1.1 400 INVALID
HTTP/1.1 404 NOT_FOUND
HTTP/1.1 500 BAD_REQUEST
Sample Shell command and response:
curl -X POST "https://$DOMAIN/sl-api/v2/test-sessions/$TESTSESSIONID" \
-H "Authorization: Bearer $SEALIGHTS_AGENT_TOKEN" \
-H "Content-Type: application/json" \
-d "[{\"name\":\"TestToRun1\",\"start\":1619341754996,\"end\":1619341754998,\"status\":\"passed\"}]"
200 OK
400 INVALID
404 NOT_FOUND
500 BAD_REQUEST
Delete Test Session
Delete test session when sending of test events has been done.
Calling this request will close the test session and update the coverage.
DELETE /sl-api/v1/test-sessions/{testSessionId}
Request details
Request parameters
Parameter | Description | Is mandatory? |
---|---|---|
| Test Session ID |
|
Request Samples
DELETE /sl-api/v1/test-sessions/{testSessionId}
Authorization: Bearer {sealights-agent-token}
Content-Type: application/json
HTTP/1.1 200 OK
HTTP/1.1 404 NOT_FOUND
HTTP/1.1 500 BAD_REQUEST
Sample Shell command and response:
curl -X DELETE "https://$DOMAIN/sl-api/v1/test-sessions/$TESTSESSIONID" \
-H "Authorization: Bearer $SEALIGHTS_AGENT_TOKEN" \
-H "Content-Type: application/json"
200 OK
404 NOT_FOUND
500 BAD_REQUEST
Force “Full-Run” on a Test Stage
Calling this request will schedule a full run for the next execution of a specified Test Stage.
PUT /sl-api/v1/tia/apps/{appName}/branches/{branchName}/testStages/{testStage}/full-run
This API call should be executed BEFORE creating the test session.
Request details
Request parameters
Parameter | Description | Is mandatory? |
---|---|---|
| App to schedule full run for |
|
| Branch to schedule full run for |
|
| Test Stage to schedule full run for |
|
Request Body
Parameter | Description | Is mandatory? |
---|---|---|
| Boolean indicator, indicates if next run will be full run or not |
|
Request Samples
PUT /sl-api/v1/tia/apps/{appName}/branches/{branchName}/testStages/{testStage}/full-run
Authorization: Bearer {sealights-agent-token}
Content-Type: application/json
{
"enable": true
}
HTTP/1.1 200 OK
HTTP/1.1 400 NOT_FOUND
HTTP/1.1 500 BAD_REQUEST
Sample Shell command and response:
curl -X PUT "https://$DOMAIN/sl-api/v1/tia/apps/$APPNAME/branches/$BRANCHNAME/testStages/$TESTSTAGE/full-run" \
-H "Authorization: Bearer $SEALIGHTS_AGENT_TOKEN" \
-H "Content-Type: application/json" \
-d "{\"enable\":true}"
200 OK
404 NOT_FOUND
500 BAD_REQUEST
Get Executions Status List
Calling this request will respond with a status of all executions that are suitable for the request.
GET /sl-api/v1/executions
This API provides you the ability to handle unexpected end of the execution of your tests that may not trigger the graceful closure of the test session to Sealights (via delete Session API call).
If the Timeout set at the creation of the execution is not sufficient to ensure automatic closure, you can use this API to list the executions left open and close them one by one gracefully before opening new sessions.
Request details
Request parameters
You must provide LabId or/and BuildSessionID (bsid)
Parameter | Description | Is mandatory? |
---|---|---|
| Build session Id |
|
| Lab Id |
|
| Test Stage | |
| enum:
|
Request Samples
GET /sl-api/v1/executions?bsid={bsid}&status={status}&testStage={testStage}
Authorization: Bearer {sealights-agent-token}
Content-Type: application/json
HTTP/1.1 200 OK
HTTP/1.1 500 BAD_REQUEST
Response Sample
{
"data": {
"total": 3,
"list": [
{
"executionId": "executionId1",
"bsId": "buildSessionId1",
"labId": "labId1",
"creationTime": 226978745454,
"ttl": 3000,
"testStage": "unit",
"status": "created"
}
]
}
}
Sample Shell command and response:
curl -X GET "https://$DOMAIN/sl-api/v1/executions?bsid=$bsid" \
-H "Authorization: Bearer $SEALIGHTS_AGENT_TOKEN" \
-H "Content-Type: application/json"
200 OK
500 BAD_REQUEST