Skip to main content

Eggplant Performance Test Controller:POST/Abort Test Run Method

This method terminates all engine processes immediately.

URL

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

HTTP Method

POST: Terminates all engine processes immediately

POST Data Parameters

None

Response Parameters

TypeDescription
<string>An entry for each Injector in the Test. Each Injector has a list containing two values: a <boolean> value indicating whether the request to abort was processed successfully, and a <string> value containing a message.

Example Request

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

POST Data
{}

Example Response

{
"localhost": [true, "Engines aborted"],
"localhost2": [true, "Engines aborted"]
}