Skip to main content

Socket Mock Framework

Project description

https://api.travis-ci.org/mocketize/python-mocket.png?branch=master https://coveralls.io/repos/mocketize/python-mocket/badge.png?branch=master

A socket mock framework

Since we basically never documented the project, at least till now, we invite you to have a look at both the implementation of the two mocks we provide:
Please also have a look at our huge test suite:

Installation

Using pip:

$ pip install mocket

Issues

When opening an Issue, please add few lines of code as failing test, or -better- open its relative Pull request adding this test to our test suite.

Quick example

Let’s create a new virtualenv with all we need:

$ virtualenv example
$ source example/bin/activate
$ pip install pytest requests mocket

As second step, we create an example.py file as the following one:

import json

from mocket.mocket import mocketize
from mocket.mockhttp import Entry
import requests
import pytest


@pytest.fixture
def response():
    return {
        "integer": 1,
        "string": "asd",
        "boolean": False,
    }


@mocketize
def test_json(response):
    url_to_mock = 'http://testme.org/json'

    Entry.single_register(
        Entry.GET,
        url_to_mock,
        body=json.dumps(response),
        headers={'content-type': 'application/json'}
    )

    mocked_response = requests.get(url_to_mock).json()

    assert response == mocked_response

Let’s fire our example test:

$ py.test example.py

Video presentation

EuroPython 2013, Florence

https://www.youtube.com/watch?v=-LvXbl5d02U

http://badge.kloud51.com/pypi/v/mocket.png http://badge.kloud51.com/pypi/d/mocket.png http://badge.kloud51.com/pypi/w/mocket.png http://badge.kloud51.com/pypi/e/mocket.png http://badge.kloud51.com/pypi/l/mocket.png http://badge.kloud51.com/pypi/f/mocket.png http://badge.kloud51.com/pypi/py_versions/mocket.png http://badge.kloud51.com/pypi/s/mocket.png

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

mocket-1.3.3.tar.gz (8.5 kB view hashes)

Uploaded Source

Supported by

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