nosedjango cranks up the awesome for your Django project by giving you all the testing goodness of the Nose ecosystem. Use multiprocess, xunit, coverage, etc or even write your own plugin that hooks in to the NoseDjango plugin system (a plugin with a plugin system!)
Project description
Nosedjango brings the goodness of Nose and its plugin ecosystem to the world of Django testing. Nose already has plugins for multiprocessing, coverage, tagging, profiling, skipping, xunit plugin and most everything else you could need. Nosedjango means you don’t have to re-invent those wheels.
Perhaps the most compelling case for using nosedjango is the performance gains seen when using the multiprocess module. (both runs on a core i7 laptop with a fixture-intensive test suite)
Normal Django testrunner using sqlite
$ ./manage.py test account ... Ran 65 tests in 507.930s OK
NoseDjango with 8 processes
$ nosetests --with-doctest --with-django --django-settings pstat.settings --with-django-testfs --with-django-sqlite --processes 8 pstat.account ... Ran 65 tests in 35.731s
Nose is ~14x faster.
Easy Extensibility
In addition, Nosedjango provides its own plugin system to hook in to the low level django-specific testing operations. Included with Nosedjango are plugins to do things like:
Create an isolated file storage location for testing.
Use an in-memory sqlite database.
Start a cherrpy server for integration-style tests.
Make it easier to test Celery.
Create and use a Sphinx search index for fulltext search tests.
Open an SSH tunnel for things like Selenium that might need outside resources.
Run Selenium2 functional tests in a headless virtual frame buffer.
Selectively switch out settings from the command line for different kinds of tests.
The plugin takes care of finding your applications settings.py file and creating/tearing down test database. It also has support for fixtures and it has experimental mechanism that wraps the tests in transactions to speed up testing.
This plugin works with Django versions 1.2 and 1.3.
Basic Usage
Unit tests can be run with following command:
nosetests --with-django [nose-options]
Command line options
In addition to default nose command line options, nosedjango offers the following options:
- --django-settings=MODULE
Specify a custom Django settings MODULE. The specified MODULE needs to be found in sys.path.
- --django-sqlite
If set, use in-memory sqlite database for tests.
- --django-interactive
Run tests in interactive mode (see DjangoTestSuiteRunner documentation). Default: false.
Parallel Test Running Via Multiprocess
An easy win for Nosedjango out of the box is the ability to safely distribute tests across multiple processes, dramatically speeding up test runs on multicore machines.
In the simplest case, the following will run your tests distributed across two cores using in-memory sqlite databases and separate file storage locations to minimize file collision conflicts:
nosetests --with-django --with-django-sqlite --with-django-testfs --processes=2 <your_project_module>
Installation
Installation via Pip is straightforward:
$ pip install -e git+git://github.com/nosedjango/nosedjango.git#egg=nosedjango
Running the Nosedjango Test Suite
An easy way to try out your nosedjango installation is to try the test suite yourself:
$ python setup.py nosetests
Deviations From the Django Testrunner
Nosedjango makes a few decisions differently than Django’s normal testrunner and depending on your project, you might need to make adjustments for all of your tests to run properly.
Doctests Skipped by Default
By default, Nose only runs doctests if the --with-doctest option is included. Nosedjango respects this default rather than the Django default, so if you’d like to run your doctests, add --with-doctest to your options.
Test Discovery
Nosedjango relies on Nose’s test discovery method, which means that Nose might find some tests that weren’t being run by Django.
Database Schema Isn’t Re-created Every Test
For performance reasons, the database schema is only created once.
Fixture Loading
Nose supports module-level fixtures, and so does Nosedjango. This means that if you have a fixtures variable floating around in a test module, Nosedjango will load it.
For example:
fixtures = ['cheese.json', 'cakes'] def test_cheesecake(): # do something...
Cache is Cleared Between Tests
The cache is cleared between each test run, as is the case with newer versions of Django. If you have tests that depend on other tests modifying the cache (tsk tsk tsk), then you will need to modify those tests for them to work under Nosedjango.
Modification of TestCase.fixtures ignored
If you relied on modifying the fixtures property of a TestCase either via the __init__ or during an actual test, then you’re a Bad Person. Also, NoseDjango won’t respect this change and instead it will respect the value of fixtures that was assigned at class definition time.
Plugin System
Nosedjango’s plugin system is heavily inspired by Nose’s own system and provides loads of hooks in to the Django test-running process. Nosedjango plugins are actually just Nose plugins themselves that have access to extra hooks. To see available hooks, check out nosedjango.plugins.base_plugin.Plugin. Plugins should extend that class.
Better documentation is hopefully forthcoming, but reading the source for the included file_storage_plugin and sqlite_plugin should provide clues along with Nose’s documentation on writing plugins. One example of solving very project-specific testing needs is the NoseDjango plugin located at https://github.com/jlward/nosedjango-pstat
Known Issues
Multiprocess testing only currently works with in-memory sqlite. This is very fixable though and pull requests are welcome.
Nosedjango is broken with Nose 1.0 and higher due to changes in Nose’s Multiprocessing module. This is currently being investigated.
Contributing
This project and it’s issues are currently hosted in github. If you find a bug or have a feature request, use github’s issue tracker for that.
Patches are welcome :)
License
This software is licensed with GNU LESSER GENERAL PUBLIC LICENSE version 3 or (at your option) any later version. See COPYING for more details.
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 nosedjango-1.0.11.tar.gz
.
File metadata
- Download URL: nosedjango-1.0.11.tar.gz
- Upload date:
- Size: 38.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d0d57a236fdd9823f631a0d2f1eac663ce6f8048901b7ce17d8ba6d5cdbf692 |
|
MD5 | 8336f577913f2045503f650b02d2a039 |
|
BLAKE2b-256 | aa2199a6d12e67d38626803a48fdea2f027e9e315a0c0aed7addaf80e9d56d48 |