Skip to main content

VCR recording proxy-server for usage with httpsrv

Project description

Library for recording http requests into yaml format that can be further understood by httpsrv as a server fixture

Installation

Package can be obtained from PyPi

pip install httpsrvvcr

Usage

Basic usage looks like following:

python -m httpsrvvcr.recorder 8080 http://some-api-url.com/api > tape.yaml

It is possible to skip headers recording with --no-headers flag:

python -m httpsrvvcr.recorder 8080 http://some-api-url.com/api --no-headers > tape.yaml

Once can also exclude some request methods from output completely:

python -m httpsrvvcr.recorder 8080 http://some-api-url.com/api --skip-methods OPTIONS TRACE > tape.yaml

After vcr tape is recorded one can use httpsrvvcr.player module:

import unittest

from httpsrv import Server
from httpsrvvcr.player import Player

server = Server(8080).start()
player = Player(server)

class MyTestCase(unittest.TestCase):
    def setUp(self):
        server.reset()

    @player.load('path/to/tape.yaml')
    def test_should_do_something(self):
        pass

Documentation

http://httpsrvvcr.readthedocs.io

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

httpsrvvcr-0.1.7-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file httpsrvvcr-0.1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for httpsrvvcr-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 471b54d02d97e3b512dc492bdb815b5bfbfdeaf9eeb6d8ff667d40d8363d8270
MD5 f7f9fe6ed324ac5e076b9d6f1dd68996
BLAKE2b-256 0a55368d46847cb5f4b9f466cf4701ea3dd3933d45947b5b864ce2b2d442df78

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page