https://github.com/kiran94/bulma
Wrapper for Vegeta Load Testing tool
https://github.com/kiran94/bulma
load-testing stress-test vegeta
Last synced: over 1 year ago
JSON representation
Wrapper for Vegeta Load Testing tool
- Host: GitHub
- URL: https://github.com/kiran94/bulma
- Owner: kiran94
- License: mit
- Created: 2020-08-29T15:51:09.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-19T12:49:21.000Z (almost 6 years ago)
- Last Synced: 2025-03-08T11:47:43.134Z (over 1 year ago)
- Topics: load-testing, stress-test, vegeta
- Language: Python
- Homepage: https://pypi.org/project/bulma-load/
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bulma
 
A companion to [Vegeta](https://github.com/tsenart/vegeta) that tells him what to do. Define a configuration file like below and run:
```sh
python -m bulma -c samples/bulma.config.json
```
**bulma.config.json**
```json
{
"Project": "My Super Project",
"Duration": "5s",
"Rate": "50/1s",
"Header": {
"Content-Type":[ "application/json" ],
"Accept-Encoding":[ "*" ]
},
"Corpus": [
{
"id": "Getting Todo JSON data",
"method": "GET",
"url": "https://jsonplaceholder.typicode.com/todos/1",
"header": { "Content-Type": ["application/json"] }
},
{
"id": "Converting text to Md5",
"method": "GET",
"url": "http://md5.jsontest.com/?text=example_text",
"header": { "Content-Type": ["application/json"] }
}
]
}
```
Each of the cases within the `Corpus` are passed directly to [Vegeta's JSON format](https://github.com/tsenart/vegeta#json-format) allowing you to specify anything that would normally be supported by that tool.
Bulma supports the following body types which can be attached to any cases witin the `Corpus`:
- `body`: Raw string body
- `body_file`: Relative location to a file, content's are extracted
- `body_graphql`: Relative location to a file containing a GraphQL query. contents are extracted and pushed into `query` property for a GraphQL request
*Note that relativity here is relative to where you run the script*
[Full Sample](https://github.com/kiran94/bulma/blob/master/samples/bulma.config.json)