Python library for GoReplay Middleware
Project description
Python library for GoReplay Middleware , API is quite similar to NodeJS library
Installation
To install GorMW, simply:
$ pip install gor
or from source:
python setup.py install
Getting Started
Initialize a AsyncioGor based middleware and start it in the following way:
from gor.middleware import AsyncioGor
proxy = AsyncioGor()
proxy.run()
Basic idea is that you write callbacks which respond to request, response, replay, or message events, which contains request meta information and actuall http paylod. Depending on your needs you may compare, override or filter incoming requests and responses.
You can respond to the incoming events using on function, by providing callbacks:
def on_request(proxy, msg, **kwargs):
# do anything you want with msg
# msg is a GorMessage object
pass
proxy = AsyncioGor()
proxy.on('request', on_request)
proxy.run()
You can provide request ID as additional argument to on function, which allow you to map related requests and responses. Below is example of middleware which checks that original and replayed response have same HTTP status code. Have a try with the following command and sample middleware.
gor --input-raw :14000 --middleware "/path/to/middleware.py" --output-http-track-response --input-raw-track-response --output-http "http://127.0.0.1:14001"
# coding: utf-8
import sys
from gor.middleware import AsyncioGor
def on_request(proxy, msg, **kwargs):
proxy.on('response', on_response, idx=msg.id, req=msg)
def on_response(proxy, msg, **kwargs):
proxy.on('replay', on_replay, idx=kwargs['req'].id, req=kwargs['req'], resp=msg)
def on_replay(proxy, msg, **kwargs):
replay_status = proxy.http_status(msg.http)
resp_status = proxy.http_status(kwargs['resp'].http)
if replay_status != resp_status:
sys.stderr.write('replay status [%s] diffs from response status [%s]\n' % (replay_status, resp_status))
else:
sys.stderr.write('replay status is same as response status\n')
sys.stderr.flush()
if __name__ == '__main__':
proxy = AsyncioGor()
proxy.on('request', on_request)
proxy.run()
Mutiple middleware choices
This library provides multiple middleware to choice, currently includes
AsyncioGor, implements based on python3 asyncio
MultiProcessGor, implements based multi processing
Project details
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 gor-0.2.3.tar.gz
.
File metadata
- Download URL: gor-0.2.3.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78b66b34919be4e3e8da3d67044305aae7ef919d68b99509d65624f1078acc20 |
|
MD5 | 378bcf11d35c9b9623d13980437d4be8 |
|
BLAKE2b-256 | 9ba81b7b4a6649f58a2d8b451daad9c671bee635ceedb4eedebe4ec3e25e1000 |
File details
Details for the file gor-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: gor-0.2.3-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8aabda9e174bff1c33fce32fe4fd4280c72ea98cf67f598337f645c4689d7a20 |
|
MD5 | 2e3a2849ea2f9bd370d38b7493e71889 |
|
BLAKE2b-256 | f0d74e91e32fe4eea5a7ae69504a579c6dc0747f40aca220ceb9f6b761ab1551 |