Test against a live site with an API like Paste WebTest
Project description
Inspired by Ian Bicking’s excellent WebTest, this is an extension to allow the same sort of simple pythonic testing to be used against running sites. Many tests written for WebTest will be able to be used directly on LiveTest.
This enables the full platform (app servers, load balancers, routing, DNS, etc) to be tested rather than just the internal WSGI application.
Installation
Simple as:
$ easy_install livetest
Or with pip:
$ pip install livetest
Or grab the development version:
$ easy_install livetest==dev
Usage
Setup an app to test against with just a hostname:
>>> import livetest >>> app = livetest.TestApp('www.google.com')
Make requests just like WebTest:
>>> resp = app.get('/')
Grab forms:
>>> resp.forms {0: <webtest.Form object at 0x10118ac50>} >>> form = resp.forms[0] >>> form.fields {'btnI': [<webtest.Submit object at 0x10118ae10>], 'btnG': [<webtest.Submit object at 0x10118add0>], 'q': [<webtest.Text object at 0x10118ad90>], 'source': [<webtest.Hidden object at 0x10118ad10>], 'hl': [<webtest.Hidden object at 0x10118acd0>], 'ie': [<webtest.Hidden object at 0x10118ad50>]}
Submit forms:
>>> form['q'] = 'python testing' >>> resp = form.submit()
Test stuff in the response:
>>> resp.mustcontain('Agile', 'unittest', 'PyUnit') >>> resp <200 OK text/html body='<!doctype...v> '/25498> >>> resp.status '200 OK'
Credits
Thanks to Edward Dale (scompt) for various fixes.
Links
License
Livetest is released under the MIT License. See the LICENSE file for more information.
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 livetest-0.5.tar.gz
.
File metadata
- Download URL: livetest-0.5.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f96a40c34845c9ff64e175be3b21f251cac10bfca9cd5b9252890509b7d74838 |
|
MD5 | 34375991d3bc560e5ee99ddd62b38a17 |
|
BLAKE2b-256 | de777ab378ff9e62013f1756b64b1553e126ba7b3f3598bc9c5c8fc508c13d55 |