Skip to main content

Nice pytest plugin to help you with Django pluggable application testing.

Project description

https://github.com/idlesign/pytest-djangoapp

release lic coverage

Description

Nice pytest plugin to help you with Django pluggable application testing.

This exposes some useful tools for Django applications developers to facilitate tests authoring, including:

  • Settings overriding

  • Template tags testing

  • User creation

  • Request object creation

  • Management command calls

  • Mailing

  • Migrations

  • Messages

  • DB queries audit

  • Live server & client UI testing

  • etc.

Suitable for testing apps for Django 1.8+.

How to use

Let’s say you have classical tests placing (inside application directory):

package_dir
|__ myapp
|  |__ __init__.py
|  |__ tests
|  |  |__ __init__.py
|  |  |__ conftest.py  <- Configure djangoapp here.
|
|__ setup.py

Add the following lines into conftest.py to configure djangoapp and start using it:

# conftest.py
from pytest_djangoapp import configure_djangoapp_plugin

pytest_plugins = configure_djangoapp_plugin()

Fixtures usage examples can be found in the documentation and the source code.

Testing an entire project

Despite the fact that djangoapp is primarily aimed to reusable Django applications testing one can use it also to test a project (a set of apps). For that, pass a dotted settings module path into settings argument:

pytest_plugins = configure_djangoapp_plugin(
    settings='myproject.settings.settings_testing',
    migrate=False,  # If you do not want to apply migrations.
)

What about pytest-django

pytest-djangoapp does not depend on pytest-django.

There are design decisions in pytest-django that might make it uncomfortable to work with.

  1. It uses setuptools entrypoints feature for pytest plugin discovery. It’s not a problem by itself, but all kinds of bootstrapping with side effects made by pytest-django just on startup, make the plugin a poor choice for cases of system-wide (i.e. not venv) installations.

  2. Philosophy that next to no unit test should require DB access may be quite annoying.

  3. Some fixtures (e.g. django_assert_num_queries) usability arouse questions.

Despite that pytest-django is nice, of course.

pytest-djangoapp fixtures allow the use of Django without marking all relevant tests as needing a database, as is required by pytest-django which provides the django_db mark and db fixtures.

If you have pytest-django already installed, it can be disabled for projects using pytest-djangoapp by adding the following lines into pytest.ini:

# pytest.ini
[pytest]
addopts = -p no:django

Documentation

http://pytest-djangoapp.readthedocs.org/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest-djangoapp-1.2.0.tar.gz (32.4 kB view details)

Uploaded Source

Built Distribution

pytest_djangoapp-1.2.0-py3-none-any.whl (32.4 kB view details)

Uploaded Python 3

File details

Details for the file pytest-djangoapp-1.2.0.tar.gz.

File metadata

  • Download URL: pytest-djangoapp-1.2.0.tar.gz
  • Upload date:
  • Size: 32.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.6

File hashes

Hashes for pytest-djangoapp-1.2.0.tar.gz
Algorithm Hash digest
SHA256 249706b88ac816c0f37306565556ce6f106ad1011bf5f28ba060df83d417376d
MD5 ed8d8d5ccb3276a10698b5e3eef31a76
BLAKE2b-256 113a1f7213a14f93b5aadf7a805d4a9e384ea7857b58fc467a409418441cc03a

See more details on using hashes here.

File details

Details for the file pytest_djangoapp-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: pytest_djangoapp-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.6

File hashes

Hashes for pytest_djangoapp-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b35bb298f68c23848ad16f91c4577d403f3eacf5068dad6b49cec15b5ea724e0
MD5 e1234db52155d439403b97dcae4254d6
BLAKE2b-256 3c24a31cee815ad2fa8c150c3a61027ebda43506cc37880ab0a243ef4543eb2d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page