Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hiredscorelabs/cornell
Cornell - record & replay mock server
https://github.com/hiredscorelabs/cornell
mock python testing
Last synced: 3 months ago
JSON representation
Cornell - record & replay mock server
- Host: GitHub
- URL: https://github.com/hiredscorelabs/cornell
- Owner: hiredscorelabs
- License: mit
- Created: 2021-07-08T13:37:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-28T14:51:07.000Z (about 1 year ago)
- Last Synced: 2024-11-11T18:33:40.102Z (3 months ago)
- Topics: mock, python, testing
- Language: Python
- Homepage: https://hiredscorelabs.github.io/cornell/
- Size: 3.32 MB
- Stars: 141
- Watchers: 13
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-python-testing - Cornell - record & replay mock server. (Mock and Stub)
README
# Cornell: record & replay mock server
[![Build Status](https://travis-ci.com/hiredscorelabs/cornell.svg?branch=master)](https://app.travis-ci.com/github/hiredscorelabs/cornell)
[![Python Version](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9-blue)](https://www.python.org/downloads/release/python-390/)
[![Docker Hub](https://img.shields.io/docker/pulls/hiredscorelabs/cornell.svg)](https://hub.docker.com/r/hiredscorelabs/cornell)
![]()
> Cornell makes it dead simple, via its record and replay features to perform end-to-end testing in a fast and isolated testing environment.
When your application integrates with multiple web-based services, end-to-end testing is crucial before deploying to production.
Mocking is often a tedious task. It becomes even more tiresome when working with multiple APIs from multiple vendors.[vcrpy](https://github.com/kevin1024/vcrpy) is an awesome library that records and replays HTTP interactions for unit tests. Its output is saved to reusable "cassette" files.
By wrapping vcrpy with Flask, Cornell provides a lightweight record and replay server that can be easily used during distributed system testing and simulate all HTTP traffic needed for your tests.
## Basic Use Case
When you're working with distributed systems, the test client entry point triggers a cascade of events that eventually send HTTP requests to an external server
![System in test](https://imgur.com/OlDNTiD.jpg)
With Cornell server started, it will act as a proxy (**record mode**) between the outgoing HTTP requests and the external server and will record all relevant interactions.
Once interactions are recorded, Cornell can work in replay mode, replacing the external server entirely, short-circuiting the calls and instead, replying back instantly with the previously recorded response.![System in test](https://imgur.com/ZXTFgaP.jpg)
## Installation
To install from [PyPI](https://pypi.org/project/cornell/), all you need to do is this:
```bash
pip install cornell
```## Usage
```bash
Usage: cornell_server.py [OPTIONS]Usage Examples: Record mode: `cornell --forward_uri="https://remote_server/api" --record -cd custom_cassette_dir`
Replay mode: `cornell -cd custom_cassette_dirOptions:
-h, --host TEXT Set listen ip address
-p, --port INTEGER
-ff, --forward_uri TEXT Must be provided in case of recording mode
- , --record-once / --record-all
Record each scenario only once, ignore the
rest-r, --record Start server in record mode
-fp, --fixed-path Fixed cassettes path. If enabled, Cornell
will support only one server for recording-cd, --cassettes-dir TEXT Cassettes parent directory, If not
specified, Cornell parent dir will be used-re, --record-errors BOOLEAN If enabled, Cornell will record erroneous
responses
--help Show this message and exit.
```## Demo - Full Example
Start Cornell in record mode:
```
cornell -ff https://api.github.com/ --record -cd cassettes
```This will start the server in record-proxy mode on port `9000`, and will forward all requests to `https://api.github.com/`
![Cornell demo](https://imgur.com/ky5NBPf.gif)
When cornell is in record mode, it will forward all request to the specified forwarding URL, for example:
```
requests.get("http://127.0.0.1:9000/github/repos/kevin1024/vcrpy/license").json()
```
or
```
requests.get("http://127.0.0.1:9000/github/repos/kevin1024/vcrpy/contents").json()
```or you can browse to the URL using your browser
![Browser](https://imgur.com/GMgF6Cx.gif)
Cornell will forward the request to the specified URL and will record both the request and the response.
The yaml cassettes will be recorded to a dedicated directory (by default, `cassettes` in the root dir)
For example:
![Cassette dir](https://imgur.com/cZExEpu.gif)
__Note__
By default, `cassettes` directory will be created in cornell's root dir and will contain the cassette by destination hierarchy.
Use `-cd` to specify custom directory for your cassettes.
Mind that `-cd should match for both record and replay modesOnce all the necessary interactions were recorded, stop cornell server using *ctrl+c*.
Once stopped, all interactions will be mapped via an auto-generated `index.yaml` file.__Note__
In case the `index.yaml` is already present, it will be updated with new interactions. Otherwise, a new file will be created.
__Note__
Cornell doesn't record interactions with an erroneous response, by default (i.e response with 404, will omitted). If you wish to enable this option, run cornell with --record-errors flag
In this specific example, we can see that the 2 requests are mapped to the saved cassettes:
![Index file](https://imgur.com/IYjiJx6.gif)
### Start cornell as docker container
```bash
docker run hiredscorelabs/cornell:latest
```### Build cornell as docker container
```bash
docker build -t cornell .
docker run cornell --help
```You will probably need to import cassettes from a local directory from your computer.
To do that, use the following command to mount a local directory as a volume in the container.```bash
docker run -v ~/cassettes:/var/cassettes cornell -cd /var/cassettes
```In some case, you want to use another port with cornell. If you need to do that, you should use
docker port mapping as in the following where cornell will listen on port `9020`.```bash
docker run -p 9020:9000 cornell
```## Features
### Request Matchers
In addition to the [vcrpy matchers](https://vcrpy.readthedocs.io/en/latest/configuration.html#request-matching), cornell provides the following custom request matchers:
- [OData](https://www.odata.org/getting-started/basic-tutorial/) request query matcher
- [SOAP](https://stoplight.io/api-types/soap-api/) request body matcher### Environment Variables
Since Cornell is a testing server it's executed by default with `FLASK_ENV=local`.
You can modify this as described in [flask configuration](https://flask.palletsprojects.com/en/2.0.x/config/#configuration-handling)### Advanced Features
Can be found in the [documentation](https://hiredscorelabs.github.io/cornell/docs/examples/)
## Contributing
Yes please! contributions are more than welcome!
Please follow [PEP8](https://www.python.org/dev/peps/pep-0008/) and the [Python Naming Conventions](https://pep8.org/#prescriptive-naming-conventions)
Add tests when you're adding new functionality and make sure all the existing tests are happy and green :)
To set up development environment:
```sh
python -m venv venv
source venv/bin/activate
make configure
```## Running Tests
To run tests, run the following command
```bash
python -m venv venv
source venv/bin/activate
make test
```