unit-tests.txt 19 KB

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