Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install lazr.testing

How to install lazr.testing

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install lazr.testing
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
0.1.2 Available View build log
0.1.1 Available View build log
Windows (64-bit)
0.1.2 Available View build log
0.1.1 Available View build log
Mac OS X (10.5+)
0.1.2 Available View build log
0.1.1 Available View build log
Linux (32-bit)
0.1.2 Available View build log
0.1.1 Available View build log
Linux (64-bit)
0.1.2 Available View build log
0.1.1 Available View build log
 
License
LGPL v3
Lastest release
version 0.1.2 on Jan 5th, 2011

Please see https://dev.launchpad.net/LazrStyleGuide and https://dev.launchpad.net/Hacking for how to develop in this package.

Javascript tests with JsTestDriver

lazr.testing includes support for running Javascript tests with the help of JsTestDriver, and failures and errors are reported back to your unittest-based test runner as if they were failures and errors of a unittest TestCase.

To actually run the tests, a browser must be started (if not running) and captured by the JsTestDriver server. Since we generally want to do this only once, the JsTestDriver server is started and stopped as a subprocess using zope.testing support for layers.

JsTestDriver supports outputing test results in an XML-based format, which we parse and feed into a TestResult instance from unittest.

Writing tests

Please refer to the JsTestDriver TestCase documentation on how to write tests that are supported by JsTestDriver.

Additionally, the lazr-js project has some examples of running YUI Test-based tests under JsTestDriver.

Getting your Javascript tests to be run as part of your test suite is somewhat trivial, provided that you are already using zope.testing as your test runner (see also Future Plans). All you have to do is to define a JsTestDriverTestCase subclass with a config_filename attribute that points to a JsTestDriver configuration file. For example:

from lazr.testing.jstestdriver import JsTestDriverTestCase

class JsTestDriverSelfTest(JsTestDriverTestCase):
    config_filename = os.path.abspath(os.path.join(os.path.dirname(__file__),
                                                   "js", "tests.conf"))
Running tests

In order to actually run the tests you need to specify the location where JsTestDriver can be found. This can be done by exporting an environment variable:

JSTESTDRIVER="java -jar /path/to/JsTestDriver.jar" ./bin/test

By default, as said above, the test layer will fire up a JsTestDriver server and connect your default browser to it. Then the actual test run will execute the JsTestDriver as a client connecting back to that server to drive the Javascript tests. This variable must always be present, regardless of the other variables described below.

You can control the port used by the server with another environment variable. The default is to start the server on port 4224:

JSTESTDRIVER_PORT="10001"

It is also possible (and very handy!) to have a long-running JsTestDriver server and connect one or more browser to it manually. If you want to do that, you have to export another variable telling where your JsTestDriver server is running (hint: this could even be a remote server):

JSTESTDRIVER_SERVER="http://localhost:10001"

Controlling the browser that will be started can also be done by setting the BROWSER environment variable to the full path of your browser's executable.

If your default browser is Firefox, it can be annoying that every time you run the tests in the background a new tab opens and Firefox switches to it automatically, disrupting your browsing. You can disable that by Preferences -> Tabs and disabling the option named "When I open a link in a new tab, switch to it immediately". It might be also interesting to enable the option "Open new windows in a new tab instead" if it's not enabled yet.

Finally, if you're just too annoyed that every test run opens new tabs, you have the option of having a long-running JsTestDriver server as described above and manually connect to it. That way, only a single tab of your browser will be used and every test run will re-use that tab.

Future Plans

In the future, the test layer might be replaced by testresources and the custom XML parsing might be replaced by using a subunit stream filter.

NEWS for lazr.testing

0.1.2 (2010-09-06)

  • Add compatibility with JsTestDriver 1.2.2. Not compatible with earlier versions of JsTestDriver anymore.
  • Don't wait for a browser, if JsTestDriverLayer doesn't start the browser. (LP: #627413)

0.1.1 (2009-10-16)

  • Brown bag, botched NEWS release.

0.1.0 (2009-10-16)

  • Initial release

Subscribe to package updates

Last updated Jan 5th, 2011

Download Stats

Last month:1

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.