# HTTPretty > Version 0.5 [![Build Status](https://secure.travis-ci.org/gabrielfalcao/HTTPretty.png)](http://travis-ci.org/gabrielfalcao/HTTPretty) # changes ## version 0.5 * supporting `https` (SSL'ed URLs) # What HTTPretty is a HTTP client mock library for Python 100% inspired on ruby's [FakeWeb](http://fakeweb.rubyforge.org/) # Motivation When building systems that access external resources such as RESTful webservices, XMLRPC or even simple HTTP requests, we stumble in the problem: "I'm gonna need to mock all those requests" It brings a lot of hassle, you will need to use a generic mocking tool, mess with scope and so on. ## The idea behind HTTPretty (how it works) HTTPretty [monkey matches](http://en.wikipedia.org/wiki/Monkey_patch) Python's [socket](http://docs.python.org/library/socket.html) core module, reimplementing the HTTP protocol, by mocking requests and responses. As for it works in this way, you don't need to worry what http library you're gonna use. HTTPretty will mock the response for you :) *(and also give you the latest requests so that you can check them)* # Usage ## expecting a simple response body ```python import urllib2 from httpretty import HTTPretty def test_one(): HTTPretty.enable() # enable HTTPretty so that it will monkey patch the socket module HTTPretty.register_uri(HTTPretty.GET, "http://yipit.com/", body="Find the best daily deals") fd = urllib2.urlopen('http://yipit.com') got = fd.read() fd.close() assert got == "Find the best daily deals" HTTPretty.disable() # disable afterwards, so that you will have no problems in coda that uses that socket module ``` ## ohhhh, really? can that be easier? **YES** we've got a decorator ```python import requests from httpretty import HTTPretty, httprettified @httprettified def test_one(): HTTPretty.register_uri(HTTPretty.GET, "http://yipit.com/", body="Find the best daily deals") response = requests.get('http://yipit.com') assert response.text == "Find the best daily deals" ``` the `@httprettified` is a short-hand decorator that wraps the decorated function with HTTPretty.enable() and then calls HTTPretty.disable() right after. ## mocking the status code ```python import json import urllib2 from httpretty import HTTPretty, httprettified @httprettified def test_github_access(): HTTPretty.register_uri(HTTPretty.GET, "http://github.com/", body="here is the mocked body", status=201) fd = urllib2.urlopen('http://github.com') got = fd.read() fd.close() assert got == "here is the mocked body" assert fd.code == 201 ``` ## you can tell HTTPretty to return any HTTP headers you want **and all you need is to add keyword args in which the keys are always lower-cased and with underscores `_` instead of dashes `-`** For example, let's say you want to mock that server returns `content-type`. To do so, use the argument `content_type`, **all the keyword args are taken by HTTPretty and transformed in the RFC2616 equivalent name**. ```python import urllib2 HTTPretty.register_uri(HTTPretty.GET, "http://github.com/gabrielfalcao", body='{"success": false}', status=500, content_type='text/json') fd = urllib2.urlopen('http://github.com/gabrielfalcao') got = fd.read() fd.close() assert json.loads(got)['success'] is False assert fd.code == 500 ``` ## rotating responses same URL, same request method, the first request return the first HTTPretty.Response, all the subsequent ones return the last (status 202) ```python import urllib2 from sure import expect HTTPretty.register_uri(HTTPretty.GET, "http://github.com/gabrielfalcao/httpretty", responses=[ HTTPretty.Response(body="first response", status=201), HTTPretty.Response(body='second and last response', status=202), ]) request1 = urllib2.urlopen('http://github.com/gabrielfalcao/httpretty') body1 = request1.read() request1.close() expect(request1.code).to.equal(201) expect(body1).to.equal('first response') request2 = urllib2.urlopen('http://github.com/gabrielfalcao/httpretty') body2 = request2.read() request2.close() expect(request2.code).to.equal(202) expect(body2).to.equal('second and last response') request3 = urllib2.urlopen('http://github.com/gabrielfalcao/httpretty') body3 = request3.read() request3.close() expect(request3.code).to.equal(202) expect(body3).to.equal('second and last response') ``` ## expect for a response, and check the request got by the "server" to make sure it was fine. ```python import requests from sure import expect from httpretty import HTTPretty HTTPretty.register_uri(HTTPretty.POST, "http://api.yipit.com/foo", body='{"repositories": ["HTTPretty", "lettuce"]}') response = requests.post('http://api.yipit.com/foo', '{"username": "gabrielfalcao"}', headers={ 'content-type': 'text/json', }) expect(response.text).to.equal('{"repositories": ["HTTPretty", "lettuce"]}') expect(HTTPretty.last_request.method).to.equal("POST") expect(HTTPretty.last_request.headers['content-type']).to.equal('text/json') ``` # Acknowledgements ## caveats with the [requests](http://docs.python-requests.org/en/latest/) library ### `forcing_headers` + `Content-Length` if you use the `forcing_headers` options make sure to add the header `Content-Length` otherwise the [requests](http://docs.python-requests.org/en/latest/) will try to load the response endlessly # Dependencies you will need **ONLY** if you decide to contribute to HTTPretty which means you're gonna need run our test suite * [nose](http://code.google.com/p/python-nose/) * [sure](http://github.com/gabrielfalcao/sure/) * [httplib2](http://code.google.com/p/httplib2/) * [bolacha](http://github.com/gabrielfalcao/bolacha/) * [tornado](http://tornadoweb.org/) * [multiprocessing](http://code.google.com/p/python-multiprocessing/) **(only needed if you're running python < 2.6)** ## Here is a oneliner ### I know you want it :) ```bash pip install -r requirements.pip ``` # Contributing 1. fork and clone the project 2. install the dependencies above 3. run the tests with make: ```bash make unit functional ``` 4. hack at will 5. commit, push etc 6. send a pull request # License Copyright (C) <2011> Gabriel Falcão 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.