pytest-httpserver is a httpserver for pytest
Project description
pytest_httpserver
HTTP server for pytest
Nutshell
This library is designed to help to test http clients without contacting the real http server. In other words, it is a fake http server which is accessible via localhost can be started with the pre-defined expected http requests and their responses.
Example
def test_my_client(httpserver): # httpserver is a pytest fixture which starts the server
# set up the server to serve /foobar with the json
httpserver.expect_request("/foobar").respond_with_json({"foo": "bar"})
# check that the request is served
assert requests.get(httpserver.url_for("/foobar")).json() == {'foo': 'bar'}
You can also use the library without pytest. There’s a with statement to ensure that the server is stopped.
with HTTPServer() as httpserver:
# set up the server to serve /foobar with the json
httpserver.expect_request("/foobar").respond_with_json({"foo": "bar"})
# check that the request is served
print(requests.get(httpserver.url_for("/foobar")).json())
Features
You can set up a dozen of expectations for the requests, and also what response should be sent by the server to the client.
Requests
There are three different types:
permanent: this will be always served when there’s match for this request, you can make as many HTTP requests as you want
oneshot: this will be served only once when there’s a match for this request, you can only make 1 HTTP request
ordered: same as oneshot but the order must be strictly matched to the order of setting up
You can also fine-tune the expected request. The following can be specified:
URI (this is a must)
HTTP method
headers
query string
data (HTTP payload of the request)
Responses
Once you have the expectations for the request set up, you should also define the response you want to send back. The following is supported currently:
respond arbitrary data (string or bytearray)
respond a json (a python dict converted in-place to json)
respond a Response object of werkzeug
use your own function
Similar to requests, you can fine-tune what response you want to send:
HTTP status
headers
data
Missing features
HTTP/2
Keepalive
TLS
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
File details
Details for the file pytest_httpserver-0.2.1.tar.gz
.
File metadata
- Download URL: pytest_httpserver-0.2.1.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.23.2 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94e4a9063d34222ee386eeca8d4cdd48c2870270b22bcd2d3f3ce2505ae56893 |
|
MD5 | e12ca7fca827849dae02c3b119e6f4f6 |
|
BLAKE2b-256 | cbd06a3d0d79a57d1134dd1ed8bed94b207194f24e62dfe88db0c2a4866d74ca |
File details
Details for the file pytest_httpserver-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: pytest_httpserver-0.2.1-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.23.2 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cee2ef07b753bc7e7d5432d69a62c5099eb184dc095a5d5eeb5b3a3564d92e3c |
|
MD5 | 957b88ff78e17640bc7f4cabeaa0bfaf |
|
BLAKE2b-256 | f7ccbb5196af44c120392b025cd8b786d79e71928167556da2d9625217f69291 |