Helpers for creating high-level functional tests in Django, with a unified API for WebTest and Selenium tests.
Exploring django-functest makes me angry! Why? Because I've wasted so much time writing low-level, boilerplate-filled tests for the past few years instead of using it — jerivas
What is WebTest? Imagine a text-based, HTML-only browser that doesn’t load CSS, Javascript etc, operates directly on a WSGI interface in a synchronous fashion for performance and robustness, and is controlled programmatically.
What is Selenium? A tool that opens full browsers like Firefox and Chrome (with an isolated profile), and provides an API for controlling them.
For an idea of what writing tests with django-functest looks like in practice, you might be interested in the video in our writing tests interactively documentation.
The full documentation is at https://django-functest.readthedocs.org.
Python 3.7 and later, Django 2.0 and later are required.
pip install django-functest
See also the dependencies documentation for important compatibility information.
- A simplified API for writing functional tests in Django (tests that check the behaviour of entire views, or sets of views, e.g. a checkout process).
- A unified API that abstracts over both WebTest and Selenium - write two tests at once!
- Many of the gotchas and difficulties of using WebTest and Selenium ironed out for you.
- Well tested - as well as its own test suite, which is run against Firefox and Chrome, it is also used by Wolf & Badger for tests covering many business critical functionalities.
- Supports running with pytest (using pytest-django) as well as Django’s
manage.py test
In your tests.py:
from django.test import LiveServerTestCase, TestCase
from django_functest import FuncWebTestMixin, FuncSeleniumMixin, FuncBaseMixin
class ContactTestBase(FuncBaseMixin):
# Abstract class, doesn't inherit from TestCase
def test_contact_form(self):
self.get_url("contact_form")
self.fill(
{
"#id_name": "Joe",
"#id_message": "Hello",
}
)
self.submit("input[type=submit]")
self.assertTextPresent("Thanks for your message")
class ContactWebTest(ContactTestBase, FuncWebTestMixin, TestCase):
pass
class ContactSeleniumTest(ContactTestBase, FuncSeleniumMixin, LiveServerTestCase):
pass
In this way, you can write a single test with a high-level API, and run it in two ways - using a fast, WSGI-based method which emulates typical HTTP usage of a browser, and using a full browser that actually executes Javascript (if present) etc.
The approach taken by django-functest is ideal if your web app is mostly a "classic" app with server-side rendered HTML combined with a careful sprinkling of Javascript to enhance the UI, which you also need to be able to test. If such an approach seems old-fashioned to you, have a look at htmx.org or hotwire and get with the new kids! (OK most of are actually quite old but we make fast web sites...)
Under the hood, the WSGI-based method uses and builds upon WebTest and django-webtest.
django-functest provides its functionality as mixins, so that you can have your own base class for tests.
See CONTRIBUTING.rst for information about running the test suite and contributing to django-functest.
Some of the maintainers are able to provide support on a paid basis for this Open Source project. This includes the following kinds of things:
- Paying for bug fixes or new features (with the understanding that these changes will become freely available as part of the project and are not 'owned' by the person who paid for them).
- Debugging or other support for integrating django-functest into your project.
- Writing a test suite for you from scratch using django-functest.
If you are interested in these, you can contact the following developers:
- Luke Plant - long time Django expert and contributor - info and status.
This library was written originally by spookylukey, further improved by developers at Wolf & Badger, and released with the kind permission of that company.
Tools used in rendering this package: