Skip to main content

Eggplant Performance Test Controller:GET Test Closedown Progress Method

This method gets progress messages for the closedown of a test.

URL

/test_controller/api/1.0/<workspace>/<project>/<test>/closedown_progress

HTTP Method

GET: Gets progress messages for the closedown of a test

Response Parameters

The response is a list of lists, where each list contains:

TypeDescription
<timestamp>A timestamp object.
<boolean>A <boolean> value indicating success or failure.
<timestamp>A <string> containing a message.

Example Request

http://localhost:5001/test_controller/api/1.0/Demo%20Workspace/Demo/demoScript/closedown_progress

Example Response

[
[
["2016-09-17T06:32:11.561000", true, "Closed engine intel.win32.clr4_6.0"],
[
"2016-09-17T06:32:11.578000",
true,
"Updated test audit at D:\\workspaces\\Demo Workspace\\projects\\Demo\\runs\\Default Series\\demoScript.6\\TestAudit.xml"
],
["2016-09-17T06:32:11.581000", true, "Test stopped successfully"]
],
[]
]