summaryrefslogtreecommitdiff
path: root/README.rst
blob: e53007b57b4e40c709116eb401141a22d11d6278 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
HTTPretty 1.1.4
===============

.. image:: https://github.com/gabrielfalcao/HTTPretty/raw/master/docs/source/_static/logo.svg?sanitize=true

HTTP Client mocking tool for Python created by `Gabriel Falcão <https://github.com/gabrielfalcao>`_ . It provides a full fake TCP socket module. Inspired by `FakeWeb <https://github.com/chrisk/fakeweb>`_


- `Github Repository <https://github.com/gabrielfalcao/HTTPretty>`_
- `Documentation <https://httpretty.readthedocs.io/en/latest/>`_
- `PyPI Package <https://pypi.org/project/httpretty/>`_


**Python Support:**

- **3.6**
- **3.7**
- **3.8**
- **3.9**

.. image:: https://img.shields.io/pypi/dm/HTTPretty
   :target: https://pypi.org/project/HTTPretty

.. image:: https://img.shields.io/codecov/c/github/gabrielfalcao/HTTPretty
   :target: https://codecov.io/gh/gabrielfalcao/HTTPretty

.. image:: https://img.shields.io/github/workflow/status/gabrielfalcao/HTTPretty/HTTPretty%20Tests?label=Python%203.6%20-%203.9
   :target: https://github.com/gabrielfalcao/HTTPretty/actions

.. image:: https://img.shields.io/readthedocs/httpretty
   :target: https://httpretty.readthedocs.io/

.. image:: https://img.shields.io/github/license/gabrielfalcao/HTTPretty?label=Github%20License
   :target: https://github.com/gabrielfalcao/HTTPretty/blob/master/COPYING

.. image:: https://img.shields.io/pypi/v/HTTPretty
   :target: https://pypi.org/project/HTTPretty

.. image:: https://img.shields.io/pypi/l/HTTPretty?label=PyPi%20License
   :target: https://pypi.org/project/HTTPretty

.. image:: https://img.shields.io/pypi/format/HTTPretty
   :target: https://pypi.org/project/HTTPretty

.. image:: https://img.shields.io/pypi/status/HTTPretty
   :target: https://pypi.org/project/HTTPretty

.. image:: https://img.shields.io/pypi/pyversions/HTTPretty
   :target: https://pypi.org/project/HTTPretty

.. image:: https://img.shields.io/pypi/implementation/HTTPretty
   :target: https://pypi.org/project/HTTPretty

.. image:: https://img.shields.io/snyk/vulnerabilities/github/gabrielfalcao/HTTPretty
   :target: https://github.com/gabrielfalcao/HTTPretty/network/alerts

.. image:: https://img.shields.io/github/v/tag/gabrielfalcao/HTTPretty
   :target: https://github.com/gabrielfalcao/HTTPretty/releases

.. |Join the chat at https://gitter.im/gabrielfalcao/HTTPretty| image:: https://badges.gitter.im/gabrielfalcao/HTTPretty.svg
   :target: https://gitter.im/gabrielfalcao/HTTPretty?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge

Install
-------

.. code:: bash

   pip install httpretty



Common Use Cases
================

- Test-driven development of API integrations
- Fake responses of external APIs
- Record and playback HTTP requests


Simple Example
--------------

.. code:: python

    import sure
    import httpretty
    import requests


    @httpretty.activate(verbose=True, allow_net_connect=False)
    def test_httpbin():
        httpretty.register_uri(
            httpretty.GET,
            "https://httpbin.org/ip",
            body='{"origin": "127.0.0.1"}'
        )

        response = requests.get('https://httpbin.org/ip')
        response.json().should.equal({'origin': '127.0.0.1'})

        httpretty.latest_requests().should.have.length_of(1)
        httpretty.last_request().should.equal(httpretty.latest_requests()[0])
        httpretty.last_request().body.should.equal('{"origin": "127.0.0.1"}')


checking multiple responses
---------------------------

 .. code:: python

    @httpretty.activate(verbose=True, allow_net_connect=False)
    def test_post_bodies():
        url = 'http://httpbin.org/post'
        httpretty.register_uri(httpretty.POST, url, status=200)
        httpretty.register_uri(httpretty.POST, url, status=400)
        requests.post(url, data={'foo': 'bar'})
        requests.post(url, data={'zoo': 'zoo'})
        assert 'foo=bar' in httpretty.latest_requests()[0].body
        assert 'zoo=bar' in httpretty.latest_requests()[1].body


License
=======

::

    <HTTPretty - HTTP client mock for Python>
    Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>

    Permission is hereby granted, free of charge, to any person
    obtaining a copy of this software and associated documentation
    files (the "Software"), to deal in the Software without
    restriction, including without limitation the rights to use,
    copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the
    Software is furnished to do so, subject to the following
    conditions:

    The above copyright notice and this permission notice shall be
    included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    OTHER DEALINGS IN THE SOFTWARE.

Main contributors
=================

HTTPretty has received `many contributions <https://github.com/gabrielfalcao/HTTPretty/graphs/contributors>`_
but some folks made remarkable contributions and deserve extra credit:

-  Andrew Gross ~> `@andrewgross <https://github.com/andrewgross>`_
-  Hugh Saunders ~> `@hughsaunders <https://github.com/hughsaunders>`_
-  James Rowe ~> `@JNRowe <https://github.com/JNRowe>`_
-  Matt Luongo ~> `@mhluongo <https://github.com/mhluongo>`_
-  Steve Pulec ~> `@spulec <https://github.com/spulec>`_
-  Miro Hrončok ~> `@hroncok <https://github.com/hroncok>`_
-  Mario Jonke ~> `@mariojonke <https://github.com/mariojonke>`_