Expects matchers for Tornado request and response objects
Project description
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
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
File details
Details for the file tornado-expects-0.1.0.tar.gz
.
File metadata
- Download URL: tornado-expects-0.1.0.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1763951bcffa8614b4413b0489759d9215cb294b7fbdaef6e084a50979b4e36 |
|
MD5 | 5f977816e27fabc95fee661c43052dcc |
|
BLAKE2b-256 | 979d0ac1ca6457ee94cd99e51abce832abf91584644f4ef3e51f86446eab7494 |