Testing Web sites with twill¶
twill was initially designed for testing web sites, although since then people have also figured out that it’s good for browsing unsuspecting web sites.
Using the twill command¶
The simplest way to test Web sites is to write one or more twill scripts and then simply run
twill [ -u initial_url ] script(s)
either from the command-line (for development purposes), via a cron job (to check to see if sites are up and responding), or from your functional or unit tests (see below).
twill will try to run each script given to it on the command line once, and will report the number of scripts that failed. The exit value of the script will be 0 if there are no failures, so you can use it in a shell script easily enough.
twill will gather scripts from directories, so you can create a whole directory hierarchy containing your scripts and they will all be gathered and run, in standard lexical order.
twill scripts are assumed to have the ‘.twill’ extensions; you don’t need to specify it explicitly.
The -u
flag can be used to give twill an initial URL; this is
equivalent to placing a “go (initial_url)” command at the top of the
script, but is particularly handy for test frameworks where the URL
might change depending on the developer.
Stress testing¶
You can use the twill-fork script to do some stress testing. The syntax is
twill-fork -n <number to execute> -p <number of processes> script [ scripts... ]
For example,
twill-fork -n 500 -p 10 test-script
will fork 10 times and run test-script 50 times in each process. twill-fork will record the time it takes to run all of the scripts specified on the command and print a summary at the end.
The time recorded is not the CPU time used. (This would lead to an inaccurate estimate because the client code uses blocking calls to retrieve Web pages.) Rather, the time recorded is the clock time measured between the start and end of script execution.
Try twill-fork -h to get a list of other command line arguments.
Note that twill-fork runs only under Unix and still needs a lot of work…
Unit testing¶
twill can be used in unit testing, and it contains some Python support infrastructure for this purpose.
As an example, here’s the code from twill’s own unit test, testing the unit-test support code:
import os
from .server import app # a Flask app used as test server
from .utils import test_dir # directory with test scripts
PORT=8090 # port to run the server on
def run_server():
"""Function to run the server"""
app.run(host=HOST, port=PORT)
def test():
"""The test function"""
test_dir = twill.tests.utils.test_dir
script = os.path.join(test_dir, 'test_unit_support.twill')
# create a TestInfo object
test_info = twill.unit.TestInfo(script, run_server, PORT)
# run the tests!
twill.unit.run_test(test_info)
Here, I’m unit testing the Flask application .server
in the tests
directory, which is run on the specified PORT
, using the twill script
test_unit_support.twill
. That script contains this code:
# starting URL is provided to it by the unit test support framework.
go ./multisubmitform
code 200
fv 1 sub_a click
submit
find "used_sub_a"
A few things to note:
the initial URL is set based on the URL reported by
TestInfo
, which calculates it based on thePORT
argument. (This can be overridden by subclasses.)
TestInfo
contains code to (a) run the server function in a new process, and (b) run the twill script against that server. It then kills the server after script completion.You can also pass a ‘sleep’ argument to the
TestInfo
constructor that specifies how many seconds to wait for the server to start before executing the script.
Testing WSGI applications “in-process”¶
You can pass a WSGI application to the reset()
method of the browser.
HTTP calls will then go to this application “in-process” directly instead
of going over the network. This is particularly useful for unit tests,
where setting up an externally available Web server can be inconvenient.
For example, the following code redirects all localhost:80
calls to
a simple Flask app:
from flask import Flask
from twill import browser, commands
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
browser.reset(app=app)
commands.go("http://localhost:80")
commands.find("Hello World!")
See the tests/test_wsgi
unit test for more examples.