-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from delirius325/0.0.2
0.0.2
- Loading branch information
Showing
17 changed files
with
794 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## Version 0.0.2 | ||
|
||
* Changed web server to Jetty + JAX-RS (from webbit-server + webbit-rest) | ||
* Modified `/api/threads/` endpoint to retrieve all thread groups and their properties | ||
* Added `GET /api/threads/{name}` endpoint to retrieve information about a specific thread group | ||
* Added `POST /api/threads/{name}` endpoint to modify a specific thread group | ||
* Added error handling for `GET & POST /threads/{name}` returns RESTful error if thread group doesn't exist | ||
* Added `GET /api/test/status` endpoint to retrieve information about the test status (time running, finished, started, etc.) | ||
* Added `GET /api/test/end` endpoint to end the test run | ||
* Added JavaDoc compatible comments to all the classes/methods | ||
* Added `ResultHolder` class which calculates and holds a summary of the test results | ||
* Added `GET /api/test/summary` endpoint to retrieve a results summary of every sample (#1) | ||
|
||
|
||
Note: All endpoints require the test to be running to be consumed. | ||
|
||
## Version 0.0.1 | ||
|
||
* Temporary API documentation in README | ||
* Exposes certain routes to access thread group values | ||
* Only works with one thread group | ||
* `GET & POST /variables` to modify variables on the fly | ||
* `GET & POST /properties` to modify properties on the fly | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
### Things to know to contribute to the codebase | ||
|
||
- To be able to change values while the test is running, we make use of the `LiveChanges.iterationStart()`. | ||
This acts as an "event loop" and allows us to create methods such as `checkForThreadChanges()`, `checkForVariableChanges()`, etc. | ||
- We use static variables to be able to modify values from outside `JMeterContext` and pass them to the event loop. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.