A simple python app for sending a set of consecutive HTTP requests defined in YAML requests plan.
Project description
yaml_requests
A simple python app for sending a set of consecutive HTTP requests defined in YAML requests plan.
Installing
Ensure that you are using Python >= 3.9 with python --version. This app/package is available in PyPI. To install, run:
pip install yaml_requests
Usage
The app is used to execute HTTP requests defined in YAML files. The YAML file must contain main-level key requests, that contains an array of requests, where each item of the list is a request object. The request object contains at least a method key (get, post, options, ...) which value is passed to requests.request function, or to requests.Session.request if plan level option session is truthy.
Minimal YAML request plan should thus include requests array, with single item in it:
requests:
- get:
url: https://google.com
In addition to this basic behavior, more advanced features are provided as well:
- All value fields in requests array items support jinja2 templating.
- Values can be read from environment variables with
lookupfunction. For example,{{ lookup("env", "API_TOKEN") }}. - Files can be read as text with
lookupfunction (e.g.,{{ lookup("file", "headers.yaml")}}) or opened withopenfunction (e.g.{{ open("photos/eiffer-tower.jpg") }}) to pass in as file objects tofilesparameter of request functions. - Variables can be defined in YAML request plan and overridden from commandline arguments.
- Response of the most recent request is stored in
responsevariable asrequests.Responseobject. - Responses can be stored as variables with
registerkeyword. - Response can be verified with assertions.
- Plan execution can be repeated by setting
repeat_whileoption. - Request can be looped by defining
loopoption for a request. The current item is available initemvariable.
See documentation for API reference.
Advanced Example
Here is an advanced example:
name: Simulate execution of a build from queue
variables:
base_url: http://localhost:5000
node: default
requests:
- name: Get queued items
get:
url: "{{ base_url }}/queue"
assert:
- name: Queue is not empty
expression: response.json() | length
- name: Status code is 200
expression: response.status_code == 200
- name: Request took less than 5 seconds
expression: response.elapsed.total_seconds() < 5
register: queue_response_1
- name: "Create build for first item in the queue ({{ response.json().0.id }})"
post:
url: "{{ base_url }}/queue/{{ response.json().0.id }}/init"
json:
node: "{{ node }}"
register: build_create
- name: Get queued items
get:
url: "{{ base_url }}/queue"
assert:
- name: Queue is shorter than initially
expression: response.json() | length < queue_response_1.json() | length
- name: "Complete the created build ({{ build_create.json().build_id }})"
post:
url: "{{ base_url }}/builds/{{ build_create.json().build_id }}/complete"
- name: Output build details
get:
url: "{{ base_url }}/builds/{{ build_create.json().build_id }}"
output: yaml
Running the Example
This example can be run against the dummy API provided by tst/server/api.py
Start by making sure that flask is installed:
python -m pip install flask
Then run the test server:
python -m flask --app tst/server/api.py run
With the test server running execute the plan using the command:
yaml_requests tst/plans/integration/build_queue.yml
More examples
There are more examples available in tst/plans directory and can be executed as follows:
yaml_requests tst/plans/minimal_plan.yml
yaml_requests tst/plans/integration/build_queue.yml
Help
See yaml_requests --help for full CLI usage.
Testing
Check and automatically fix formatting with:
pycodestyle yaml_requests
autopep8 -aaar --in-place yaml_requests
Run static analysis with:
pylint -E --enable=invalid-name,unused-import,useless-object-inheritance yaml_requests
Run unit tests with command:
python3 -m unittest discover -s tst/
Get test coverage with commands:
coverage run --branch --source yaml_requests/ -m unittest discover -s tst/
coverage report -m
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yaml_requests-0.16.2.tar.gz.
File metadata
- Download URL: yaml_requests-0.16.2.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09c976664077eec9cff256c7add90df71902e60b87b06923ca6a2237cedb8894
|
|
| MD5 |
5dd144b218de5b0327bf073faa643793
|
|
| BLAKE2b-256 |
bf35d123c9ffec9369191ab6094e6d98b3b423ffa294e1eea763ebdd088e6fab
|
File details
Details for the file yaml_requests-0.16.2-py3-none-any.whl.
File metadata
- Download URL: yaml_requests-0.16.2-py3-none-any.whl
- Upload date:
- Size: 20.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c83baaedb925092a2a1d5b721f37ae2143a19593b157121c48253a1f873ebd3
|
|
| MD5 |
ca99934c32c27ce72c9b98f7d0aa234d
|
|
| BLAKE2b-256 |
e2d312d4b40fd9ad0ba34d8fbfc9b217b6f01fe53ee827cb8bf8b3656b7690de
|