unit-tests.txt 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  1. ==========
  2. Unit tests
  3. ==========
  4. Django comes with a test suite of its own, in the ``tests`` directory of the
  5. code base. It's our policy to make sure all tests pass at all times.
  6. We appreciate any and all contributions to the test suite!
  7. The Django tests all use the testing infrastructure that ships with Django for
  8. testing applications. See :doc:`/topics/testing/overview` for an explanation of
  9. how to write new tests.
  10. .. _running-unit-tests:
  11. Running the unit tests
  12. ======================
  13. Quickstart
  14. ----------
  15. First, `fork Django on GitHub <https://github.com/django/django/fork>`__.
  16. Second, create and activate a virtual environment. If you're not familiar with
  17. how to do that, read our :doc:`contributing tutorial </intro/contributing>`.
  18. Next, clone your fork, install some requirements, and run the tests:
  19. .. console::
  20. $ git clone https://github.com/YourGitHubName/django.git django-repo
  21. $ cd django-repo/tests
  22. $ python -m pip install -e ..
  23. $ python -m pip install -r requirements/py3.txt
  24. $ ./runtests.py
  25. Installing the requirements will likely require some operating system packages
  26. that your computer doesn't have installed. You can usually figure out which
  27. package to install by doing a web search for the last line or so of the error
  28. message. Try adding your operating system to the search query if needed.
  29. If you have trouble installing the requirements, you can skip that step. See
  30. :ref:`running-unit-tests-dependencies` for details on installing the optional
  31. test dependencies. If you don't have an optional dependency installed, the
  32. tests that require it will be skipped.
  33. Running the tests requires a Django settings module that defines the databases
  34. to use. To help you get started, Django provides and uses a sample settings
  35. module that uses the SQLite database. See :ref:`running-unit-tests-settings` to
  36. learn how to use a different settings module to run the tests with a different
  37. database.
  38. Having problems? See :ref:`troubleshooting-unit-tests` for some common issues.
  39. Running tests using ``tox``
  40. ---------------------------
  41. `Tox <https://tox.wiki/>`_ is a tool for running tests in different virtual
  42. environments. Django includes a basic ``tox.ini`` that automates some checks
  43. that our build server performs on pull requests. To run the unit tests and
  44. other checks (such as :ref:`import sorting <coding-style-imports>`, the
  45. :ref:`documentation spelling checker <documentation-spelling-check>`, and
  46. :ref:`code formatting <coding-style-python>`), install and run the ``tox``
  47. command from any place in the Django source tree:
  48. .. console::
  49. $ python -m pip install tox
  50. $ tox
  51. By default, ``tox`` runs the test suite with the bundled test settings file for
  52. SQLite, ``black``, ``flake8``, ``isort``, and the documentation spelling
  53. checker. In addition to the system dependencies noted elsewhere in this
  54. documentation, the command ``python3`` must be on your path and linked to the
  55. appropriate version of Python. A list of default environments can be seen as
  56. follows:
  57. .. console::
  58. $ tox -l
  59. py3
  60. black
  61. flake8>=3.7.0
  62. docs
  63. isort>=5.1.0
  64. Testing other Python versions and database backends
  65. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  66. In addition to the default environments, ``tox`` supports running unit tests
  67. for other versions of Python and other database backends. Since Django's test
  68. suite doesn't bundle a settings file for database backends other than SQLite,
  69. however, you must :ref:`create and provide your own test settings
  70. <running-unit-tests-settings>`. For example, to run the tests on Python 3.10
  71. using PostgreSQL:
  72. .. console::
  73. $ tox -e py310-postgres -- --settings=my_postgres_settings
  74. This command sets up a Python 3.10 virtual environment, installs Django's
  75. test suite dependencies (including those for PostgreSQL), and calls
  76. ``runtests.py`` with the supplied arguments (in this case,
  77. ``--settings=my_postgres_settings``).
  78. The remainder of this documentation shows commands for running tests without
  79. ``tox``, however, any option passed to ``runtests.py`` can also be passed to
  80. ``tox`` by prefixing the argument list with ``--``, as above.
  81. ``Tox`` also respects the :envvar:`DJANGO_SETTINGS_MODULE` environment
  82. variable, if set. For example, the following is equivalent to the command
  83. above:
  84. .. code-block:: console
  85. $ DJANGO_SETTINGS_MODULE=my_postgres_settings tox -e py310-postgres
  86. Windows users should use:
  87. .. code-block:: doscon
  88. ...\> set DJANGO_SETTINGS_MODULE=my_postgres_settings
  89. ...\> tox -e py310-postgres
  90. Running the JavaScript tests
  91. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  92. Django includes a set of :ref:`JavaScript unit tests <javascript-tests>` for
  93. functions in certain contrib apps. The JavaScript tests aren't run by default
  94. using ``tox`` because they require ``Node.js`` to be installed and aren't
  95. necessary for the majority of patches. To run the JavaScript tests using
  96. ``tox``:
  97. .. console::
  98. $ tox -e javascript
  99. This command runs ``npm install`` to ensure test requirements are up to
  100. date and then runs ``npm test``.
  101. Running tests using ``django-docker-box``
  102. -----------------------------------------
  103. `django-docker-box`_ allows you to run the Django's test suite across all
  104. supported databases and python versions. See the `django-docker-box`_ project
  105. page for installation and usage instructions.
  106. .. _django-docker-box: https://github.com/django/django-docker-box/
  107. .. _running-unit-tests-settings:
  108. Using another ``settings`` module
  109. ---------------------------------
  110. The included settings module (``tests/test_sqlite.py``) allows you to run the
  111. test suite using SQLite. If you want to run the tests using a different
  112. database, you'll need to define your own settings file. Some tests, such as
  113. those for ``contrib.postgres``, are specific to a particular database backend
  114. and will be skipped if run with a different backend. Some tests are skipped or
  115. expected failures on a particular database backend (see
  116. ``DatabaseFeatures.django_test_skips`` and
  117. ``DatabaseFeatures.django_test_expected_failures`` on each backend).
  118. To run the tests with different settings, ensure that the module is on your
  119. :envvar:`PYTHONPATH` and pass the module with ``--settings``.
  120. The :setting:`DATABASES` setting in any test settings module needs to define
  121. two databases:
  122. * A ``default`` database. This database should use the backend that
  123. you want to use for primary testing.
  124. * A database with the alias ``other``. The ``other`` database is used to test
  125. that queries can be directed to different databases. This database should use
  126. the same backend as the ``default``, and it must have a different name.
  127. If you're using a backend that isn't SQLite, you will need to provide other
  128. details for each database:
  129. * The :setting:`USER` option needs to specify an existing user account
  130. for the database. That user needs permission to execute ``CREATE DATABASE``
  131. so that the test database can be created.
  132. * The :setting:`PASSWORD` option needs to provide the password for
  133. the :setting:`USER` that has been specified.
  134. Test databases get their names by prepending ``test_`` to the value of the
  135. :setting:`NAME` settings for the databases defined in :setting:`DATABASES`.
  136. These test databases are deleted when the tests are finished.
  137. You will also need to ensure that your database uses UTF-8 as the default
  138. character set. If your database server doesn't use UTF-8 as a default charset,
  139. you will need to include a value for :setting:`CHARSET <TEST_CHARSET>` in the
  140. test settings dictionary for the applicable database.
  141. .. _runtests-specifying-labels:
  142. Running only some of the tests
  143. ------------------------------
  144. Django's entire test suite takes a while to run, and running every single test
  145. could be redundant if, say, you just added a test to Django that you want to
  146. run quickly without running everything else. You can run a subset of the unit
  147. tests by appending the names of the test modules to ``runtests.py`` on the
  148. command line.
  149. For example, if you'd like to run tests only for generic relations and
  150. internationalization, type:
  151. .. console::
  152. $ ./runtests.py --settings=path.to.settings generic_relations i18n
  153. How do you find out the names of individual tests? Look in ``tests/`` — each
  154. directory name there is the name of a test.
  155. If you want to run only a particular class of tests, you can specify a list of
  156. paths to individual test classes. For example, to run the ``TranslationTests``
  157. of the ``i18n`` module, type:
  158. .. console::
  159. $ ./runtests.py --settings=path.to.settings i18n.tests.TranslationTests
  160. Going beyond that, you can specify an individual test method like this:
  161. .. console::
  162. $ ./runtests.py --settings=path.to.settings i18n.tests.TranslationTests.test_lazy_objects
  163. You can run tests starting at a specified top-level module with ``--start-at``
  164. option. For example:
  165. .. console::
  166. $ ./runtests.py --start-at=wsgi
  167. You can also run tests starting after a specified top-level module with
  168. ``--start-after`` option. For example:
  169. .. console::
  170. $ ./runtests.py --start-after=wsgi
  171. Note that the ``--reverse`` option doesn't impact on ``--start-at`` or
  172. ``--start-after`` options. Moreover these options cannot be used with test
  173. labels.
  174. Running the Selenium tests
  175. --------------------------
  176. Some tests require Selenium and a web browser. To run these tests, you must
  177. install the selenium_ package and run the tests with the
  178. ``--selenium=<BROWSERS>`` option. For example, if you have Firefox and Google
  179. Chrome installed:
  180. .. console::
  181. $ ./runtests.py --selenium=firefox,chrome
  182. See the `selenium.webdriver`_ package for the list of available browsers.
  183. Specifying ``--selenium`` automatically sets ``--tags=selenium`` to run only
  184. the tests that require selenium.
  185. Some browsers (e.g. Chrome or Firefox) support headless testing, which can be
  186. faster and more stable. Add the ``--headless`` option to enable this mode.
  187. .. _selenium.webdriver: https://github.com/SeleniumHQ/selenium/tree/trunk/py/selenium/webdriver
  188. .. _running-unit-tests-dependencies:
  189. Running all the tests
  190. ---------------------
  191. If you want to run the full suite of tests, you'll need to install a number of
  192. dependencies:
  193. * aiosmtpd_
  194. * argon2-cffi_ 19.2.0+
  195. * asgiref_ 3.6.0+ (required)
  196. * bcrypt_
  197. * colorama_
  198. * docutils_
  199. * geoip2_
  200. * jinja2_ 2.11+
  201. * numpy_
  202. * Pillow_ 6.2.1+
  203. * PyYAML_
  204. * pytz_ (required)
  205. * pywatchman_
  206. * redis_ 3.4+
  207. * setuptools_
  208. * memcached_, plus a :ref:`supported Python binding <memcached>`
  209. * gettext_ (:ref:`gettext_on_windows`)
  210. * selenium_
  211. * sqlparse_ 0.3.1+ (required)
  212. * tblib_ 1.5.0+
  213. You can find these dependencies in `pip requirements files`_ inside the
  214. ``tests/requirements`` directory of the Django source tree and install them
  215. like so:
  216. .. console::
  217. $ python -m pip install -r tests/requirements/py3.txt
  218. If you encounter an error during the installation, your system might be missing
  219. a dependency for one or more of the Python packages. Consult the failing
  220. package's documentation or search the web with the error message that you
  221. encounter.
  222. You can also install the database adapter(s) of your choice using
  223. ``oracle.txt``, ``mysql.txt``, or ``postgres.txt``.
  224. If you want to test the memcached or Redis cache backends, you'll also need to
  225. define a :setting:`CACHES` setting that points at your memcached or Redis
  226. instance respectively.
  227. To run the GeoDjango tests, you will need to :doc:`set up a spatial database
  228. and install the Geospatial libraries</ref/contrib/gis/install/index>`.
  229. Each of these dependencies is optional. If you're missing any of them, the
  230. associated tests will be skipped.
  231. To run some of the autoreload tests, you'll need to install the Watchman_
  232. service.
  233. .. _aiosmtpd: https://pypi.org/project/aiosmtpd/
  234. .. _argon2-cffi: https://pypi.org/project/argon2-cffi/
  235. .. _asgiref: https://pypi.org/project/asgiref/
  236. .. _bcrypt: https://pypi.org/project/bcrypt/
  237. .. _colorama: https://pypi.org/project/colorama/
  238. .. _docutils: https://pypi.org/project/docutils/
  239. .. _geoip2: https://pypi.org/project/geoip2/
  240. .. _jinja2: https://pypi.org/project/Jinja2/
  241. .. _numpy: https://pypi.org/project/numpy/
  242. .. _Pillow: https://pypi.org/project/Pillow/
  243. .. _PyYAML: https://pyyaml.org/wiki/PyYAML
  244. .. _pytz: https://pypi.org/project/pytz/
  245. .. _pywatchman: https://pypi.org/project/pywatchman/
  246. .. _redis: https://pypi.org/project/redis/
  247. .. _setuptools: https://pypi.org/project/setuptools/
  248. .. _memcached: https://memcached.org/
  249. .. _gettext: https://www.gnu.org/software/gettext/manual/gettext.html
  250. .. _selenium: https://pypi.org/project/selenium/
  251. .. _sqlparse: https://pypi.org/project/sqlparse/
  252. .. _pip requirements files: https://pip.pypa.io/en/latest/user_guide/#requirements-files
  253. .. _tblib: https://pypi.org/project/tblib/
  254. .. _Watchman: https://facebook.github.io/watchman/
  255. Code coverage
  256. -------------
  257. Contributors are encouraged to run coverage on the test suite to identify areas
  258. that need additional tests. The coverage tool installation and use is described
  259. in :ref:`testing code coverage<topics-testing-code-coverage>`.
  260. To run coverage on the Django test suite using the standard test settings:
  261. .. console::
  262. $ coverage run ./runtests.py --settings=test_sqlite
  263. After running coverage, combine all coverage statistics by running:
  264. .. console::
  265. $ coverage combine
  266. After that generate the html report by running:
  267. .. console::
  268. $ coverage html
  269. When running coverage for the Django tests, the included ``.coveragerc``
  270. settings file defines ``coverage_html`` as the output directory for the report
  271. and also excludes several directories not relevant to the results
  272. (test code or external code included in Django).
  273. .. _contrib-apps:
  274. Contrib apps
  275. ============
  276. Tests for contrib apps can be found in the :source:`tests/` directory, typically
  277. under ``<app_name>_tests``. For example, tests for ``contrib.auth`` are located
  278. in :source:`tests/auth_tests`.
  279. .. _troubleshooting-unit-tests:
  280. Troubleshooting
  281. ===============
  282. Test suite hangs or shows failures on ``main`` branch
  283. -----------------------------------------------------
  284. Ensure you have the latest point release of a :ref:`supported Python version
  285. <faq-python-version-support>`, since there are often bugs in earlier versions
  286. that may cause the test suite to fail or hang.
  287. On **macOS** (High Sierra and newer versions), you might see this message
  288. logged, after which the tests hang:
  289. .. code-block:: pytb
  290. objc[42074]: +[__NSPlaceholderDate initialize] may have been in progress in
  291. another thread when fork() was called.
  292. To avoid this set a ``OBJC_DISABLE_INITIALIZE_FORK_SAFETY`` environment
  293. variable, for example:
  294. .. code-block:: shell
  295. $ OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES ./runtests.py
  296. Or add ``export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES`` to your shell's
  297. startup file (e.g. ``~/.profile``).
  298. Many test failures with ``UnicodeEncodeError``
  299. ----------------------------------------------
  300. If the ``locales`` package is not installed, some tests will fail with a
  301. ``UnicodeEncodeError``.
  302. You can resolve this on Debian-based systems, for example, by running:
  303. .. code-block:: console
  304. $ apt-get install locales
  305. $ dpkg-reconfigure locales
  306. You can resolve this for macOS systems by configuring your shell's locale:
  307. .. code-block:: console
  308. $ export LANG="en_US.UTF-8"
  309. $ export LC_ALL="en_US.UTF-8"
  310. Run the ``locale`` command to confirm the change. Optionally, add those export
  311. commands to your shell's startup file (e.g. ``~/.bashrc`` for Bash) to avoid
  312. having to retype them.
  313. Tests that only fail in combination
  314. -----------------------------------
  315. In case a test passes when run in isolation but fails within the whole suite,
  316. we have some tools to help analyze the problem.
  317. The ``--bisect`` option of ``runtests.py`` will run the failing test while
  318. halving the test set it is run together with on each iteration, often making
  319. it possible to identify a small number of tests that may be related to the
  320. failure.
  321. For example, suppose that the failing test that works on its own is
  322. ``ModelTest.test_eq``, then using:
  323. .. console::
  324. $ ./runtests.py --bisect basic.tests.ModelTest.test_eq
  325. will try to determine a test that interferes with the given one. First, the
  326. test is run with the first half of the test suite. If a failure occurs, the
  327. first half of the test suite is split in two groups and each group is then run
  328. with the specified test. If there is no failure with the first half of the test
  329. suite, the second half of the test suite is run with the specified test and
  330. split appropriately as described earlier. The process repeats until the set of
  331. failing tests is minimized.
  332. The ``--pair`` option runs the given test alongside every other test from the
  333. suite, letting you check if another test has side-effects that cause the
  334. failure. So:
  335. .. console::
  336. $ ./runtests.py --pair basic.tests.ModelTest.test_eq
  337. will pair ``test_eq`` with every test label.
  338. With both ``--bisect`` and ``--pair``, if you already suspect which cases
  339. might be responsible for the failure, you may limit tests to be cross-analyzed
  340. by :ref:`specifying further test labels <runtests-specifying-labels>` after
  341. the first one:
  342. .. console::
  343. $ ./runtests.py --pair basic.tests.ModelTest.test_eq queries transactions
  344. You can also try running any set of tests in a random or reverse order using
  345. the ``--shuffle`` and ``--reverse`` options. This can help verify that
  346. executing tests in a different order does not cause any trouble:
  347. .. console::
  348. $ ./runtests.py basic --shuffle
  349. $ ./runtests.py basic --reverse
  350. Seeing the SQL queries run during a test
  351. ----------------------------------------
  352. If you wish to examine the SQL being run in failing tests, you can turn on
  353. :ref:`SQL logging <django-db-logger>` using the ``--debug-sql`` option. If you
  354. combine this with ``--verbosity=2``, all SQL queries will be output:
  355. .. console::
  356. $ ./runtests.py basic --debug-sql
  357. Seeing the full traceback of a test failure
  358. -------------------------------------------
  359. By default tests are run in parallel with one process per core. When the tests
  360. are run in parallel, however, you'll only see a truncated traceback for any
  361. test failures. You can adjust this behavior with the ``--parallel`` option:
  362. .. console::
  363. $ ./runtests.py basic --parallel=1
  364. You can also use the :envvar:`DJANGO_TEST_PROCESSES` environment variable for
  365. this purpose.
  366. Tips for writing tests
  367. ======================
  368. Isolating model registration
  369. ----------------------------
  370. To avoid polluting the global :attr:`~django.apps.apps` registry and prevent
  371. unnecessary table creation, models defined in a test method should be bound to
  372. a temporary ``Apps`` instance. To do this, use the
  373. :func:`~django.test.utils.isolate_apps` decorator::
  374. from django.db import models
  375. from django.test import SimpleTestCase
  376. from django.test.utils import isolate_apps
  377. class TestModelDefinition(SimpleTestCase):
  378. @isolate_apps('app_label')
  379. def test_model_definition(self):
  380. class TestModel(models.Model):
  381. pass
  382. ...
  383. .. admonition:: Setting ``app_label``
  384. Models defined in a test method with no explicit
  385. :attr:`~django.db.models.Options.app_label` are automatically assigned the
  386. label of the app in which their test class is located.
  387. In order to make sure the models defined within the context of
  388. :func:`~django.test.utils.isolate_apps` instances are correctly
  389. installed, you should pass the set of targeted ``app_label`` as arguments:
  390. .. code-block:: python
  391. :caption: ``tests/app_label/tests.py``
  392. from django.db import models
  393. from django.test import SimpleTestCase
  394. from django.test.utils import isolate_apps
  395. class TestModelDefinition(SimpleTestCase):
  396. @isolate_apps('app_label', 'other_app_label')
  397. def test_model_definition(self):
  398. # This model automatically receives app_label='app_label'
  399. class TestModel(models.Model):
  400. pass
  401. class OtherAppModel(models.Model):
  402. class Meta:
  403. app_label = 'other_app_label'
  404. ...