advanced.txt 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  1. =======================
  2. Advanced testing topics
  3. =======================
  4. The request factory
  5. ===================
  6. .. module:: django.test.client
  7. .. class:: RequestFactory
  8. The :class:`~django.test.client.RequestFactory` shares the same API as
  9. the test client. However, instead of behaving like a browser, the
  10. RequestFactory provides a way to generate a request instance that can
  11. be used as the first argument to any view. This means you can test a
  12. view function the same way as you would test any other function -- as
  13. a black box, with exactly known inputs, testing for specific outputs.
  14. The API for the :class:`~django.test.client.RequestFactory` is a slightly
  15. restricted subset of the test client API:
  16. * It only has access to the HTTP methods :meth:`~Client.get()`,
  17. :meth:`~Client.post()`, :meth:`~Client.put()`,
  18. :meth:`~Client.delete()`, :meth:`~Client.head()` and
  19. :meth:`~Client.options()`.
  20. * These methods accept all the same arguments *except* for
  21. ``follows``. Since this is just a factory for producing
  22. requests, it's up to you to handle the response.
  23. * It does not support middleware. Session and authentication
  24. attributes must be supplied by the test itself if required
  25. for the view to function properly.
  26. Example
  27. -------
  28. The following is a simple unit test using the request factory::
  29. from django.contrib.auth.models import User
  30. from django.test import TestCase
  31. from django.test.client import RequestFactory
  32. class SimpleTest(TestCase):
  33. def setUp(self):
  34. # Every test needs access to the request factory.
  35. self.factory = RequestFactory()
  36. self.user = User.objects.create_user(
  37. first_name='jacob', email='jacob@…', password='top_secret')
  38. def test_details(self):
  39. # Create an instance of a GET request.
  40. request = self.factory.get('/customer/details')
  41. # Recall that middleware are not suported. You can simulate a
  42. # logged-in user by setting request.user manually.
  43. request.user = self.user
  44. # Test my_view() as if it were deployed at /customer/details
  45. response = my_view(request)
  46. self.assertEqual(response.status_code, 200)
  47. .. _topics-testing-advanced-multidb:
  48. Tests and multiple databases
  49. ============================
  50. .. _topics-testing-masterslave:
  51. Testing master/slave configurations
  52. -----------------------------------
  53. If you're testing a multiple database configuration with master/slave
  54. replication, this strategy of creating test databases poses a problem.
  55. When the test databases are created, there won't be any replication,
  56. and as a result, data created on the master won't be seen on the
  57. slave.
  58. To compensate for this, Django allows you to define that a database is
  59. a *test mirror*. Consider the following (simplified) example database
  60. configuration::
  61. DATABASES = {
  62. 'default': {
  63. 'ENGINE': 'django.db.backends.mysql',
  64. 'NAME': 'myproject',
  65. 'HOST': 'dbmaster',
  66. # ... plus some other settings
  67. },
  68. 'slave': {
  69. 'ENGINE': 'django.db.backends.mysql',
  70. 'NAME': 'myproject',
  71. 'HOST': 'dbslave',
  72. 'TEST_MIRROR': 'default'
  73. # ... plus some other settings
  74. }
  75. }
  76. In this setup, we have two database servers: ``dbmaster``, described
  77. by the database alias ``default``, and ``dbslave`` described by the
  78. alias ``slave``. As you might expect, ``dbslave`` has been configured
  79. by the database administrator as a read slave of ``dbmaster``, so in
  80. normal activity, any write to ``default`` will appear on ``slave``.
  81. If Django created two independent test databases, this would break any
  82. tests that expected replication to occur. However, the ``slave``
  83. database has been configured as a test mirror (using the
  84. :setting:`TEST_MIRROR` setting), indicating that under testing,
  85. ``slave`` should be treated as a mirror of ``default``.
  86. When the test environment is configured, a test version of ``slave``
  87. will *not* be created. Instead the connection to ``slave``
  88. will be redirected to point at ``default``. As a result, writes to
  89. ``default`` will appear on ``slave`` -- but because they are actually
  90. the same database, not because there is data replication between the
  91. two databases.
  92. .. _topics-testing-creation-dependencies:
  93. Controlling creation order for test databases
  94. ---------------------------------------------
  95. By default, Django will assume all databases depend on the ``default``
  96. database and therefore always create the ``default`` database first.
  97. However, no guarantees are made on the creation order of any other
  98. databases in your test setup.
  99. If your database configuration requires a specific creation order, you
  100. can specify the dependencies that exist using the
  101. :setting:`TEST_DEPENDENCIES` setting. Consider the following
  102. (simplified) example database configuration::
  103. DATABASES = {
  104. 'default': {
  105. # ... db settings
  106. 'TEST_DEPENDENCIES': ['diamonds']
  107. },
  108. 'diamonds': {
  109. # ... db settings
  110. 'TEST_DEPENDENCIES': []
  111. },
  112. 'clubs': {
  113. # ... db settings
  114. 'TEST_DEPENDENCIES': ['diamonds']
  115. },
  116. 'spades': {
  117. # ... db settings
  118. 'TEST_DEPENDENCIES': ['diamonds','hearts']
  119. },
  120. 'hearts': {
  121. # ... db settings
  122. 'TEST_DEPENDENCIES': ['diamonds','clubs']
  123. }
  124. }
  125. Under this configuration, the ``diamonds`` database will be created first,
  126. as it is the only database alias without dependencies. The ``default`` and
  127. ``clubs`` alias will be created next (although the order of creation of this
  128. pair is not guaranteed); then ``hearts``; and finally ``spades``.
  129. If there are any circular dependencies in the
  130. :setting:`TEST_DEPENDENCIES` definition, an ``ImproperlyConfigured``
  131. exception will be raised.
  132. Advanced features of ``TransactionTestCase``
  133. ============================================
  134. .. currentmodule:: django.test
  135. .. attribute:: TransactionTestCase.available_apps
  136. .. versionadded:: 1.6
  137. .. warning::
  138. This attribute is a private API. It may be changed or removed without
  139. a deprecation period in the future, for instance to accommodate changes
  140. in application loading.
  141. It's used to optimize Django's own test suite, which contains hundreds
  142. of models but no relations between models in different applications.
  143. By default, ``available_apps`` is set to ``None``. After each test, Django
  144. calls :djadmin:`flush` to reset the database state. This empties all tables
  145. and emits the :data:`~django.db.models.signals.post_syncdb` signal, which
  146. re-creates one content type and three permissions for each model. This
  147. operation gets expensive proportionally to the number of models.
  148. Setting ``available_apps`` to a list of applications instructs Django to
  149. behave as if only the models from these applications were available. The
  150. behavior of ``TransactionTestCase`` changes as follows:
  151. - :data:`~django.db.models.signals.post_syncdb` is fired before each
  152. test to create the content types and permissions for each model in
  153. available apps, in case they're missing.
  154. - After each test, Django empties only tables corresponding to models in
  155. available apps. However, at the database level, truncation may cascade to
  156. related models in unavailable apps. Furthermore
  157. :data:`~django.db.models.signals.post_syncdb` isn't fired; it will be
  158. fired by the next ``TransactionTestCase``, after the correct set of
  159. applications is selected.
  160. Since the database isn't fully flushed, if a test creates instances of
  161. models not included in ``available_apps``, they will leak and they may
  162. cause unrelated tests to fail. Be careful with tests that use sessions;
  163. the default session engine stores them in the database.
  164. Since :data:`~django.db.models.signals.post_syncdb` isn't emitted after
  165. flushing the database, its state after a ``TransactionTestCase`` isn't the
  166. same as after a ``TestCase``: it's missing the rows created by listeners
  167. to :data:`~django.db.models.signals.post_syncdb`. Considering the
  168. :ref:`order in which tests are executed <order-of-tests>`, this isn't an
  169. issue, provided either all ``TransactionTestCase`` in a given test suite
  170. declare ``available_apps``, or none of them.
  171. ``available_apps`` is mandatory in Django's own test suite.
  172. .. attribute:: TransactionTestCase.reset_sequences
  173. Setting ``reset_sequences = True`` on a ``TransactionTestCase`` will make
  174. sure sequences are always reset before the test run::
  175. class TestsThatDependsOnPrimaryKeySequences(TransactionTestCase):
  176. reset_sequences = True
  177. def test_animal_pk(self):
  178. lion = Animal.objects.create(name="lion", sound="roar")
  179. # lion.pk is guaranteed to always be 1
  180. self.assertEqual(lion.pk, 1)
  181. Unless you are explicitly testing primary keys sequence numbers, it is
  182. recommended that you do not hard code primary key values in tests.
  183. Using ``reset_sequences = True`` will slow down the test, since the primary
  184. key reset is an relatively expensive database operation.
  185. Running tests outside the test runner
  186. =====================================
  187. If you want to run tests outside of ``./manage.py test`` -- for example,
  188. from a shell prompt -- you will need to set up the test
  189. environment first. Django provides a convenience method to do this::
  190. >>> from django.test.utils import setup_test_environment
  191. >>> setup_test_environment()
  192. :func:`~django.test.utils.setup_test_environment` puts several Django features
  193. into modes that allow for repeatable testing, but does not create the test
  194. databases; :func:`django.test.runner.DiscoverRunner.setup_databases`
  195. takes care of that.
  196. The call to :func:`~django.test.utils.setup_test_environment` is made
  197. automatically as part of the setup of ``./manage.py test``. You only
  198. need to manually invoke this method if you're not using running your
  199. tests via Django's test runner.
  200. .. _other-testing-frameworks:
  201. Using different testing frameworks
  202. ==================================
  203. Clearly, :mod:`unittest` is not the only Python testing framework. While Django
  204. doesn't provide explicit support for alternative frameworks, it does provide a
  205. way to invoke tests constructed for an alternative framework as if they were
  206. normal Django tests.
  207. When you run ``./manage.py test``, Django looks at the :setting:`TEST_RUNNER`
  208. setting to determine what to do. By default, :setting:`TEST_RUNNER` points to
  209. ``'django.test.runner.DiscoverRunner'``. This class defines the default Django
  210. testing behavior. This behavior involves:
  211. #. Performing global pre-test setup.
  212. #. Looking for tests in any file below the current directory whose name matches
  213. the pattern ``test*.py``.
  214. #. Creating the test databases.
  215. #. Running ``syncdb`` to install models and initial data into the test
  216. databases.
  217. #. Running the tests that were found.
  218. #. Destroying the test databases.
  219. #. Performing global post-test teardown.
  220. If you define your own test runner class and point :setting:`TEST_RUNNER` at
  221. that class, Django will execute your test runner whenever you run
  222. ``./manage.py test``. In this way, it is possible to use any test framework
  223. that can be executed from Python code, or to modify the Django test execution
  224. process to satisfy whatever testing requirements you may have.
  225. .. _topics-testing-test_runner:
  226. Defining a test runner
  227. ----------------------
  228. .. currentmodule:: django.test.runner
  229. A test runner is a class defining a ``run_tests()`` method. Django ships
  230. with a ``DiscoverRunner`` class that defines the default Django
  231. testing behavior. This class defines the ``run_tests()`` entry point,
  232. plus a selection of other methods that are used to by ``run_tests()`` to
  233. set up, execute and tear down the test suite.
  234. .. class:: DiscoverRunner(pattern='test*.py', top_level=None, verbosity=1, interactive=True, failfast=True, **kwargs)
  235. ``DiscoverRunner`` will search for tests in any file matching ``pattern``.
  236. ``top_level`` can be used to specify the directory containing your
  237. top-level Python modules. Usually Django can figure this out automatically,
  238. so it's not necessary to specify this option. If specified, it should
  239. generally be the directory containing your ``manage.py`` file.
  240. ``verbosity`` determines the amount of notification and debug information
  241. that will be printed to the console; ``0`` is no output, ``1`` is normal
  242. output, and ``2`` is verbose output.
  243. If ``interactive`` is ``True``, the test suite has permission to ask the
  244. user for instructions when the test suite is executed. An example of this
  245. behavior would be asking for permission to delete an existing test
  246. database. If ``interactive`` is ``False``, the test suite must be able to
  247. run without any manual intervention.
  248. If ``failfast`` is ``True``, the test suite will stop running after the
  249. first test failure is detected.
  250. Django may, from time to time, extend the capabilities of the test runner
  251. by adding new arguments. The ``**kwargs`` declaration allows for this
  252. expansion. If you subclass ``DiscoverRunner`` or write your own test
  253. runner, ensure it accepts ``**kwargs``.
  254. Your test runner may also define additional command-line options.
  255. If you add an ``option_list`` attribute to a subclassed test runner,
  256. those options will be added to the list of command-line options that
  257. the :djadmin:`test` command can use.
  258. Attributes
  259. ~~~~~~~~~~
  260. .. attribute:: DiscoverRunner.option_list
  261. This is the tuple of ``optparse`` options which will be fed into the
  262. management command's ``OptionParser`` for parsing arguments. See the
  263. documentation for Python's ``optparse`` module for more details.
  264. Methods
  265. ~~~~~~~
  266. .. method:: DiscoverRunner.run_tests(test_labels, extra_tests=None, **kwargs)
  267. Run the test suite.
  268. ``test_labels`` is a list of strings describing the tests to be run. A test
  269. label can take one of four forms:
  270. * ``path.to.test_module.TestCase.test_method`` -- Run a single test method
  271. in a test case.
  272. * ``path.to.test_module.TestCase`` -- Run all the test methods in a test
  273. case.
  274. * ``path.to.module`` -- Search for and run all tests in the named Python
  275. package or module.
  276. * ``path/to/directory`` -- Search for and run all tests below the named
  277. directory.
  278. If ``test_labels`` has a value of ``None``, the test runner will search for
  279. tests in all files below the current directory whose names match its
  280. ``pattern`` (see above).
  281. ``extra_tests`` is a list of extra ``TestCase`` instances to add to the
  282. suite that is executed by the test runner. These extra tests are run
  283. in addition to those discovered in the modules listed in ``test_labels``.
  284. This method should return the number of tests that failed.
  285. .. method:: DiscoverRunner.setup_test_environment(**kwargs)
  286. Sets up the test environment by calling
  287. :func:`~django.test.utils.setup_test_environment` and setting
  288. :setting:`DEBUG` to ``False``.
  289. .. method:: DiscoverRunner.build_suite(test_labels, extra_tests=None, **kwargs)
  290. Constructs a test suite that matches the test labels provided.
  291. ``test_labels`` is a list of strings describing the tests to be run. A test
  292. label can take one of three forms:
  293. * ``app.TestCase.test_method`` -- Run a single test method in a test
  294. case.
  295. * ``app.TestCase`` -- Run all the test methods in a test case.
  296. * ``app`` -- Search for and run all tests in the named application.
  297. If ``test_labels`` has a value of ``None``, the test runner should run
  298. search for tests in all the applications in :setting:`INSTALLED_APPS`.
  299. ``extra_tests`` is a list of extra ``TestCase`` instances to add to the
  300. suite that is executed by the test runner. These extra tests are run
  301. in addition to those discovered in the modules listed in ``test_labels``.
  302. Returns a ``TestSuite`` instance ready to be run.
  303. .. method:: DiscoverRunner.setup_databases(**kwargs)
  304. Creates the test databases.
  305. Returns a data structure that provides enough detail to undo the changes
  306. that have been made. This data will be provided to the ``teardown_databases()``
  307. function at the conclusion of testing.
  308. .. method:: DiscoverRunner.run_suite(suite, **kwargs)
  309. Runs the test suite.
  310. Returns the result produced by the running the test suite.
  311. .. method:: DiscoverRunner.teardown_databases(old_config, **kwargs)
  312. Destroys the test databases, restoring pre-test conditions.
  313. ``old_config`` is a data structure defining the changes in the
  314. database configuration that need to be reversed. It is the return
  315. value of the ``setup_databases()`` method.
  316. .. method:: DiscoverRunner.teardown_test_environment(**kwargs)
  317. Restores the pre-test environment.
  318. .. method:: DiscoverRunner.suite_result(suite, result, **kwargs)
  319. Computes and returns a return code based on a test suite, and the result
  320. from that test suite.
  321. Testing utilities
  322. -----------------
  323. django.test.utils
  324. ~~~~~~~~~~~~~~~~~
  325. .. module:: django.test.utils
  326. :synopsis: Helpers to write custom test runners.
  327. To assist in the creation of your own test runner, Django provides a number of
  328. utility methods in the ``django.test.utils`` module.
  329. .. function:: setup_test_environment()
  330. Performs any global pre-test setup, such as the installing the
  331. instrumentation of the template rendering system and setting up
  332. the dummy email outbox.
  333. .. function:: teardown_test_environment()
  334. Performs any global post-test teardown, such as removing the black
  335. magic hooks into the template system and restoring normal email
  336. services.
  337. django.db.connection.creation
  338. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  339. .. currentmodule:: django.db.connection.creation
  340. The creation module of the database backend also provides some utilities that
  341. can be useful during testing.
  342. .. function:: create_test_db([verbosity=1, autoclobber=False])
  343. Creates a new test database and runs ``syncdb`` against it.
  344. ``verbosity`` has the same behavior as in ``run_tests()``.
  345. ``autoclobber`` describes the behavior that will occur if a
  346. database with the same name as the test database is discovered:
  347. * If ``autoclobber`` is ``False``, the user will be asked to
  348. approve destroying the existing database. ``sys.exit`` is
  349. called if the user does not approve.
  350. * If autoclobber is ``True``, the database will be destroyed
  351. without consulting the user.
  352. Returns the name of the test database that it created.
  353. ``create_test_db()`` has the side effect of modifying the value of
  354. :setting:`NAME` in :setting:`DATABASES` to match the name of the test
  355. database.
  356. .. function:: destroy_test_db(old_database_name, [verbosity=1])
  357. Destroys the database whose name is the value of :setting:`NAME` in
  358. :setting:`DATABASES`, and sets :setting:`NAME` to the value of
  359. ``old_database_name``.
  360. The ``verbosity`` argument has the same behavior as for
  361. :class:`~django.test.runner.DiscoverRunner`.
  362. .. _topics-testing-code-coverage:
  363. Integration with coverage.py
  364. ============================
  365. Code coverage describes how much source code has been tested. It shows which
  366. parts of your code are being exercised by tests and which are not. It's an
  367. important part of testing applications, so it's strongly recommended to check
  368. the coverage of your tests.
  369. Django can be easily integrated with `coverage.py`_, a tool for measuring code
  370. coverage of Python programs. First, `install coverage.py`_. Next, run the
  371. following from your project folder containing ``manage.py``::
  372. coverage run --source='.' manage.py test myapp
  373. This runs your tests and collects coverage data of the executed files in your
  374. project. You can see a report of this data by typing following command::
  375. coverage report
  376. Note that some Django code was executed while running tests, but it is not
  377. listed here because of the ``source`` flag passed to the previous command.
  378. For more options like annotated HTML listings detailing missed lines, see the
  379. `coverage.py`_ docs.
  380. .. _coverage.py: http://nedbatchelder.com/code/coverage/
  381. .. _install coverage.py: http://pypi.python.org/pypi/coverage