Test Start Progress
This Eggplant Performance Test Controller REST method gets progress messages for the startup of a test.
URL
/test_controller/api/1.0/<workspace>/<project>/<test>/startup_progress
HTTP Method
GET: Gets progress messages for the startup of a test
Response Parameters
The response is a list of lists, where each list contains:
Type | Description |
---|---|
<timestamp> | A timestamp object. |
<boolean> | A <boolean> value indicating success or failure. |
<timestamp> | A <string> containing a message. |
Example Request
http:/test_controller/api/1.0/Demo%20Workspace/Demo/demoScript/startup_progress
Example Response
[
[
[
"2016-09-17T06:30:31.407000",
true,
"Created test run directory at D:\\workspaces\\Demo Workspace\\projects\\Demo\\runs\\Default Series\\demoScript.6"
],
[
"2016-09-17T06:30:31.473000",
true,
"Created test audit at D:\\workspaces\\Demo Workspace\\projects\\Demo\\runs\\Default Series\\demoScript.6\\TestAudit.xml"
],
[
"2016-09-17T06:30:31.475000",
true,
"Created alerts file at D:\\workspaces\\Demo Workspace\\projects\\Demo\\runs\\Default Series\\demoScript.6\\alerts.txt"
],
[
"2016-09-17T06:30:31.487000",
true,
"Started local injector on port 39000"
],
["2016-09-17T06:30:31.521000", true, "Transferring files to injectors"],
[
"2016-09-17T06:30:31.524000",
true,
"Injector localhost in injector family This machine: Transferring files to injector"
],
[
"2016-09-17T06:30:31.549000",
true,
"Injector localhost in injector family This machine: File transfer complete"
],
["2016-09-17T06:30:31.549000", true, "Starting engines"],
["2016-09-17T06:30:31.641000", true, "Engine startup complete"],
["2016-09-17T06:30:31.641000", true, "Initializing engines"],
["2016-09-17T06:30:31.741000", true, "Engine initialization complete"],
["2016-09-17T06:30:31.741000", true, "Starting virtual users"],
["2016-09-17T06:30:31.751000", true, "Virtual users started"],
["2016-09-17T06:30:31.751000", true, "Test started successfully"]
],
[]
]