Skip to main content

Expects matchers for Tornado request and response objects

Project description

Latest version Number of PyPI downloads https://secure.travis-ci.org/jaimegildesagredo/tornado-expects.svg?branch=master

Tornado-Expects is a matchers library for the Expects assertion library. It provides matchers for the Tornado web framework request and response objects.

Installation

You can install the last stable release from PyPI using pip or easy_install.

$ pip install tornado-expects

Also you can install the latest sources from Github.

$ pip install -e git+git://github.com/jaimegildesagredo/tornado-expects.git#egg=tornado-expects

Usage

Just import the expect callable and the Tornado-Expects matchers and start writing assertions for test doubles.

from expects import expect
from tornado_expects import *
from tornado.httpclient import HTTPClient

response = http_client.fetch('https://example.com')

expect(response).to(be_ok)

Matchers

be_ok

expect(response).to(be_ok)
expect(response).not_to(be_ok)

be_json

expect(response).to(be_json)
expect(response).not_to(be_json)

have_header

expect(response).to(have_header('Content-Type'))
expect(response).to(have_header('Content-Type', 'text/xml'))
expect(response).to(have_header('Content-Type', start_with('text/xml')))
expect(response).not_to(have_header('ETag'))

have_headers

expect(response).to(have_headers('Content-Type', 'Content-Length'))
expect(response).to(have_headers({'Content-Type': 'text/html'}))
expect(response).not_to(have_headers('Etag', 'Authorization'))

have_status

expect(response).to(have_status(304))
expect(response).not_to(have_status(500))

Specs

To run the specs you should install the testing requirements and then run mamba.

$ python setup.py develop
$ pip install -r test-requirements.txt
$ mamba

License

The Tornado-Expects is released under the Apache2 license.

Project details


Download files

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

Source Distribution

tornado-expects-0.1.0.tar.gz (3.2 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